Changeset 46d958 for src/unittests
- Timestamp:
- Feb 24, 2010, 4:21:12 PM (15 years ago)
- Branches:
- 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
- Children:
- 02ee15
- Parents:
- b54ac8
- git-author:
- Tillmann Crueger <crueger@…> (02/24/10 15:29:12)
- git-committer:
- Tillmann Crueger <crueger@…> (02/24/10 16:21:12)
- Location:
- src/unittests
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
src/unittests/AnalysisCorrelationToPointUnitTest.cpp
rb54ac8 r46d958 17 17 #include "AnalysisCorrelationToPointUnitTest.hpp" 18 18 19 #include "World.hpp" 19 20 #include "atom.hpp" 20 21 #include "boundary.hpp" … … 56 57 // construct molecule (tetraeder of hydrogens) 57 58 TestMolecule = new molecule(tafel); 58 Walker = new atom();59 Walker = World::get()->createAtom(); 59 60 Walker->type = hydrogen; 60 61 Walker->node->Init(1., 0., 1. ); 61 62 TestMolecule->AddAtom(Walker); 62 Walker = new atom();63 Walker = World::get()->createAtom(); 63 64 Walker->type = hydrogen; 64 65 Walker->node->Init(0., 1., 1. ); 65 66 TestMolecule->AddAtom(Walker); 66 Walker = new atom();67 Walker = World::get()->createAtom(); 67 68 Walker->type = hydrogen; 68 69 Walker->node->Init(1., 1., 0. ); 69 70 TestMolecule->AddAtom(Walker); 70 Walker = new atom();71 Walker = World::get()->createAtom(); 71 72 Walker->type = hydrogen; 72 73 Walker->node->Init(0., 0., 0. ); -
src/unittests/AnalysisCorrelationToSurfaceUnitTest.cpp
rb54ac8 r46d958 17 17 #include "AnalysisCorrelationToSurfaceUnitTest.hpp" 18 18 19 #include "World.hpp" 19 20 #include "atom.hpp" 20 21 #include "boundary.hpp" … … 61 62 // construct molecule (tetraeder of hydrogens) base 62 63 TestMolecule = new molecule(tafel); 63 Walker = new atom();64 Walker = World::get()->createAtom(); 64 65 Walker->type = hydrogen; 65 66 Walker->node->Init(1., 0., 1. ); 66 67 TestMolecule->AddAtom(Walker); 67 Walker = new atom();68 Walker = World::get()->createAtom(); 68 69 Walker->type = hydrogen; 69 70 Walker->node->Init(0., 1., 1. ); 70 71 TestMolecule->AddAtom(Walker); 71 Walker = new atom();72 Walker = World::get()->createAtom(); 72 73 Walker->type = hydrogen; 73 74 Walker->node->Init(1., 1., 0. ); 74 75 TestMolecule->AddAtom(Walker); 75 Walker = new atom();76 Walker = World::get()->createAtom(); 76 77 Walker->type = hydrogen; 77 78 Walker->node->Init(0., 0., 0. ); … … 94 95 95 96 // add outer atoms 96 Walker = new atom();97 Walker = World::get()->createAtom(); 97 98 Walker->type = carbon; 98 99 Walker->node->Init(4., 0., 4. ); 99 100 TestMolecule->AddAtom(Walker); 100 Walker = new atom();101 Walker = World::get()->createAtom(); 101 102 Walker->type = carbon; 102 103 Walker->node->Init(0., 4., 4. ); 103 104 TestMolecule->AddAtom(Walker); 104 Walker = new atom();105 Walker = World::get()->createAtom(); 105 106 Walker->type = carbon; 106 107 Walker->node->Init(4., 4., 0. ); 107 108 TestMolecule->AddAtom(Walker); 108 109 // add inner atoms 109 Walker = new atom();110 Walker = World::get()->createAtom(); 110 111 Walker->type = carbon; 111 112 Walker->node->Init(0.5, 0.5, 0.5 ); -
src/unittests/AnalysisPairCorrelationUnitTest.cpp
rb54ac8 r46d958 17 17 #include "AnalysisPairCorrelationUnitTest.hpp" 18 18 19 #include "World.hpp" 19 20 #include "atom.hpp" 20 21 #include "boundary.hpp" … … 55 56 // construct molecule (tetraeder of hydrogens) 56 57 TestMolecule = new molecule(tafel); 57 Walker = new atom();58 Walker = World::get()->createAtom(); 58 59 Walker->type = hydrogen; 59 60 Walker->node->Init(1., 0., 1. ); 60 61 TestMolecule->AddAtom(Walker); 61 Walker = new atom();62 Walker = World::get()->createAtom(); 62 63 Walker->type = hydrogen; 63 64 Walker->node->Init(0., 1., 1. ); 64 65 TestMolecule->AddAtom(Walker); 65 Walker = new atom();66 Walker = World::get()->createAtom(); 66 67 Walker->type = hydrogen; 67 68 Walker->node->Init(1., 1., 0. ); 68 69 TestMolecule->AddAtom(Walker); 69 Walker = new atom();70 Walker = World::get()->createAtom(); 70 71 Walker->type = hydrogen; 71 72 Walker->node->Init(0., 0., 0. ); -
src/unittests/DescriptorUnittest.cpp
rb54ac8 r46d958 22 22 CPPUNIT_TEST_SUITE_REGISTRATION( DescriptorUnittest ); 23 23 24 // some stubs25 class AtomStub : public atom {26 public:27 AtomStub(int _id) :28 atom(),29 id(_id)30 {}31 32 virtual int getId(){33 return id;34 }35 36 private:37 int id;38 };39 40 41 24 // set up and tear down 42 25 void DescriptorUnittest::setUp(){ 43 26 World::get(); 44 27 for(int i=0;i<ATOM_COUNT;++i){ 45 atoms[i]= new AtomStub(i); 28 atoms[i]= World::get()->createAtom(); 29 atomIds[i] = atoms[i]->getId(); 46 30 } 47 31 } 48 32 void DescriptorUnittest::tearDown(){ 49 33 World::destroy(); 50 for(int i=0;i<ATOM_COUNT;++i){51 delete atoms[i];52 }53 34 } 54 35 55 36 // some helper functions 56 bool hasAll(std::vector<atom*> atoms,int min, int max, std::set<int> excluded = std::set<int>()){ 57 for(int i=min;i<max;++i){ 58 if(!excluded.count(i)){ 37 bool hasAll(std::vector<atom*> atoms,int ids[ATOM_COUNT], std::set<int> excluded = std::set<int>()){ 38 for(int i=0;i<ATOM_COUNT;++i){ 39 int id = ids[i]; 40 if(!excluded.count(id)){ 59 41 std::vector<atom*>::iterator iter; 60 42 bool res=false; 61 43 for(iter=atoms.begin();iter!=atoms.end();++iter){ 62 res |= (*iter)->getId() == i ;44 res |= (*iter)->getId() == id; 63 45 } 64 46 if(!res) { 65 cout << "Atom " << i << " missing in returned list" << endl;47 cout << "Atom " << id << " missing in returned list" << endl; 66 48 return false; 67 49 } … … 86 68 void DescriptorUnittest::AtomBaseSetsTest(){ 87 69 std::vector<atom*> allAtoms = World::get()->getAllAtoms(AllAtoms()); 88 CPPUNIT_ASSERT_EQUAL( true , hasAll(allAtoms, 0,ATOM_COUNT));70 CPPUNIT_ASSERT_EQUAL( true , hasAll(allAtoms,atomIds)); 89 71 CPPUNIT_ASSERT_EQUAL( true , hasNoDuplicates(allAtoms)); 90 72 … … 95 77 // test Atoms from boundaries and middle of the set 96 78 atom* testAtom; 97 testAtom = World::get()->getAtom(AtomById(0)); 98 CPPUNIT_ASSERT_EQUAL( 0, testAtom->getId()); 99 testAtom = World::get()->getAtom(AtomById(ATOM_COUNT/2)); 100 CPPUNIT_ASSERT_EQUAL( ATOM_COUNT/2, testAtom->getId()); 101 testAtom = World::get()->getAtom(AtomById(ATOM_COUNT-1)); 102 CPPUNIT_ASSERT_EQUAL( ATOM_COUNT-1, testAtom->getId()); 79 testAtom = World::get()->getAtom(AtomById(atomIds[0])); 80 CPPUNIT_ASSERT(testAtom); 81 CPPUNIT_ASSERT_EQUAL( atomIds[0], testAtom->getId()); 82 testAtom = World::get()->getAtom(AtomById(atomIds[ATOM_COUNT/2])); 83 CPPUNIT_ASSERT(testAtom); 84 CPPUNIT_ASSERT_EQUAL( atomIds[ATOM_COUNT/2], testAtom->getId()); 85 testAtom = World::get()->getAtom(AtomById(atomIds[ATOM_COUNT-1])); 86 CPPUNIT_ASSERT(testAtom); 87 CPPUNIT_ASSERT_EQUAL( atomIds[ATOM_COUNT-1], testAtom->getId()); 103 88 89 // find some ID that has not been created 90 int outsideId =-1; 91 bool res = false; 92 while(!res) { 93 ++outsideId; 94 res = true; 95 for(int i = 0; i < ATOM_COUNT; ++i){ 96 res &= atomIds[i]!=outsideId; 97 } 98 } 104 99 // test from outside of set 105 testAtom = World::get()->getAtom(AtomById( ATOM_COUNT));100 testAtom = World::get()->getAtom(AtomById(outsideId)); 106 101 CPPUNIT_ASSERT(!testAtom); 107 102 } … … 110 105 { 111 106 std::vector<atom*> testAtoms = World::get()->getAllAtoms(AllAtoms()||NoAtoms()); 112 CPPUNIT_ASSERT_EQUAL( true , hasAll(testAtoms, 0,ATOM_COUNT));107 CPPUNIT_ASSERT_EQUAL( true , hasAll(testAtoms,atomIds)); 113 108 CPPUNIT_ASSERT_EQUAL( true , hasNoDuplicates(testAtoms)); 114 109 } … … 116 111 { 117 112 std::vector<atom*> testAtoms = World::get()->getAllAtoms(NoAtoms()||AllAtoms()); 118 CPPUNIT_ASSERT_EQUAL( true , hasAll(testAtoms, 0,ATOM_COUNT));113 CPPUNIT_ASSERT_EQUAL( true , hasAll(testAtoms,atomIds)); 119 114 CPPUNIT_ASSERT_EQUAL( true , hasNoDuplicates(testAtoms)); 120 115 } … … 137 132 { 138 133 std::vector<atom*> testAtoms = World::get()->getAllAtoms(!NoAtoms()); 139 CPPUNIT_ASSERT_EQUAL( true , hasAll(testAtoms, 0,ATOM_COUNT));134 CPPUNIT_ASSERT_EQUAL( true , hasAll(testAtoms,atomIds)); 140 135 CPPUNIT_ASSERT_EQUAL( true , hasNoDuplicates(testAtoms)); 141 136 } … … 143 138 // exclude and include some atoms 144 139 { 145 std::vector<atom*> testAtoms = World::get()->getAllAtoms(AllAtoms()&&(!AtomById( ATOM_COUNT/2)));140 std::vector<atom*> testAtoms = World::get()->getAllAtoms(AllAtoms()&&(!AtomById(atomIds[ATOM_COUNT/2]))); 146 141 std::set<int> excluded; 147 excluded.insert( ATOM_COUNT/2);148 CPPUNIT_ASSERT_EQUAL( true , hasAll(testAtoms, 0,ATOM_COUNT,excluded));142 excluded.insert(atomIds[ATOM_COUNT/2]); 143 CPPUNIT_ASSERT_EQUAL( true , hasAll(testAtoms,atomIds,excluded)); 149 144 CPPUNIT_ASSERT_EQUAL( true , hasNoDuplicates(testAtoms)); 150 145 CPPUNIT_ASSERT_EQUAL( (size_t)(ATOM_COUNT-1), testAtoms.size()); … … 152 147 153 148 { 154 std::vector<atom*> testAtoms = World::get()->getAllAtoms(NoAtoms()||(AtomById( ATOM_COUNT/2)));149 std::vector<atom*> testAtoms = World::get()->getAllAtoms(NoAtoms()||(AtomById(atomIds[ATOM_COUNT/2]))); 155 150 CPPUNIT_ASSERT_EQUAL( (size_t)1, testAtoms.size()); 156 CPPUNIT_ASSERT_EQUAL( ATOM_COUNT/2, testAtoms[0]->getId());151 CPPUNIT_ASSERT_EQUAL( atomIds[ATOM_COUNT/2], testAtoms[0]->getId()); 157 152 } 158 153 } -
src/unittests/DescriptorUnittest.hpp
rb54ac8 r46d958 33 33 private: 34 34 atom *atoms [ATOM_COUNT]; 35 int atomIds [ATOM_COUNT]; 35 36 }; 36 37 -
src/unittests/Makefile.am
rb54ac8 r46d958 30 30 CacheableTest \ 31 31 DescriptorUnittest \ 32 manipulateAtomsTest \ 32 manipulateAtomsTest \ 33 33 atomsCalculationTest \ 34 ${MENUTESTS} 35 34 ${MENUTESTS} 35 36 37 36 38 37 39 check_PROGRAMS = $(TESTS) -
src/unittests/analysisbondsunittest.cpp
rb54ac8 r46d958 16 16 #include <cstring> 17 17 18 #include "World.hpp" 18 19 #include "analysis_bonds.hpp" 19 20 #include "analysisbondsunittest.hpp" … … 62 63 // construct molecule (tetraeder of hydrogens) 63 64 TestMolecule = new molecule(tafel); 64 Walker = new atom();65 Walker = World::get()->createAtom(); 65 66 Walker->type = hydrogen; 66 67 Walker->node->Init(1.5, 0., 1.5 ); 67 68 TestMolecule->AddAtom(Walker); 68 Walker = new atom();69 Walker = World::get()->createAtom(); 69 70 Walker->type = hydrogen; 70 71 Walker->node->Init(0., 1.5, 1.5 ); 71 72 TestMolecule->AddAtom(Walker); 72 Walker = new atom();73 Walker = World::get()->createAtom(); 73 74 Walker->type = hydrogen; 74 75 Walker->node->Init(1.5, 1.5, 0. ); 75 76 TestMolecule->AddAtom(Walker); 76 Walker = new atom();77 Walker = World::get()->createAtom(); 77 78 Walker->type = hydrogen; 78 79 Walker->node->Init(0., 0., 0. ); 79 80 TestMolecule->AddAtom(Walker); 80 Walker = new atom();81 Walker = World::get()->createAtom(); 81 82 Walker->type = carbon; 82 83 Walker->node->Init(0.5, 0.5, 0.5 ); -
src/unittests/atomsCalculationTest.cpp
rb54ac8 r46d958 54 54 for(int i=0;i<ATOM_COUNT;++i){ 55 55 atoms[i]= new AtomStub(i); 56 World::get()->registerAtom(atoms[i]); 56 57 } 57 58 } 58 59 void atomsCalculationTest::tearDown(){ 59 60 World::destroy(); 60 for(int i=0;i<ATOM_COUNT;++i){61 delete atoms[i];62 }63 61 ActionRegistry::purgeRegistry(); 64 62 } -
src/unittests/atomsCalculationTest.hpp
rb54ac8 r46d958 31 31 private: 32 32 atom *atoms [ATOM_COUNT]; 33 int atomIds [ATOM_COUNT]; 33 34 }; 34 35 -
src/unittests/bondgraphunittest.cpp
rb54ac8 r46d958 16 16 #include <cstring> 17 17 18 #include "World.hpp" 18 19 #include "atom.hpp" 19 20 #include "bond.hpp" … … 57 58 // construct molecule (tetraeder of hydrogens) 58 59 TestMolecule = new molecule(tafel); 59 Walker = new atom();60 Walker = World::get()->createAtom(); 60 61 Walker->type = hydrogen; 61 62 Walker->node->Init(1., 0., 1. ); 62 63 TestMolecule->AddAtom(Walker); 63 Walker = new atom();64 Walker = World::get()->createAtom(); 64 65 Walker->type = hydrogen; 65 66 Walker->node->Init(0., 1., 1. ); 66 67 TestMolecule->AddAtom(Walker); 67 Walker = new atom();68 Walker = World::get()->createAtom(); 68 69 Walker->type = hydrogen; 69 70 Walker->node->Init(1., 1., 0. ); 70 71 TestMolecule->AddAtom(Walker); 71 Walker = new atom();72 Walker = World::get()->createAtom(); 72 73 Walker->type = hydrogen; 73 74 Walker->node->Init(0., 0., 0. ); -
src/unittests/listofbondsunittest.cpp
rb54ac8 r46d958 16 16 #include "listofbondsunittest.hpp" 17 17 18 #include "World.hpp" 18 19 #include "atom.hpp" 19 20 #include "bond.hpp" … … 50 51 // construct molecule (tetraeder of hydrogens) 51 52 TestMolecule = new molecule(tafel); 52 Walker = new atom();53 Walker = World::get()->createAtom(); 53 54 Walker->type = hydrogen; 54 55 Walker->node->Init(1., 0., 1. ); 55 56 TestMolecule->AddAtom(Walker); 56 Walker = new atom();57 Walker = World::get()->createAtom(); 57 58 Walker->type = hydrogen; 58 59 Walker->node->Init(0., 1., 1. ); 59 60 TestMolecule->AddAtom(Walker); 60 Walker = new atom();61 Walker = World::get()->createAtom(); 61 62 Walker->type = hydrogen; 62 63 Walker->node->Init(1., 1., 0. ); 63 64 TestMolecule->AddAtom(Walker); 64 Walker = new atom();65 Walker = World::get()->createAtom(); 65 66 Walker->type = hydrogen; 66 67 Walker->node->Init(0., 0., 0. ); … … 242 243 243 244 // remove atom2 244 delete(atom2);245 World::get()->destroyAtom(atom2); 245 246 246 247 // check bond if removed from other atom -
src/unittests/manipulateAtomsTest.cpp
rb54ac8 r46d958 69 69 for(int i=0;i<ATOM_COUNT;++i){ 70 70 atoms[i]= new AtomStub(i); 71 World::get()->registerAtom(atoms[i]); 71 72 } 72 73 } 73 74 void manipulateAtomsTest::tearDown(){ 74 75 World::destroy(); 75 for(int i=0;i<ATOM_COUNT;++i){76 delete atoms[i];77 }78 76 ActionRegistry::purgeRegistry(); 79 77 }
Note:
See TracChangeset
for help on using the changeset viewer.