1 | /*
|
---|
2 | * ParserUnitTest.cpp
|
---|
3 | *
|
---|
4 | * Created on: Mar 3, 2010
|
---|
5 | * Author: metzler
|
---|
6 | */
|
---|
7 |
|
---|
8 | #include "ParserUnitTest.hpp"
|
---|
9 |
|
---|
10 | #include <cppunit/CompilerOutputter.h>
|
---|
11 | #include <cppunit/extensions/TestFactoryRegistry.h>
|
---|
12 | #include <cppunit/ui/text/TestRunner.h>
|
---|
13 |
|
---|
14 | #include "Parser/XyzParser.hpp"
|
---|
15 | #include "Parser/TremoloParser.hpp"
|
---|
16 | #include "World.hpp"
|
---|
17 | #include "element.hpp"
|
---|
18 | #include "periodentafel.hpp"
|
---|
19 |
|
---|
20 | #ifdef HAVE_TESTRUNNER
|
---|
21 | #include "UnitTestMain.hpp"
|
---|
22 | #endif /*HAVE_TESTRUNNER*/
|
---|
23 |
|
---|
24 | using namespace std;
|
---|
25 |
|
---|
26 | // Registers the fixture into the 'registry'
|
---|
27 | CPPUNIT_TEST_SUITE_REGISTRATION( ParserUnitTest );
|
---|
28 |
|
---|
29 |
|
---|
30 | void ParserUnitTest::setUp() {
|
---|
31 | element* oxygen = new element();
|
---|
32 | oxygen->symbol[0] = 'O';
|
---|
33 | oxygen->Z = 8;
|
---|
34 | World::get()->getPeriode()->AddElement(oxygen);
|
---|
35 |
|
---|
36 | element* hydrogen = new element();
|
---|
37 | hydrogen->symbol[0] = 'H';
|
---|
38 | hydrogen->Z = 1;
|
---|
39 | World::get()->getPeriode()->AddElement(hydrogen);
|
---|
40 | }
|
---|
41 |
|
---|
42 | void ParserUnitTest::tearDown() {
|
---|
43 | }
|
---|
44 |
|
---|
45 | /************************************ tests ***********************************/
|
---|
46 |
|
---|
47 | void ParserUnitTest::rewriteAnXyzTest() {
|
---|
48 | cout << "Testing the XYZ parser." << endl;
|
---|
49 | XyzParser* testParser = new XyzParser();
|
---|
50 | string waterXyz = "3\nH2O: water molecule\nO\t0.000000\t0.000000\t0.000000\nH\t0.758602\t0.000000\t0.504284\nH\t0.758602\t0.000000\t-0.504284\n";
|
---|
51 | stringstream input;
|
---|
52 | input << waterXyz;
|
---|
53 | testParser->load(&input);
|
---|
54 |
|
---|
55 | CPPUNIT_ASSERT_EQUAL(3, World::get()->numAtoms());
|
---|
56 |
|
---|
57 | string newWaterXyz = "";
|
---|
58 | stringstream output;
|
---|
59 | testParser->save(&output);
|
---|
60 | newWaterXyz = output.str();
|
---|
61 |
|
---|
62 | CPPUNIT_ASSERT(waterXyz == newWaterXyz);
|
---|
63 | }
|
---|
64 |
|
---|
65 | void ParserUnitTest::rewriteTremoloTest() {
|
---|
66 | cout << "Testing the tremolo parser." << endl;
|
---|
67 | TremoloParser* testParser = new TremoloParser();
|
---|
68 | string waterTremolo = "#\n# ATOMDATA Id name Type x=3\n\n\n";
|
---|
69 | stringstream input;
|
---|
70 | input << waterTremolo;
|
---|
71 | testParser->load(&input);
|
---|
72 | waterTremolo = "#\n#ATOMDATA Id name Type x=3\n1 H hydrogen 3.0 4.5 0.1\n\n";
|
---|
73 | input.clear();
|
---|
74 | input << waterTremolo;
|
---|
75 | testParser->load(&input);
|
---|
76 | cout << "testing the tremolo parser is done" << endl;
|
---|
77 | }
|
---|