[19290f] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
[0aa122] | 4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
[19290f] | 5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | /*
|
---|
[552597] | 9 | * CommandLineParser_ActionRegistry_ConsistencyUnitTest.cpp
|
---|
[19290f] | 10 | *
|
---|
| 11 | * Created on: Nov 25, 2009
|
---|
| 12 | * Author: heber
|
---|
| 13 | */
|
---|
| 14 |
|
---|
| 15 | // include config.h
|
---|
| 16 | #ifdef HAVE_CONFIG_H
|
---|
| 17 | #include <config.h>
|
---|
| 18 | #endif
|
---|
| 19 |
|
---|
| 20 | using namespace std;
|
---|
| 21 |
|
---|
| 22 | #include <cppunit/CompilerOutputter.h>
|
---|
| 23 | #include <cppunit/extensions/TestFactoryRegistry.h>
|
---|
| 24 | #include <cppunit/ui/text/TestRunner.h>
|
---|
| 25 |
|
---|
| 26 | #include "Actions/Action.hpp"
|
---|
| 27 | #include "Actions/ActionRegistry.hpp"
|
---|
[3139b2] | 28 | #include "Actions/ActionTrait.hpp"
|
---|
[19290f] | 29 | #include "UIElements/CommandLineUI/CommandLineParser.hpp"
|
---|
| 30 |
|
---|
[552597] | 31 | #include "CommandLineParser_ActionRegistry_ConsistencyUnitTest.hpp"
|
---|
[19290f] | 32 |
|
---|
[ce7fdc] | 33 | using namespace MoleCuilder;
|
---|
| 34 |
|
---|
[19290f] | 35 | #ifdef HAVE_TESTRUNNER
|
---|
| 36 | #include "UnitTestMain.hpp"
|
---|
| 37 | #endif /*HAVE_TESTRUNNER*/
|
---|
| 38 |
|
---|
| 39 | /********************************************** Test classes **************************************/
|
---|
| 40 |
|
---|
| 41 | // Registers the fixture into the 'registry'
|
---|
[552597] | 42 | CPPUNIT_TEST_SUITE_REGISTRATION( CommandLineParser_ActionRegistry_ConsistencyTest );
|
---|
[19290f] | 43 |
|
---|
| 44 |
|
---|
[552597] | 45 | void CommandLineParser_ActionRegistry_ConsistencyTest::setUp()
|
---|
[19290f] | 46 | {
|
---|
| 47 | AR = ActionRegistry::getPointer();
|
---|
| 48 | CLP = CommandLineParser::getPointer();
|
---|
| 49 | };
|
---|
| 50 |
|
---|
| 51 |
|
---|
[552597] | 52 | void CommandLineParser_ActionRegistry_ConsistencyTest::tearDown()
|
---|
[19290f] | 53 | {
|
---|
| 54 | CommandLineParser::purgeInstance();
|
---|
| 55 | ActionRegistry::purgeInstance();
|
---|
| 56 | };
|
---|
| 57 |
|
---|
| 58 | /** UnitTest for consistency.
|
---|
| 59 | * Here, we check that for each desired menu, stored in the Actions and
|
---|
| 60 | * accessible via the ActionRegistry, there is a boost::program_options
|
---|
| 61 | * present in the CommandLineParser (this is not necessarily one-and-onto,
|
---|
| 62 | * there might be more program_options maps).
|
---|
| 63 | */
|
---|
[552597] | 64 | void CommandLineParser_ActionRegistry_ConsistencyTest::ConsistencyCheck()
|
---|
[19290f] | 65 | {
|
---|
| 66 | std::set <std::string> MenuNames_from_CommandLineParser;
|
---|
| 67 | std::set <std::string> MenuNames_from_ActionRegistry;
|
---|
| 68 |
|
---|
| 69 | // go through all Actions and gather menu names
|
---|
| 70 | for (ActionRegistry::const_iterator iter = AR->getBeginIter();
|
---|
| 71 | iter != AR->getEndIter();
|
---|
| 72 | ++iter) {
|
---|
| 73 | const std::string &MenuName = (iter->second)->Traits.getMenuName();
|
---|
| 74 | MenuNames_from_ActionRegistry.insert(MenuName);
|
---|
| 75 | }
|
---|
| 76 |
|
---|
| 77 | // go through all Command line menus and gather all option names
|
---|
| 78 | for (CommandLineParser::CmdParserLookupMap::const_iterator iter = CLP->CmdParserLookup.begin();
|
---|
| 79 | iter != CLP->CmdParserLookup.end();
|
---|
| 80 | ++iter) {
|
---|
| 81 | const std::string &MenuName = (iter->first);
|
---|
| 82 | MenuNames_from_CommandLineParser.insert(MenuName);
|
---|
| 83 | }
|
---|
| 84 |
|
---|
| 85 |
|
---|
| 86 | for (std::set <std::string>::const_iterator ARiter = MenuNames_from_ActionRegistry.begin();
|
---|
| 87 | ARiter != MenuNames_from_ActionRegistry.end();
|
---|
| 88 | ++ARiter) {
|
---|
| 89 | CPPUNIT_ASSERT_MESSAGE(*ARiter
|
---|
| 90 | +" cannot be found in the CommandLineParser.\n"
|
---|
| 91 | +"Have you added a program_options map to CommandLineParser for this menu?",
|
---|
| 92 | MenuNames_from_CommandLineParser.count(*ARiter));
|
---|
| 93 | }
|
---|
| 94 | };
|
---|