| 1 | /* | 
|---|
| 2 | * Project: MoleCuilder | 
|---|
| 3 | * Description: creates and alters molecular systems | 
|---|
| 4 | * Copyright (C)  2010 University of Bonn. All rights reserved. | 
|---|
| 5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details. | 
|---|
| 6 | */ | 
|---|
| 7 |  | 
|---|
| 8 | /* | 
|---|
| 9 | * StringParameterUnitTest.cpp | 
|---|
| 10 | * | 
|---|
| 11 | *  Created on: Sep 30, 2011 | 
|---|
| 12 | *      Author: heber | 
|---|
| 13 | */ | 
|---|
| 14 |  | 
|---|
| 15 | // include config.h | 
|---|
| 16 | #ifdef HAVE_CONFIG_H | 
|---|
| 17 | #include <config.h> | 
|---|
| 18 | #endif | 
|---|
| 19 |  | 
|---|
| 20 | #include "StringParameterUnitTest.hpp" | 
|---|
| 21 |  | 
|---|
| 22 | #include <cppunit/CompilerOutputter.h> | 
|---|
| 23 | #include <cppunit/extensions/TestFactoryRegistry.h> | 
|---|
| 24 | #include <cppunit/ui/text/TestRunner.h> | 
|---|
| 25 |  | 
|---|
| 26 | #include "Parser/Parameters/StringParameter.hpp" | 
|---|
| 27 |  | 
|---|
| 28 | #include "CodePatterns/Assert.hpp" | 
|---|
| 29 |  | 
|---|
| 30 | #ifdef HAVE_TESTRUNNER | 
|---|
| 31 | #include "UnitTestMain.hpp" | 
|---|
| 32 | #endif /*HAVE_TESTRUNNER*/ | 
|---|
| 33 |  | 
|---|
| 34 | // Registers the fixture into the 'registry' | 
|---|
| 35 | CPPUNIT_TEST_SUITE_REGISTRATION( StringParameterTest ); | 
|---|
| 36 |  | 
|---|
| 37 |  | 
|---|
| 38 | void StringParameterTest::setUp() | 
|---|
| 39 | { | 
|---|
| 40 | // failing asserts should be thrown | 
|---|
| 41 | ASSERT_DO(Assert::Throw); | 
|---|
| 42 | } | 
|---|
| 43 |  | 
|---|
| 44 | void StringParameterTest::tearDown() | 
|---|
| 45 | { | 
|---|
| 46 | } | 
|---|
| 47 |  | 
|---|
| 48 | /************************************ tests ***********************************/ | 
|---|
| 49 |  | 
|---|
| 50 | /** Unit test for comparator. | 
|---|
| 51 | * | 
|---|
| 52 | */ | 
|---|
| 53 | void StringParameterTest::comparatorTest() | 
|---|
| 54 | { | 
|---|
| 55 | // create instance | 
|---|
| 56 | StringParameter test("stringParam"); | 
|---|
| 57 | StringParameter samenamedsamevalued("stringParam"); | 
|---|
| 58 | StringParameter samenamedelsevalued("stringParam"); | 
|---|
| 59 | StringParameter elsenamedsamevalued("string2Param"); | 
|---|
| 60 | StringParameter elsenamedelsevalued("string2Param"); | 
|---|
| 61 | test.set(std::string("1")); | 
|---|
| 62 | samenamedsamevalued.set(std::string("1")); | 
|---|
| 63 | samenamedelsevalued.set(std::string("2")); | 
|---|
| 64 | elsenamedsamevalued.set(std::string("1")); | 
|---|
| 65 | elsenamedelsevalued.set(std::string("2")); | 
|---|
| 66 |  | 
|---|
| 67 | CPPUNIT_ASSERT( test == samenamedsamevalued ); | 
|---|
| 68 | CPPUNIT_ASSERT( test != samenamedelsevalued ); | 
|---|
| 69 | CPPUNIT_ASSERT( test != elsenamedsamevalued ); | 
|---|
| 70 | CPPUNIT_ASSERT( test != elsenamedelsevalued ); | 
|---|
| 71 | } | 
|---|
| 72 |  | 
|---|
| 73 | /** Unit test for clone. | 
|---|
| 74 | * | 
|---|
| 75 | */ | 
|---|
| 76 | void StringParameterTest::cloneTest() | 
|---|
| 77 | { | 
|---|
| 78 | // create instance | 
|---|
| 79 | StringParameter test("intParam"); | 
|---|
| 80 |  | 
|---|
| 81 | // check that we throw because of unset parameter | 
|---|
| 82 | #ifndef NDEBUG | 
|---|
| 83 | std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; | 
|---|
| 84 | CPPUNIT_ASSERT_THROW(test.clone(), Assert::AssertionFailure); | 
|---|
| 85 | #endif | 
|---|
| 86 |  | 
|---|
| 87 | // set parameter | 
|---|
| 88 | test.set(std::string("1")); | 
|---|
| 89 |  | 
|---|
| 90 | // is returned as Parameter but we can compare only in true class as | 
|---|
| 91 | // Parameter may also be a DiscreteParameter where comparison is nonsense | 
|---|
| 92 | StringParameter *instance = dynamic_cast< StringParameter *> (test.clone()); | 
|---|
| 93 |  | 
|---|
| 94 | // different places in memory | 
|---|
| 95 | CPPUNIT_ASSERT( &test != instance); | 
|---|
| 96 |  | 
|---|
| 97 | // but same contents | 
|---|
| 98 | CPPUNIT_ASSERT( test == *instance); | 
|---|
| 99 | } | 
|---|
| 100 |  | 
|---|