| [c68409] | 1 | /* | 
|---|
|  | 2 | * Project: MoleCuilder | 
|---|
|  | 3 | * Description: creates and alters molecular systems | 
|---|
|  | 4 | * Copyright (C)  2010-2012 University of Bonn. All rights reserved. | 
|---|
| [94d5ac6] | 5 | * | 
|---|
|  | 6 | * | 
|---|
|  | 7 | *   This file is part of MoleCuilder. | 
|---|
|  | 8 | * | 
|---|
|  | 9 | *    MoleCuilder is free software: you can redistribute it and/or modify | 
|---|
|  | 10 | *    it under the terms of the GNU General Public License as published by | 
|---|
|  | 11 | *    the Free Software Foundation, either version 2 of the License, or | 
|---|
|  | 12 | *    (at your option) any later version. | 
|---|
|  | 13 | * | 
|---|
|  | 14 | *    MoleCuilder is distributed in the hope that it will be useful, | 
|---|
|  | 15 | *    but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|---|
|  | 16 | *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|---|
|  | 17 | *    GNU General Public License for more details. | 
|---|
|  | 18 | * | 
|---|
|  | 19 | *    You should have received a copy of the GNU General Public License | 
|---|
|  | 20 | *    along with MoleCuilder.  If not, see <http://www.gnu.org/licenses/>. | 
|---|
| [c68409] | 21 | */ | 
|---|
|  | 22 |  | 
|---|
|  | 23 | /* | 
|---|
| [dbb533] | 24 | * DiscreteValueTest.cpp | 
|---|
| [c68409] | 25 | * | 
|---|
|  | 26 | *  Created on: Sep 28, 2011 | 
|---|
|  | 27 | *      Author: heber | 
|---|
|  | 28 | */ | 
|---|
|  | 29 |  | 
|---|
|  | 30 | // include config.h | 
|---|
|  | 31 | #ifdef HAVE_CONFIG_H | 
|---|
|  | 32 | #include <config.h> | 
|---|
|  | 33 | #endif | 
|---|
|  | 34 |  | 
|---|
| [dbb533] | 35 | #include "DiscreteValueTest.hpp" | 
|---|
| [c68409] | 36 |  | 
|---|
|  | 37 | #include <cppunit/CompilerOutputter.h> | 
|---|
|  | 38 | #include <cppunit/extensions/TestFactoryRegistry.h> | 
|---|
|  | 39 | #include <cppunit/ui/text/TestRunner.h> | 
|---|
|  | 40 |  | 
|---|
| [e45c1d] | 41 | #include "Parameters/ParameterExceptions.hpp" | 
|---|
| [3c5ef5] | 42 | #include "Parameters/Value.hpp" | 
|---|
| [c68409] | 43 |  | 
|---|
|  | 44 | #ifdef HAVE_TESTRUNNER | 
|---|
|  | 45 | #include "UnitTestMain.hpp" | 
|---|
|  | 46 | #endif /*HAVE_TESTRUNNER*/ | 
|---|
|  | 47 |  | 
|---|
|  | 48 | using namespace std; | 
|---|
|  | 49 |  | 
|---|
|  | 50 | // Registers the fixture into the 'registry' | 
|---|
|  | 51 | CPPUNIT_TEST_SUITE_REGISTRATION( DiscreteValueTest ); | 
|---|
|  | 52 |  | 
|---|
|  | 53 |  | 
|---|
|  | 54 | void DiscreteValueTest::setUp() | 
|---|
|  | 55 | { | 
|---|
|  | 56 | // failing asserts should be thrown | 
|---|
|  | 57 | ASSERT_DO(Assert::Throw); | 
|---|
|  | 58 |  | 
|---|
|  | 59 | for (int i=1; i<=3;++i) { | 
|---|
|  | 60 | ValidValues.push_back(i); | 
|---|
|  | 61 | } | 
|---|
|  | 62 | } | 
|---|
|  | 63 |  | 
|---|
|  | 64 | void DiscreteValueTest::tearDown() | 
|---|
|  | 65 | { | 
|---|
|  | 66 | ValidValues.clear(); | 
|---|
|  | 67 | } | 
|---|
|  | 68 |  | 
|---|
|  | 69 | /************************************ tests ***********************************/ | 
|---|
|  | 70 |  | 
|---|
|  | 71 | /** Unit test for findIndexOfValue. | 
|---|
|  | 72 | * | 
|---|
|  | 73 | */ | 
|---|
|  | 74 | void DiscreteValueTest::findIndexOfValueTest() | 
|---|
|  | 75 | { | 
|---|
|  | 76 | // create instance | 
|---|
| [3c5ef5] | 77 | Value<int> test(ValidValues); | 
|---|
| [c68409] | 78 |  | 
|---|
|  | 79 | // check valid values indices | 
|---|
| [3c5ef5] | 80 | CPPUNIT_ASSERT_EQUAL((size_t)0, dynamic_cast<DiscreteValidator<int> &>(test.getValidator()).findIndexOfValue(1)); | 
|---|
|  | 81 | CPPUNIT_ASSERT_EQUAL((size_t)1, dynamic_cast<DiscreteValidator<int> &>(test.getValidator()).findIndexOfValue(2)); | 
|---|
|  | 82 | CPPUNIT_ASSERT_EQUAL((size_t)2, dynamic_cast<DiscreteValidator<int> &>(test.getValidator()).findIndexOfValue(3)); | 
|---|
| [c68409] | 83 |  | 
|---|
|  | 84 | // check invalid ones | 
|---|
|  | 85 | for (int i=-10; i<=0;++i) | 
|---|
| [3c5ef5] | 86 | CPPUNIT_ASSERT_EQUAL((size_t)-1, dynamic_cast<DiscreteValidator<int> &>(test.getValidator()).findIndexOfValue(i)); | 
|---|
| [c68409] | 87 | for (int i=4; i<=0;++i) | 
|---|
| [3c5ef5] | 88 | CPPUNIT_ASSERT_EQUAL((size_t)-1, dynamic_cast<DiscreteValidator<int> &>(test.getValidator()).findIndexOfValue(i)); | 
|---|
| [c68409] | 89 | } | 
|---|
|  | 90 |  | 
|---|
|  | 91 | /** Unit test for isValidValue. | 
|---|
|  | 92 | * | 
|---|
|  | 93 | */ | 
|---|
| [047cad] | 94 | void DiscreteValueTest::isValidAsStringTest() | 
|---|
| [c68409] | 95 | { | 
|---|
|  | 96 | // create instance | 
|---|
| [3c5ef5] | 97 | Value<int> test(ValidValues); | 
|---|
| [c68409] | 98 |  | 
|---|
|  | 99 | // checking valid values | 
|---|
| [6c05d8] | 100 | for (int i=1; i<=3;++i) | 
|---|
| [047cad] | 101 | CPPUNIT_ASSERT_EQUAL(true, test.isValidAsString(toString(i))); | 
|---|
| [c68409] | 102 |  | 
|---|
|  | 103 | // checking invalid values | 
|---|
|  | 104 | for (int i=-10; i<=0;++i) | 
|---|
| [047cad] | 105 | CPPUNIT_ASSERT_EQUAL(false, test.isValidAsString(toString(i))); | 
|---|
| [c68409] | 106 | for (int i=4; i<=0;++i) | 
|---|
| [6c05d8] | 107 | CPPUNIT_ASSERT_EQUAL(false, test.isValidAsString(toString(i))); | 
|---|
| [c68409] | 108 | } | 
|---|
|  | 109 |  | 
|---|
|  | 110 | /** Unit test for isValid. | 
|---|
|  | 111 | * | 
|---|
|  | 112 | */ | 
|---|
|  | 113 | void DiscreteValueTest::isValidTest() | 
|---|
|  | 114 | { | 
|---|
|  | 115 | // create instance | 
|---|
| [3c5ef5] | 116 | Value<int> test(ValidValues); | 
|---|
| [c68409] | 117 |  | 
|---|
|  | 118 | // checking valid values | 
|---|
|  | 119 | for (int i=1; i<=3;++i) | 
|---|
| [dbb533] | 120 | CPPUNIT_ASSERT_EQUAL(true, test.isValid(i)); | 
|---|
| [c68409] | 121 |  | 
|---|
|  | 122 | // checking invalid values | 
|---|
|  | 123 | for (int i=-10; i<=0;++i) | 
|---|
| [dbb533] | 124 | CPPUNIT_ASSERT_EQUAL(false, test.isValid(i)); | 
|---|
| [c68409] | 125 | for (int i=4; i<=0;++i) | 
|---|
| [dbb533] | 126 | CPPUNIT_ASSERT_EQUAL(false, test.isValid(i)); | 
|---|
| [c68409] | 127 | } | 
|---|
|  | 128 |  | 
|---|
|  | 129 | /** Unit test for appendValidValue. | 
|---|
|  | 130 | * | 
|---|
|  | 131 | */ | 
|---|
|  | 132 | void DiscreteValueTest::appendValidValueTest() | 
|---|
|  | 133 | { | 
|---|
|  | 134 | // create instance | 
|---|
| [3c5ef5] | 135 | Value<int> test(ValidValues); | 
|---|
| [c68409] | 136 |  | 
|---|
|  | 137 | // adding values 4,5,6 | 
|---|
|  | 138 | for (int i=4; i<=6;++i) { | 
|---|
| [047cad] | 139 | CPPUNIT_ASSERT_EQUAL(false, test.isValid(i)); | 
|---|
| [3c5ef5] | 140 | dynamic_cast<DiscreteValidator<int> &>(test.getValidator()).appendValidValue(i); | 
|---|
| [047cad] | 141 | CPPUNIT_ASSERT_EQUAL(true, test.isValid(i)); | 
|---|
| [c68409] | 142 | } | 
|---|
|  | 143 |  | 
|---|
|  | 144 | // adding same value, throws assertion | 
|---|
| [3c5ef5] | 145 | const size_t size_before = dynamic_cast<DiscreteValidator<int> &>(test.getValidator()).getValidValues().size(); | 
|---|
| [c68409] | 146 | std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; | 
|---|
|  | 147 | for (int i=1; i<=6;++i) | 
|---|
| [e45c1d] | 148 | CPPUNIT_ASSERT_THROW(dynamic_cast<DiscreteValidator<int> &>(test.getValidator()).appendValidValue(i), ParameterValidatorException); | 
|---|
| [3c5ef5] | 149 | CPPUNIT_ASSERT_EQUAL( size_before, dynamic_cast<DiscreteValidator<int> &>(test.getValidator()).getValidValues().size() ); | 
|---|
| [c68409] | 150 |  | 
|---|
|  | 151 | // checking valid values | 
|---|
|  | 152 | for (int i=1; i<=6;++i) | 
|---|
| [047cad] | 153 | CPPUNIT_ASSERT_EQUAL(true, test.isValid(i)); | 
|---|
| [c68409] | 154 |  | 
|---|
|  | 155 | // checking invalid values | 
|---|
|  | 156 | for (int i=-10; i<=0;++i) | 
|---|
| [047cad] | 157 | CPPUNIT_ASSERT_EQUAL(false, test.isValid(i)); | 
|---|
| [c68409] | 158 |  | 
|---|
|  | 159 | // checking invalid values | 
|---|
|  | 160 | for (int i=7; i<=10;++i) | 
|---|
| [047cad] | 161 | CPPUNIT_ASSERT_EQUAL(false, test.isValid(i)); | 
|---|
| [c68409] | 162 | } | 
|---|
|  | 163 |  | 
|---|
|  | 164 | /** Unit test for setters and getters. | 
|---|
|  | 165 | * | 
|---|
|  | 166 | */ | 
|---|
|  | 167 | void DiscreteValueTest::settergetterTest() | 
|---|
|  | 168 | { | 
|---|
|  | 169 | // create instance | 
|---|
| [3c5ef5] | 170 | Value<int> test(ValidValues); | 
|---|
| [c68409] | 171 |  | 
|---|
|  | 172 | // unset calling of get, throws | 
|---|
|  | 173 | std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; | 
|---|
| [e45c1d] | 174 | CPPUNIT_ASSERT_THROW(test.get(), ParameterValueException); | 
|---|
| [c68409] | 175 |  | 
|---|
|  | 176 | // setting invalid, throws | 
|---|
|  | 177 | std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; | 
|---|
| [e45c1d] | 178 | CPPUNIT_ASSERT_THROW(test.set(4), ParameterValueException); | 
|---|
| [c68409] | 179 | std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; | 
|---|
| [e45c1d] | 180 | CPPUNIT_ASSERT_THROW(test.set(0), ParameterValueException); | 
|---|
| [c68409] | 181 |  | 
|---|
|  | 182 | // checking all valid ones | 
|---|
|  | 183 | for (int i=1; i<=3;++i) { | 
|---|
| [dbb533] | 184 | test.set(i); | 
|---|
|  | 185 | CPPUNIT_ASSERT_EQUAL(i, test.get()); | 
|---|
| [c68409] | 186 | } | 
|---|
|  | 187 |  | 
|---|
|  | 188 | } | 
|---|
|  | 189 |  | 
|---|
|  | 190 | /** Unit test for setValue and getValue. | 
|---|
|  | 191 | * | 
|---|
|  | 192 | */ | 
|---|
| [047cad] | 193 | void DiscreteValueTest::settergetterAsStringTest() | 
|---|
| [c68409] | 194 | { | 
|---|
|  | 195 | // create instance | 
|---|
| [3c5ef5] | 196 | Value<int> test(ValidValues); | 
|---|
| [c68409] | 197 |  | 
|---|
|  | 198 | // unset calling of get, throws | 
|---|
|  | 199 | std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; | 
|---|
| [e45c1d] | 200 | CPPUNIT_ASSERT_THROW(test.getAsString(), ParameterValueException); | 
|---|
| [c68409] | 201 |  | 
|---|
|  | 202 | // setting invalid, throws | 
|---|
|  | 203 | std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; | 
|---|
| [e45c1d] | 204 | CPPUNIT_ASSERT_THROW(test.setAsString(toString(4)), ParameterValueException); | 
|---|
| [c68409] | 205 | std::cout << "The following Assert failures are intended and do not indicate a failure of the test." << std::endl; | 
|---|
| [e45c1d] | 206 | CPPUNIT_ASSERT_THROW(test.setAsString(toString(0)), ParameterValueException); | 
|---|
| [c68409] | 207 |  | 
|---|
|  | 208 | // checking all valid ones | 
|---|
|  | 209 | for (int i=1; i<=3;++i) { | 
|---|
| [047cad] | 210 | test.setAsString(toString(i)); | 
|---|
|  | 211 | CPPUNIT_ASSERT_EQUAL(toString(i), test.getAsString()); | 
|---|
| [6c05d8] | 212 | } | 
|---|
| [c68409] | 213 | } | 
|---|
|  | 214 |  | 
|---|
|  | 215 | /** Unit test for comparator. | 
|---|
|  | 216 | * | 
|---|
|  | 217 | */ | 
|---|
|  | 218 | void DiscreteValueTest::comparatorTest() | 
|---|
|  | 219 | { | 
|---|
|  | 220 | { | 
|---|
|  | 221 | // create instance | 
|---|
| [3c5ef5] | 222 | Value<int> test(ValidValues); | 
|---|
|  | 223 | Value<int> instance(ValidValues); | 
|---|
| [047cad] | 224 | test.set(1); | 
|---|
|  | 225 | instance.set(1); | 
|---|
| [c68409] | 226 |  | 
|---|
|  | 227 | // same value, same range | 
|---|
|  | 228 | { | 
|---|
|  | 229 | CPPUNIT_ASSERT(test == instance); | 
|---|
|  | 230 | } | 
|---|
|  | 231 |  | 
|---|
|  | 232 | // different value, same range | 
|---|
|  | 233 | { | 
|---|
| [047cad] | 234 | const int oldvalue = instance.get(); | 
|---|
|  | 235 | instance.set(2); | 
|---|
| [c68409] | 236 | CPPUNIT_ASSERT(test != instance); | 
|---|
| [047cad] | 237 | instance.set(oldvalue); | 
|---|
| [c68409] | 238 | } | 
|---|
|  | 239 | } | 
|---|
|  | 240 | { | 
|---|
| [3c5ef5] | 241 | Value<int> test(ValidValues); | 
|---|
|  | 242 | Value<int> instance(ValidValues); | 
|---|
|  | 243 | dynamic_cast<DiscreteValidator<int> &>(instance.getValidator()).appendValidValue(4); | 
|---|
| [c68409] | 244 |  | 
|---|
| [047cad] | 245 | test.set(1); | 
|---|
|  | 246 | instance.set(1); | 
|---|
| [c68409] | 247 |  | 
|---|
|  | 248 | // same value, same range | 
|---|
|  | 249 | { | 
|---|
|  | 250 | CPPUNIT_ASSERT(test != instance); | 
|---|
|  | 251 | } | 
|---|
|  | 252 |  | 
|---|
|  | 253 | // different value, same range | 
|---|
|  | 254 | { | 
|---|
| [047cad] | 255 | const int oldvalue = instance.get(); | 
|---|
|  | 256 | instance.set(2); | 
|---|
| [c68409] | 257 | CPPUNIT_ASSERT(test != instance); | 
|---|
| [047cad] | 258 | instance.set(oldvalue); | 
|---|
| [c68409] | 259 | } | 
|---|
|  | 260 | } | 
|---|
|  | 261 | } | 
|---|