Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/unittests/analysisbondsunittest.cpp

    r6056f1 r4eb4fe  
    1414#include <iostream>
    1515#include <stdio.h>
     16#include <cstring>
    1617
     18#include "World.hpp"
     19#include "analysis_bonds.hpp"
     20#include "analysisbondsunittest.hpp"
    1721#include "atom.hpp"
    1822#include "bond.hpp"
     
    2125#include "molecule.hpp"
    2226#include "periodentafel.hpp"
    23 #include "analysisbondsunittest.hpp"
     27
     28#ifdef HAVE_TESTRUNNER
     29#include "UnitTestMain.hpp"
     30#endif /*HAVE_TESTRUNNER*/
    2431
    2532/********************************************** Test classes **************************************/
     
    3340  atom *Walker = NULL;
    3441
    35   // init private all pointers to zero
    36   TestMolecule = NULL;
    37   hydrogen = NULL;
    38   tafel = NULL;
    39 
    40   // construct element
    41   hydrogen = new element;
    42   hydrogen->Z = 1;
    43   strcpy(hydrogen->name, "hydrogen");
    44   strcpy(hydrogen->symbol, "H");
    45   carbon = new element;
    46   carbon->Z = 2;
    47   strcpy(carbon->name, "carbon");
    48   strcpy(carbon->symbol, "C");
    49 
    50 
    51   // construct periodentafel
    52   tafel = new periodentafel;
    53   tafel->AddElement(hydrogen);
    54   tafel->AddElement(carbon);
     42  // get elements
     43  hydrogen = World::getInstance().getPeriode()->FindElement(1);
     44  carbon = World::getInstance().getPeriode()->FindElement(6);
     45  CPPUNIT_ASSERT(hydrogen != NULL && "could not find element hydrogen");
     46  CPPUNIT_ASSERT(carbon != NULL && "could not find element carbon");
    5547
    5648  // construct molecule (tetraeder of hydrogens)
    57   TestMolecule = new molecule(tafel);
    58   Walker = new atom();
     49  TestMolecule = World::getInstance().createMolecule();
     50  CPPUNIT_ASSERT(TestMolecule != NULL && "could not create molecule");
     51  Walker = World::getInstance().createAtom();
     52  CPPUNIT_ASSERT(Walker != NULL && "could not create atom");
    5953  Walker->type = hydrogen;
    60   Walker->node->Init(1., 0., 1. );
     54  *Walker->node = Vector(1.5, 0., 1.5 );
    6155  TestMolecule->AddAtom(Walker);
    62   Walker = new atom();
     56  Walker = World::getInstance().createAtom();
     57  CPPUNIT_ASSERT(Walker != NULL && "could not create atom");
    6358  Walker->type = hydrogen;
    64   Walker->node->Init(0., 1., 1. );
     59  *Walker->node = Vector(0., 1.5, 1.5 );
    6560  TestMolecule->AddAtom(Walker);
    66   Walker = new atom();
     61  Walker = World::getInstance().createAtom();
     62  CPPUNIT_ASSERT(Walker != NULL && "could not create atom");
    6763  Walker->type = hydrogen;
    68   Walker->node->Init(1., 1., 0. );
     64  *Walker->node = Vector(1.5, 1.5, 0. );
    6965  TestMolecule->AddAtom(Walker);
    70   Walker = new atom();
     66  Walker = World::getInstance().createAtom();
     67  CPPUNIT_ASSERT(Walker != NULL && "could not create atom");
    7168  Walker->type = hydrogen;
    72   Walker->node->Init(0., 0., 0. );
     69  *Walker->node = Vector(0., 0., 0. );
     70  TestMolecule->AddAtom(Walker);
     71  Walker = World::getInstance().createAtom();
     72  CPPUNIT_ASSERT(Walker != NULL && "could not create atom");
     73  Walker->type = carbon;
     74  *Walker->node = Vector(0.5, 0.5, 0.5 );
    7375  TestMolecule->AddAtom(Walker);
    7476
    7577  // check that TestMolecule was correctly constructed
    76   CPPUNIT_ASSERT_EQUAL( TestMolecule->AtomCount, 4 );
     78  CPPUNIT_ASSERT_EQUAL( TestMolecule->AtomCount, 5 );
    7779
    7880  // create a small file with table
    7981  filename = new string("test.dat");
     82  CPPUNIT_ASSERT(filename != NULL && "could not create string");
    8083  ofstream test(filename->c_str());
    81   test << ".\tH\tC\n";
    82   test << "H\t1.\t1.2\n";
    83   test << "C\t1.2\t1.5\n";
     84  test << ".\tH\tHe\tLi\tBe\tB\tC\n";
     85  test << "H\t1.\t1.\t1.\t1.\t1.\t1.2\n";
     86  test << "He\t1.\t1.\t1.\t1.\t1.\t1.\n";
     87  test << "Li\t1.\t1.\t1.\t1.\t1.\t1.\n";
     88  test << "Be\t1.\t1.\t1.\t1.\t1.\t1.\n";
     89  test << "B\t1.\t1.\t1.\t1.\t1.\t1.\n";
     90  test << "C\t1.2\t1.\t1.\t1.\t1.\t1.5\n";
     91  test.close();
    8492  BG = new BondGraph(true);
     93  CPPUNIT_ASSERT(BG != NULL && "could not create BondGraph");
     94
     95  CPPUNIT_ASSERT_EQUAL( true , BG->LoadBondLengthTable(*filename) );
     96  CPPUNIT_ASSERT_EQUAL( 1., BG->GetBondLength(0,0) );
     97  CPPUNIT_ASSERT_EQUAL( 1.2, BG->GetBondLength(0,5) );
     98  CPPUNIT_ASSERT_EQUAL( 1.5, BG->GetBondLength(5,5) );
     99
     100  BG->ConstructBondGraph(TestMolecule);
    85101};
    86102
     
    94110
    95111  // remove molecule
    96   delete(TestMolecule);
     112  World::getInstance().destroyMolecule(TestMolecule);
    97113  // note that all the atoms are cleaned by TestMolecule
    98   delete(tafel);
    99   // note that element is cleaned by periodentafel
     114  World::purgeInstance();
    100115};
    101116
    102 /** UnitTest for AnalysisBondsTest::LoadBondLengthTable().
     117/** UnitTest for GetMaxMinMeanBondCount().
    103118 */
    104 void AnalysisBondsTest::BondsTest()
     119void AnalysisBondsTest::GetMaxMinMeanBondCountTest()
    105120{
    106   CPPUNIT_ASSERT_EQUAL( true , BG->LoadBondLengthTable(*filename) );
    107   CPPUNIT_ASSERT_EQUAL( 1., BG->GetBondLength(0,0) );
    108   CPPUNIT_ASSERT_EQUAL( 1.2, BG->GetBondLength(0,1) );
    109   CPPUNIT_ASSERT_EQUAL( 1.5, BG->GetBondLength(1,1) );
    110 
    111   CPPUNIT_ASSERT_EQUAL( true , true );
     121  double Min = 20.; // check that initialization resets these arbitrary values
     122  double Mean = 200.;
     123  double Max = 1e-6;
     124  GetMaxMinMeanBondCount(TestMolecule, Min, Mean, Max);
     125  CPPUNIT_ASSERT_EQUAL( 1., Min );
     126  CPPUNIT_ASSERT_EQUAL( 1.6, Mean );
     127  CPPUNIT_ASSERT_EQUAL( 4., Max );
    112128
    113129};
    114130
    115 /********************************************** Main routine **************************************/
     131/** UnitTest for MinMaxBondDistanceBetweenElements().
     132 */
     133void AnalysisBondsTest::MinMeanMaxBondDistanceBetweenElementsTest()
     134{
     135  double Min = 20.; // check that initialization resets these arbitrary values
     136  double Mean = 2e+6;
     137  double Max = 1e-6;
     138  double Min2 = 20.;
     139  double Mean2 = 2e+6;
     140  double Max2 = 1e-6;
     141  const double maxbondlength = sqrt(1.*1. + 1.*1. + .5*.5);
     142  const double minbondlength = sqrt(.5*.5 + .5*.5 + .5*.5);
     143  const double meanbondlength = (minbondlength+3.*maxbondlength)/4.;
     144  // check bond lengths C-H
     145  MinMeanMaxBondDistanceBetweenElements(TestMolecule, hydrogen, carbon, Min, Mean, Max);
     146  CPPUNIT_ASSERT_EQUAL( minbondlength , Min );
     147  CPPUNIT_ASSERT_EQUAL( meanbondlength , Mean );
     148  CPPUNIT_ASSERT_EQUAL( maxbondlength , Max );
    116149
    117 int main(int argc, char **argv)
    118 {
    119   // Get the top level suite from the registry
    120   CppUnit::Test *suite = CppUnit::TestFactoryRegistry::getRegistry().makeTest();
     150  // check that elements are symmetric, i.e. C-H == H-C
     151  MinMeanMaxBondDistanceBetweenElements(TestMolecule, carbon, hydrogen, Min2, Mean2, Max2);
     152  CPPUNIT_ASSERT_EQUAL( Min , Min2 );
     153  CPPUNIT_ASSERT_EQUAL( Mean , Mean2 );
     154  CPPUNIT_ASSERT_EQUAL( Max , Max2 );
    121155
    122   // Adds the test to the list of test to run
    123   CppUnit::TextUi::TestRunner runner;
    124   runner.addTest( suite );
    125 
    126   // Change the default outputter to a compiler error format outputter
    127   runner.setOutputter( new CppUnit::CompilerOutputter( &runner.result(),
    128                                                        std::cerr ) );
    129   // Run the tests.
    130   bool wasSucessful = runner.run();
    131 
    132   // Return error code 1 if the one of test failed.
    133   return wasSucessful ? 0 : 1;
     156  // check no bond case (no bonds H-H in system!)
     157  MinMeanMaxBondDistanceBetweenElements(TestMolecule, hydrogen, hydrogen, Min, Mean, Max);
     158  CPPUNIT_ASSERT_EQUAL( 0. , Min );
     159  CPPUNIT_ASSERT_EQUAL( 0. , Mean );
     160  CPPUNIT_ASSERT_EQUAL( 0. , Max );
    134161};
Note: See TracChangeset for help on using the changeset viewer.