1 | /*
|
---|
2 | * Project: MoleCuilder
|
---|
3 | * Description: creates and alters molecular systems
|
---|
4 | * Copyright (C) 2012 University of Bonn. All rights reserved.
|
---|
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/>.
|
---|
21 | */
|
---|
22 |
|
---|
23 | /*
|
---|
24 | * SerializablePotentialUnitTest.cpp
|
---|
25 | *
|
---|
26 | * Created on: Nov 23, 2012
|
---|
27 | * Author: heber
|
---|
28 | */
|
---|
29 |
|
---|
30 | // include config.h
|
---|
31 | #ifdef HAVE_CONFIG_H
|
---|
32 | #include <config.h>
|
---|
33 | #endif
|
---|
34 |
|
---|
35 | using namespace std;
|
---|
36 |
|
---|
37 | #include <cppunit/CompilerOutputter.h>
|
---|
38 | #include <cppunit/extensions/TestFactoryRegistry.h>
|
---|
39 | #include <cppunit/ui/text/TestRunner.h>
|
---|
40 |
|
---|
41 | #include "SerializablePotentialUnitTest.hpp"
|
---|
42 |
|
---|
43 | #include <boost/assign.hpp>
|
---|
44 | #include <sstream>
|
---|
45 |
|
---|
46 | #include "CodePatterns/Assert.hpp"
|
---|
47 |
|
---|
48 | #include "Potentials/Exceptions.hpp"
|
---|
49 | #include "Potentials/SerializablePotential.hpp"
|
---|
50 |
|
---|
51 | using namespace boost::assign;
|
---|
52 |
|
---|
53 | #ifdef HAVE_TESTRUNNER
|
---|
54 | #include "UnitTestMain.hpp"
|
---|
55 | #endif /*HAVE_TESTRUNNER*/
|
---|
56 |
|
---|
57 | /********************************************** Test classes **************************************/
|
---|
58 |
|
---|
59 | // Registers the fixture into the 'registry'
|
---|
60 | CPPUNIT_TEST_SUITE_REGISTRATION( SerializablePotentialTest );
|
---|
61 |
|
---|
62 |
|
---|
63 | void SerializablePotentialTest::setUp()
|
---|
64 | {
|
---|
65 | // failing asserts should be thrown
|
---|
66 | ASSERT_DO(Assert::Throw);
|
---|
67 | }
|
---|
68 |
|
---|
69 |
|
---|
70 | void SerializablePotentialTest::tearDown()
|
---|
71 | {
|
---|
72 | }
|
---|
73 |
|
---|
74 | /** UnitTest for operator<<()
|
---|
75 | */
|
---|
76 | void SerializablePotentialTest::outputTest()
|
---|
77 | {
|
---|
78 | {
|
---|
79 | std::stringstream outstream;
|
---|
80 | CPPUNIT_ASSERT_NO_THROW(outstream << mockpotential);
|
---|
81 | CPPUNIT_ASSERT_EQUAL(
|
---|
82 | std::string("serializablepotentialmock:\tparticle_type1=1,\tdummy_constant=0;"),
|
---|
83 | outstream.str()
|
---|
84 | );
|
---|
85 | }
|
---|
86 | }
|
---|
87 |
|
---|
88 | /** UnitTest for derivative>>()
|
---|
89 | */
|
---|
90 | void SerializablePotentialTest::inputTest()
|
---|
91 | {
|
---|
92 | {
|
---|
93 | std::stringstream instream(
|
---|
94 | std::string("\tserializablepotentialmock:\tparticle_type1=1,\tdummy_constant=1;")
|
---|
95 | );
|
---|
96 | CPPUNIT_ASSERT_NO_THROW(instream >> mockpotential);
|
---|
97 | CPPUNIT_ASSERT_EQUAL(
|
---|
98 | SerializablePotential::parameter_t(1),
|
---|
99 | mockpotential.getParameters()[0]);
|
---|
100 | }
|
---|
101 | {
|
---|
102 | std::stringstream illegalkeystream(
|
---|
103 | std::string("\tserializablepotentialmock:\tparticle_type1=1,\tdummy_wrong=0;")
|
---|
104 | );
|
---|
105 | CPPUNIT_ASSERT_THROW(
|
---|
106 | illegalkeystream >> mockpotential,
|
---|
107 | SerializerIllegalKeyException);
|
---|
108 | CPPUNIT_ASSERT_EQUAL(
|
---|
109 | SerializablePotential::parameter_t(1),
|
---|
110 | mockpotential.getParameters()[0]);
|
---|
111 | }
|
---|
112 | {
|
---|
113 | std::stringstream missingvaluestream(
|
---|
114 | std::string("\tserializablepotentialmock:\tparticle_type1=1,\tdummy_constant;")
|
---|
115 | );
|
---|
116 | CPPUNIT_ASSERT_THROW(
|
---|
117 | missingvaluestream >> mockpotential,
|
---|
118 | SerializerMissingValueException);
|
---|
119 | CPPUNIT_ASSERT_EQUAL(
|
---|
120 | SerializablePotential::parameter_t(1),
|
---|
121 | mockpotential.getParameters()[0]);
|
---|
122 | }
|
---|
123 | }
|
---|