[bcf653] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
| 4 | * Copyright (C) 2010 University of Bonn. All rights reserved.
|
---|
| 5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[7a1ce5] | 8 | /*
|
---|
| 9 | * DescriptorUnittest.cpp
|
---|
| 10 | *
|
---|
| 11 | * Created on: Feb 9, 2010
|
---|
| 12 | * Author: crueger
|
---|
| 13 | */
|
---|
| 14 |
|
---|
[bf3817] | 15 | // include config.h
|
---|
| 16 | #ifdef HAVE_CONFIG_H
|
---|
| 17 | #include <config.h>
|
---|
| 18 | #endif
|
---|
| 19 |
|
---|
[57adc7] | 20 | #include "AtomDescriptorTest.hpp"
|
---|
[7a1ce5] | 21 |
|
---|
| 22 | #include <cppunit/CompilerOutputter.h>
|
---|
| 23 | #include <cppunit/extensions/TestFactoryRegistry.h>
|
---|
| 24 | #include <cppunit/ui/text/TestRunner.h>
|
---|
| 25 | #include <iostream>
|
---|
| 26 |
|
---|
| 27 | #include <Descriptors/AtomDescriptor.hpp>
|
---|
| 28 | #include <Descriptors/AtomIdDescriptor.hpp>
|
---|
| 29 |
|
---|
| 30 | #include "World.hpp"
|
---|
| 31 | #include "atom.hpp"
|
---|
| 32 |
|
---|
[9b6b2f] | 33 | #ifdef HAVE_TESTRUNNER
|
---|
| 34 | #include "UnitTestMain.hpp"
|
---|
| 35 | #endif /*HAVE_TESTRUNNER*/
|
---|
| 36 |
|
---|
| 37 | /********************************************** Test classes **************************************/
|
---|
[7a1ce5] | 38 | // Registers the fixture into the 'registry'
|
---|
[57adc7] | 39 | CPPUNIT_TEST_SUITE_REGISTRATION( AtomDescriptorTest );
|
---|
[7a1ce5] | 40 |
|
---|
| 41 | // set up and tear down
|
---|
[57adc7] | 42 | void AtomDescriptorTest::setUp(){
|
---|
[23b547] | 43 | World::getInstance();
|
---|
[7a1ce5] | 44 | for(int i=0;i<ATOM_COUNT;++i){
|
---|
[23b547] | 45 | atoms[i]= World::getInstance().createAtom();
|
---|
[57adc7] | 46 | atomIds[i]= atoms[i]->getId();
|
---|
[7a1ce5] | 47 | }
|
---|
| 48 | }
|
---|
[57adc7] | 49 |
|
---|
| 50 | void AtomDescriptorTest::tearDown(){
|
---|
[23b547] | 51 | World::purgeInstance();
|
---|
[7a1ce5] | 52 | }
|
---|
| 53 |
|
---|
| 54 | // some helper functions
|
---|
[57adc7] | 55 | static bool hasAllAtoms(std::vector<atom*> atoms,atomId_t ids[ATOM_COUNT], std::set<atomId_t> excluded = std::set<atomId_t>()){
|
---|
[46d958] | 56 | for(int i=0;i<ATOM_COUNT;++i){
|
---|
[57adc7] | 57 | atomId_t id = ids[i];
|
---|
[46d958] | 58 | if(!excluded.count(id)){
|
---|
[7a1ce5] | 59 | std::vector<atom*>::iterator iter;
|
---|
| 60 | bool res=false;
|
---|
| 61 | for(iter=atoms.begin();iter!=atoms.end();++iter){
|
---|
[46d958] | 62 | res |= (*iter)->getId() == id;
|
---|
[7a1ce5] | 63 | }
|
---|
| 64 | if(!res) {
|
---|
[46d958] | 65 | cout << "Atom " << id << " missing in returned list" << endl;
|
---|
[7a1ce5] | 66 | return false;
|
---|
| 67 | }
|
---|
| 68 | }
|
---|
| 69 | }
|
---|
| 70 | return true;
|
---|
| 71 | }
|
---|
| 72 |
|
---|
[57adc7] | 73 | static bool hasNoDuplicateAtoms(std::vector<atom*> atoms){
|
---|
| 74 | std::set<atomId_t> found;
|
---|
[7a1ce5] | 75 | std::vector<atom*>::iterator iter;
|
---|
| 76 | for(iter=atoms.begin();iter!=atoms.end();++iter){
|
---|
| 77 | int id = (*iter)->getId();
|
---|
| 78 | if(found.count(id))
|
---|
| 79 | return false;
|
---|
| 80 | found.insert(id);
|
---|
| 81 | }
|
---|
| 82 | return true;
|
---|
| 83 | }
|
---|
| 84 |
|
---|
| 85 |
|
---|
[57adc7] | 86 | void AtomDescriptorTest::AtomBaseSetsTest(){
|
---|
[23b547] | 87 | std::vector<atom*> allAtoms = World::getInstance().getAllAtoms(AllAtoms());
|
---|
[57adc7] | 88 | CPPUNIT_ASSERT_EQUAL( true , hasAllAtoms(allAtoms,atomIds));
|
---|
| 89 | CPPUNIT_ASSERT_EQUAL( true , hasNoDuplicateAtoms(allAtoms));
|
---|
[7a1ce5] | 90 |
|
---|
[23b547] | 91 | std::vector<atom*> noAtoms = World::getInstance().getAllAtoms(NoAtoms());
|
---|
[7a1ce5] | 92 | CPPUNIT_ASSERT_EQUAL( true , noAtoms.empty());
|
---|
| 93 | }
|
---|
[57adc7] | 94 | void AtomDescriptorTest::AtomIdTest(){
|
---|
[7a1ce5] | 95 | // test Atoms from boundaries and middle of the set
|
---|
| 96 | atom* testAtom;
|
---|
[23b547] | 97 | testAtom = World::getInstance().getAtom(AtomById(atomIds[0]));
|
---|
[46d958] | 98 | CPPUNIT_ASSERT(testAtom);
|
---|
| 99 | CPPUNIT_ASSERT_EQUAL( atomIds[0], testAtom->getId());
|
---|
[23b547] | 100 | testAtom = World::getInstance().getAtom(AtomById(atomIds[ATOM_COUNT/2]));
|
---|
[46d958] | 101 | CPPUNIT_ASSERT(testAtom);
|
---|
| 102 | CPPUNIT_ASSERT_EQUAL( atomIds[ATOM_COUNT/2], testAtom->getId());
|
---|
[23b547] | 103 | testAtom = World::getInstance().getAtom(AtomById(atomIds[ATOM_COUNT-1]));
|
---|
[46d958] | 104 | CPPUNIT_ASSERT(testAtom);
|
---|
| 105 | CPPUNIT_ASSERT_EQUAL( atomIds[ATOM_COUNT-1], testAtom->getId());
|
---|
| 106 |
|
---|
| 107 | // find some ID that has not been created
|
---|
[57adc7] | 108 | atomId_t outsideId=0;
|
---|
[46d958] | 109 | bool res = false;
|
---|
[57adc7] | 110 | for(outsideId=0;!res;++outsideId) {
|
---|
[46d958] | 111 | res = true;
|
---|
| 112 | for(int i = 0; i < ATOM_COUNT; ++i){
|
---|
| 113 | res &= atomIds[i]!=outsideId;
|
---|
| 114 | }
|
---|
| 115 | }
|
---|
[7a1ce5] | 116 | // test from outside of set
|
---|
[23b547] | 117 | testAtom = World::getInstance().getAtom(AtomById(outsideId));
|
---|
[7a1ce5] | 118 | CPPUNIT_ASSERT(!testAtom);
|
---|
| 119 | }
|
---|
[57adc7] | 120 | void AtomDescriptorTest::AtomCalcTest(){
|
---|
[7a1ce5] | 121 | // test some elementary set operations
|
---|
| 122 | {
|
---|
[23b547] | 123 | std::vector<atom*> testAtoms = World::getInstance().getAllAtoms(AllAtoms()||NoAtoms());
|
---|
[57adc7] | 124 | CPPUNIT_ASSERT_EQUAL( true , hasAllAtoms(testAtoms,atomIds));
|
---|
| 125 | CPPUNIT_ASSERT_EQUAL( true , hasNoDuplicateAtoms(testAtoms));
|
---|
[7a1ce5] | 126 | }
|
---|
| 127 |
|
---|
| 128 | {
|
---|
[23b547] | 129 | std::vector<atom*> testAtoms = World::getInstance().getAllAtoms(NoAtoms()||AllAtoms());
|
---|
[57adc7] | 130 | CPPUNIT_ASSERT_EQUAL( true , hasAllAtoms(testAtoms,atomIds));
|
---|
| 131 | CPPUNIT_ASSERT_EQUAL( true , hasNoDuplicateAtoms(testAtoms));
|
---|
[7a1ce5] | 132 | }
|
---|
| 133 |
|
---|
| 134 | {
|
---|
[23b547] | 135 | std::vector<atom*> testAtoms = World::getInstance().getAllAtoms(NoAtoms()&&AllAtoms());
|
---|
[7a1ce5] | 136 | CPPUNIT_ASSERT_EQUAL( true , testAtoms.empty());
|
---|
| 137 | }
|
---|
| 138 |
|
---|
| 139 | {
|
---|
[23b547] | 140 | std::vector<atom*> testAtoms = World::getInstance().getAllAtoms(AllAtoms()&&NoAtoms());
|
---|
[7a1ce5] | 141 | CPPUNIT_ASSERT_EQUAL( true , testAtoms.empty());
|
---|
| 142 | }
|
---|
| 143 |
|
---|
| 144 | {
|
---|
[23b547] | 145 | std::vector<atom*> testAtoms = World::getInstance().getAllAtoms(!AllAtoms());
|
---|
[7a1ce5] | 146 | CPPUNIT_ASSERT_EQUAL( true , testAtoms.empty());
|
---|
| 147 | }
|
---|
| 148 |
|
---|
| 149 | {
|
---|
[23b547] | 150 | std::vector<atom*> testAtoms = World::getInstance().getAllAtoms(!NoAtoms());
|
---|
[57adc7] | 151 | CPPUNIT_ASSERT_EQUAL( true , hasAllAtoms(testAtoms,atomIds));
|
---|
| 152 | CPPUNIT_ASSERT_EQUAL( true , hasNoDuplicateAtoms(testAtoms));
|
---|
[7a1ce5] | 153 | }
|
---|
| 154 | // exclude and include some atoms
|
---|
| 155 | {
|
---|
[23b547] | 156 | std::vector<atom*> testAtoms = World::getInstance().getAllAtoms(AllAtoms()&&(!AtomById(atomIds[ATOM_COUNT/2])));
|
---|
[57adc7] | 157 | std::set<atomId_t> excluded;
|
---|
[46d958] | 158 | excluded.insert(atomIds[ATOM_COUNT/2]);
|
---|
[57adc7] | 159 | CPPUNIT_ASSERT_EQUAL( true , hasAllAtoms(testAtoms,atomIds,excluded));
|
---|
| 160 | CPPUNIT_ASSERT_EQUAL( true , hasNoDuplicateAtoms(testAtoms));
|
---|
[7a1ce5] | 161 | CPPUNIT_ASSERT_EQUAL( (size_t)(ATOM_COUNT-1), testAtoms.size());
|
---|
| 162 | }
|
---|
| 163 |
|
---|
| 164 | {
|
---|
[23b547] | 165 | std::vector<atom*> testAtoms = World::getInstance().getAllAtoms(NoAtoms()||(AtomById(atomIds[ATOM_COUNT/2])));
|
---|
[7a1ce5] | 166 | CPPUNIT_ASSERT_EQUAL( (size_t)1, testAtoms.size());
|
---|
[46d958] | 167 | CPPUNIT_ASSERT_EQUAL( atomIds[ATOM_COUNT/2], testAtoms[0]->getId());
|
---|
[7a1ce5] | 168 | }
|
---|
| 169 | }
|
---|