]>
| Commit | Line | Data |
|---|---|---|
| 4e0938ef | 1 | /* |
| 1f7b830e | 2 | * Copyright (C) 1996-2025 The Squid Software Foundation and contributors |
| 4e0938ef AJ |
3 | * |
| 4 | * Squid software is distributed under GPLv2+ license and includes | |
| 5 | * contributions from numerous individuals and organizations. | |
| 6 | * Please see the COPYING and CONTRIBUTORS files for details. | |
| 7 | */ | |
| 8 | ||
| ba42bf21 FC |
9 | #ifndef SQUID_SRC_TESTS_STUB_H |
| 10 | #define SQUID_SRC_TESTS_STUB_H | |
| 7c8931a1 | 11 | |
| 8658767a AJ |
12 | /** \group STUB |
| 13 | * | |
| 14 | * A set of useful macros to create stub_* files. | |
| daac1c64 | 15 | * |
| 8658767a AJ |
16 | * Intended for use building unit tests, if a stubbed function is called |
| 17 | * by any code it is linked to it will abort with a message indicating | |
| 18 | * which API file is missing from the linked dependencies. | |
| 19 | * | |
| 20 | * Usage: | |
| 21 | * at the top of your intended stub file define STUB_API to be the | |
| 22 | * name of the .cc file or library you are providing a stub of | |
| 23 | * then include this STUB.h header. | |
| 24 | * | |
| 25 | * #define STUB_API "foo/libexample.la" | |
| 26 | * #include "tests/STUB.h" | |
| 27 | */ | |
| 081edc2d AJ |
28 | #include <iostream> |
| 29 | ||
| 30 | // Internal Special: the STUB framework requires this function | |
| d868b138 | 31 | #define stub_fatal(m) { std::cerr<<"FATAL: "<<(m)<<" for use of "<<__func__<<"\n"; exit(EXIT_FAILURE); } |
| 8658767a AJ |
32 | |
| 33 | /// macro to stub a void function. | |
| 081edc2d AJ |
34 | #define STUB { stub_fatal(STUB_API " required"); } |
| 35 | ||
| 36 | /// macro to stub a void function without a fatal message | |
| 37 | /// Intended for registration pattern APIs where the function result does not matter to the test | |
| d868b138 | 38 | #define STUB_NOP { std::cerr<<"SKIP: "<<STUB_API<<" "<<__func__<<" (not implemented).\n"; } |
| 8658767a | 39 | |
| bd765fdc FC |
40 | /// macro to stub a function with return value. |
| 41 | /// Aborts unit tests requiring its definition with a message about the missing linkage | |
| 081edc2d | 42 | #define STUB_RETVAL(x) { stub_fatal(STUB_API " required"); return x; } |
| 8658767a | 43 | |
| bd765fdc FC |
44 | /// macro to stub a void function without a fatal message and with a return value |
| 45 | /// Intended for registration pattern APIs where the function result does not matter to the test | |
| d868b138 | 46 | #define STUB_RETVAL_NOP(x) { std::cerr<<"SKIP: "<<STUB_API<<" "<<__func__<<" (not implemented).\n"; return x; } |
| bd765fdc | 47 | |
| 8658767a AJ |
48 | /** macro to stub a function which returns a reference to dynamic |
| 49 | * Aborts unit tests requiring its definition with a message about the missing linkage | |
| 3dfa82a5 | 50 | * \param x underlying or "referred to" type |
| 8658767a | 51 | */ |
| 3dfa82a5 | 52 | #define STUB_RETREF(x) { stub_fatal(STUB_API " required"); return *(x *)nullptr; } |
| 8658767a | 53 | |
| 3dfa82a5 AR |
54 | /** Same as STUB_RETREF(). TODO: Remove */ |
| 55 | #define STUB_RETSTATREF(x) STUB_RETREF(x) | |
| 7c8931a1 | 56 | |
| ba42bf21 | 57 | #endif /* SQUID_SRC_TESTS_STUB_H */ |
| f53969cc | 58 |