source: src/Parser/unittests/ParserPdbUnitTest.cpp@ 7d1b6a

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since 7d1b6a was 006e1e, checked in by Frederik Heber <heber@…>, 13 years ago

FIX: ChangeTracker has not been observing AtomObserver so far.

  • This is introduced due to cleaning of observer structure.
  • FIX: Cleaned ChangeTracker declaration from false includes.
  • FIX: TextWindow.cpp lacked include World.
  • TESTFIX: All Parser...UnitTest needed to purge AtomObserver instance.
  • Property mode set to 100644
File size: 3.1 KB
Line 
1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
4 * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
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
26#include "Atom/atom.hpp"
27#include "Atom/AtomObserver.hpp"
28#include "CodePatterns/Log.hpp"
29#include "Descriptors/AtomTypeDescriptor.hpp"
30#include "Element/element.hpp"
31#include "Element/periodentafel.hpp"
32#include "Parser/ChangeTracker.hpp"
33#include "Parser/PdbParser.hpp"
34#include "World.hpp"
35
36#ifdef HAVE_TESTRUNNER
37#include "UnitTestMain.hpp"
38#endif /*HAVE_TESTRUNNER*/
39
40using namespace std;
41
42// Registers the fixture into the 'registry'
43CPPUNIT_TEST_SUITE_REGISTRATION( ParserPdbUnitTest );
44
45//----|----*|---||--*||---|***|-------|-------|-------|-----|---------------|-|-
46//000000011111111112222222222333333333344444444445555555555666666666677777777778
47//345678901234567890123456789012345678901234567890123456789012345678901234567890
48static string waterPdb = "\
49REMARK This is a test water molecule as written by TREMOLO.\n\
50ATOM 1 OT GMT- 0 1.583 1.785 1.480 1.00178.02 O-2\n\
51ATOM 2 HT GMT- 0 1.186 1.643 2.213 1.00103.58 H+1\n\
52ATOM 3 HT GMT- 0 2.642 1.896 1.730 1.00126.00 H+1\n\
53ATOM 4 OT GMT- 1 3.583 1.785 1.480 1.00178.02 O-2\n\
54ATOM 5 HT GMT- 1 3.186 1.643 2.213 1.00103.58 H+1\n\
55ATOM 6 HT GMT- 1 4.642 1.896 1.730 1.00126.00 H+1\n\
56CONECT 1 2 3\n\
57CONECT 2 1\n\
58CONECT 3 1\n\
59CONECT 4 5 6\n\
60CONECT 5 4\n\
61CONECT 6 4\n\
62END";
63
64void ParserPdbUnitTest::setUp() {
65 World::getInstance();
66
67 parser = new FormatParser<pdb>();
68
69 setVerbosity(3);
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
76void ParserPdbUnitTest::tearDown()
77{
78 delete parser;
79 ChangeTracker::purgeInstance();
80 AtomObserver::purgeInstance();
81 World::purgeInstance();
82}
83
84/************************************ tests ***********************************/
85
86void ParserPdbUnitTest::readwritePdbTest() {
87 stringstream input;
88 input << waterPdb;
89 parser->load(&input);
90 input.clear();
91
92 CPPUNIT_ASSERT_EQUAL(6, World::getInstance().numAtoms());
93
94 stringstream output;
95 std::vector<atom *> atoms = World::getInstance().getAllAtoms();
96 parser->save(&output, atoms);
97
98 // std::cout << "Save PDB is:" << std::endl;
99// std::cout << output.str() << std::endl;
100
101 input << output.str();
102 FormatParser<pdb>* parser2 = new FormatParser<pdb>();
103 parser2->load(&input);
104
105 CPPUNIT_ASSERT_EQUAL(12, World::getInstance().numAtoms());
106
107 delete parser2;
108}
Note: See TracBrowser for help on using the repository browser.