[9e4fd1] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
[0aa122] | 4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
[9e4fd1] | 5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | /*
|
---|
| 9 | * ParserPdbUnitTest.cpp
|
---|
| 10 | *
|
---|
| 11 | * Created on: Mar 3, 2010
|
---|
| 12 | * Author: metzler
|
---|
| 13 | */
|
---|
| 14 |
|
---|
| 15 | // include config.h
|
---|
| 16 | #ifdef HAVE_CONFIG_H
|
---|
| 17 | #include <config.h>
|
---|
| 18 | #endif
|
---|
| 19 |
|
---|
| 20 | #include "ParserPdbUnitTest.hpp"
|
---|
| 21 |
|
---|
| 22 | #include <cppunit/CompilerOutputter.h>
|
---|
| 23 | #include <cppunit/extensions/TestFactoryRegistry.h>
|
---|
| 24 | #include <cppunit/ui/text/TestRunner.h>
|
---|
| 25 |
|
---|
[6f0841] | 26 | #include "Atom/atom.hpp"
|
---|
[006e1e] | 27 | #include "Atom/AtomObserver.hpp"
|
---|
[255829] | 28 | #include "CodePatterns/Log.hpp"
|
---|
[9e4fd1] | 29 | #include "Descriptors/AtomTypeDescriptor.hpp"
|
---|
[006e1e] | 30 | #include "Element/element.hpp"
|
---|
| 31 | #include "Element/periodentafel.hpp"
|
---|
[765f16] | 32 | #include "Parser/ChangeTracker.hpp"
|
---|
| 33 | #include "Parser/PdbParser.hpp"
|
---|
[006e1e] | 34 | #include "World.hpp"
|
---|
[9e4fd1] | 35 |
|
---|
| 36 | #ifdef HAVE_TESTRUNNER
|
---|
| 37 | #include "UnitTestMain.hpp"
|
---|
| 38 | #endif /*HAVE_TESTRUNNER*/
|
---|
| 39 |
|
---|
| 40 | using namespace std;
|
---|
| 41 |
|
---|
| 42 | // Registers the fixture into the 'registry'
|
---|
| 43 | CPPUNIT_TEST_SUITE_REGISTRATION( ParserPdbUnitTest );
|
---|
| 44 |
|
---|
| 45 | //----|----*|---||--*||---|***|-------|-------|-------|-----|---------------|-|-
|
---|
| 46 | //000000011111111112222222222333333333344444444445555555555666666666677777777778
|
---|
| 47 | //345678901234567890123456789012345678901234567890123456789012345678901234567890
|
---|
| 48 | static string waterPdb = "\
|
---|
| 49 | REMARK This is a test water molecule as written by TREMOLO.\n\
|
---|
| 50 | ATOM 1 OT GMT- 0 1.583 1.785 1.480 1.00178.02 O-2\n\
|
---|
| 51 | ATOM 2 HT GMT- 0 1.186 1.643 2.213 1.00103.58 H+1\n\
|
---|
| 52 | ATOM 3 HT GMT- 0 2.642 1.896 1.730 1.00126.00 H+1\n\
|
---|
| 53 | ATOM 4 OT GMT- 1 3.583 1.785 1.480 1.00178.02 O-2\n\
|
---|
| 54 | ATOM 5 HT GMT- 1 3.186 1.643 2.213 1.00103.58 H+1\n\
|
---|
| 55 | ATOM 6 HT GMT- 1 4.642 1.896 1.730 1.00126.00 H+1\n\
|
---|
| 56 | CONECT 1 2 3\n\
|
---|
| 57 | CONECT 2 1\n\
|
---|
| 58 | CONECT 3 1\n\
|
---|
| 59 | CONECT 4 5 6\n\
|
---|
| 60 | CONECT 5 4\n\
|
---|
| 61 | CONECT 6 4\n\
|
---|
| 62 | END";
|
---|
| 63 |
|
---|
| 64 | void ParserPdbUnitTest::setUp() {
|
---|
| 65 | World::getInstance();
|
---|
| 66 |
|
---|
[765f16] | 67 | parser = new FormatParser<pdb>();
|
---|
| 68 |
|
---|
[c0e28c] | 69 | setVerbosity(3);
|
---|
[9e4fd1] | 70 |
|
---|
| 71 | // we need hydrogens and oxygens in the following tests
|
---|
| 72 | CPPUNIT_ASSERT(World::getInstance().getPeriode()->FindElement(1) != NULL);
|
---|
| 73 | CPPUNIT_ASSERT(World::getInstance().getPeriode()->FindElement(8) != NULL);
|
---|
| 74 | }
|
---|
| 75 |
|
---|
[765f16] | 76 | void ParserPdbUnitTest::tearDown()
|
---|
| 77 | {
|
---|
| 78 | delete parser;
|
---|
[9e4fd1] | 79 | ChangeTracker::purgeInstance();
|
---|
[006e1e] | 80 | AtomObserver::purgeInstance();
|
---|
[9e4fd1] | 81 | World::purgeInstance();
|
---|
| 82 | }
|
---|
| 83 |
|
---|
| 84 | /************************************ tests ***********************************/
|
---|
| 85 |
|
---|
| 86 | void ParserPdbUnitTest::readwritePdbTest() {
|
---|
| 87 | stringstream input;
|
---|
| 88 | input << waterPdb;
|
---|
[765f16] | 89 | parser->load(&input);
|
---|
[9e4fd1] | 90 | input.clear();
|
---|
| 91 |
|
---|
| 92 | CPPUNIT_ASSERT_EQUAL(6, World::getInstance().numAtoms());
|
---|
| 93 |
|
---|
| 94 | stringstream output;
|
---|
| 95 | std::vector<atom *> atoms = World::getInstance().getAllAtoms();
|
---|
[765f16] | 96 | parser->save(&output, atoms);
|
---|
[9e4fd1] | 97 |
|
---|
[c0e28c] | 98 | // std::cout << "Save PDB is:" << std::endl;
|
---|
[9e4fd1] | 99 | // std::cout << output.str() << std::endl;
|
---|
| 100 |
|
---|
| 101 | input << output.str();
|
---|
[765f16] | 102 | FormatParser<pdb>* parser2 = new FormatParser<pdb>();
|
---|
| 103 | parser2->load(&input);
|
---|
[9e4fd1] | 104 |
|
---|
| 105 | CPPUNIT_ASSERT_EQUAL(12, World::getInstance().numAtoms());
|
---|
[765f16] | 106 |
|
---|
| 107 | delete parser2;
|
---|
[9e4fd1] | 108 | }
|
---|