Standard method to identify a project's executable, for now specifically aimed at test-frameworks.
The initial reason for the existance of this project is too let BoostTestUI identify the kind of test it is loading. BoostTestUI is a graphical test runner for windows to run unittests, but this proposal should be useful to any test-runner that has to deal with executable binaries from several test frameworks, such as for example Microsoft Visual Studio and possibly have wider application in identification of executables in general.
BoostTestUI's name is kindof obsolete, it would better be named MultiTestRunner, because it currently supports Boost.Test, Google Test, Catch and Nunit.
Currently tests need to be re-compiled with a special header that is different per test-framework to be able to do two things:
- identify the framework, in order to know what arguments to pass, to for example list all test or execute a specific test.
- add an option --gui-wait to allow the UI to start the test-process without actually beginning to run anything, allowing the user to attach a debugger.
- google/googletest#1121
- catchorg/Catch2#931 [implemented / DONE]
- https://svn.boost.org/trac10/ticket/13082#ticket
Only libidentify.h is part of the standard, main.cpp is just an example of its usage.
foobin --libidentify returns on std:cout:
line 1: description: <description> [ascii string, starting at colomn 17, ending at but not including newline]
line 2: category: <category> [ascii string, starting at colomn 17, ending at but not including newline]
line 3: framework: <frameworkname> [ascii string, starting at colomn 17, ending at but not including newline]
line 4: version: <version> [ascii string, starting at colomn 17, ending at but not including newline]
<description>
for display purposes, not to be used for identification<category>
identification of the category the binary belongs to<framework>
major part of the identification<version>
minor part of the identification
<framework>
may be any string, but it shall be unique and stable over all future versions of your framework
<version>
shall start with <major_version_number>.<minor_version_number>. but after the second dot any text is allowed.
Currently there is only one valid category:
- testframework
myboosttest --libidentify
description: Boost Test
category: testframework
framework: boost.test
version: 1.64.0
mygoogletest --libidentify
description: Google Test
category: testframework
framework: Google Test
version: 1.8.0
mycatchtest --libidentify
description: Catch Test
category: testframework
framework: Catch Test
version: 1.9.6
myrandomtest --libidentify
description: Any Random Description Here
category: testframework
framework: RaNdOmTeSTFrAmEWoRk
version: 8.4.7.2-delta
I propose to add an commandline argument extention to wait for a UI / debugger to be attached.
--wait-for-keypress <start|exit|both>
Simplified example implementation: (--wait-for-keypress without arguments)
#include "libidentify.h"
#include <cstdio>
#include <string>
void main(int argc, char* argv[])
{
// output identification if requested
LibIdentify::report("My test description", LibIdentify::category_unspecified, "My unique framework string", "1.0", argc, argv);
// wait for debugger if requested
for (int i = 0; i < argc; ++i)
{
auto argument = std::string(argv[i]);
if (argument == "--wait-for-keypress")
{
std::cout << "#waiting" << std::endl; // acknowledge the command was understood, make sure to use std::endl to flush the stream
std::getchar();
}
}
/*
... normal main() starts here...
*/
}
Note that this argument does not have to be '--wait-for-getchar', it can have any name you like, it is not part of the 'libidentify' standard as such. It does however enable test-runners to start the test process without actually starting the test.