| 1 | /*
 | 
|---|
| 2 |  * Project: MoleCuilder
 | 
|---|
| 3 |  * Description: creates and alters molecular systems
 | 
|---|
| 4 |  * Copyright (C)  2011 University of Bonn. All rights reserved.
 | 
|---|
| 5 |  * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
 | 
|---|
| 6 |  */
 | 
|---|
| 7 | 
 | 
|---|
| 8 | /*
 | 
|---|
| 9 |  * FragmentQueueUnitTest.cpp
 | 
|---|
| 10 |  *
 | 
|---|
| 11 |  *  Created on: Oct 23, 2011
 | 
|---|
| 12 |  *      Author: heber
 | 
|---|
| 13 |  */
 | 
|---|
| 14 | 
 | 
|---|
| 15 | // include config.h
 | 
|---|
| 16 | #ifdef HAVE_CONFIG_H
 | 
|---|
| 17 | #include <config.h>
 | 
|---|
| 18 | #endif
 | 
|---|
| 19 | 
 | 
|---|
| 20 | #include <cppunit/CompilerOutputter.h>
 | 
|---|
| 21 | #include <cppunit/extensions/TestFactoryRegistry.h>
 | 
|---|
| 22 | #include <cppunit/ui/text/TestRunner.h>
 | 
|---|
| 23 | 
 | 
|---|
| 24 | #include "FragmentQueue.hpp"
 | 
|---|
| 25 | 
 | 
|---|
| 26 | #include "FragmentQueueUnitTest.hpp"
 | 
|---|
| 27 | 
 | 
|---|
| 28 | #include "CodePatterns/Assert.hpp"
 | 
|---|
| 29 | 
 | 
|---|
| 30 | #ifdef HAVE_TESTRUNNER
 | 
|---|
| 31 | #include "UnitTestMain.hpp"
 | 
|---|
| 32 | #endif /*HAVE_TESTRUNNER*/
 | 
|---|
| 33 | 
 | 
|---|
| 34 | /********************************************** Test classes **************************************/
 | 
|---|
| 35 | 
 | 
|---|
| 36 | // Registers the fixture into the 'registry'
 | 
|---|
| 37 | CPPUNIT_TEST_SUITE_REGISTRATION( FragmentQueueTest );
 | 
|---|
| 38 | 
 | 
|---|
| 39 | 
 | 
|---|
| 40 | void FragmentQueueTest::setUp()
 | 
|---|
| 41 | {
 | 
|---|
| 42 |   // Throw assertions
 | 
|---|
| 43 |   ASSERT_DO(Assert::Throw);
 | 
|---|
| 44 | 
 | 
|---|
| 45 |   queue = new FragmentQueue();
 | 
|---|
| 46 | }
 | 
|---|
| 47 | 
 | 
|---|
| 48 | 
 | 
|---|
| 49 | void FragmentQueueTest::tearDown()
 | 
|---|
| 50 | {
 | 
|---|
| 51 |   delete queue;
 | 
|---|
| 52 | }
 | 
|---|
| 53 | 
 | 
|---|
| 54 | /** UnitTest for working JobQueue
 | 
|---|
| 55 |  */
 | 
|---|
| 56 | void FragmentQueueTest::JobsTest()
 | 
|---|
| 57 | {
 | 
|---|
| 58 |   FragmentJob testJob;
 | 
|---|
| 59 |   /// check for illegal id
 | 
|---|
| 60 | #ifndef NDEBUG
 | 
|---|
| 61 |   std::cout << "The following assertion is intended and does not indicate a failure." << std::endl;
 | 
|---|
| 62 |   CPPUNIT_ASSERT_THROW( queue->pushJob(testJob), Assert::AssertionFailure );
 | 
|---|
| 63 | #endif
 | 
|---|
| 64 |   // set to valid id
 | 
|---|
| 65 |   testJob.setId(1);
 | 
|---|
| 66 |   testJob.outputfile = std::string("do something");
 | 
|---|
| 67 | 
 | 
|---|
| 68 |   CPPUNIT_ASSERT_EQUAL(false, queue->isJobPresent() );
 | 
|---|
| 69 | 
 | 
|---|
| 70 | #ifndef NDEBUG
 | 
|---|
| 71 |   CPPUNIT_ASSERT_NO_THROW( queue->pushJob(testJob) );
 | 
|---|
| 72 | #else
 | 
|---|
| 73 |   queue->pushJob(testJob);
 | 
|---|
| 74 | #endif
 | 
|---|
| 75 | 
 | 
|---|
| 76 |   CPPUNIT_ASSERT_EQUAL((size_t)1, queue->jobs.size());
 | 
|---|
| 77 |   CPPUNIT_ASSERT_EQUAL(true, queue->isJobPresent() );
 | 
|---|
| 78 |   CPPUNIT_ASSERT_EQUAL((size_t)1, queue->results.size());
 | 
|---|
| 79 |   FragmentQueue::ResultMap::const_iterator iter = queue->results.find((JobId_t)1);
 | 
|---|
| 80 |   CPPUNIT_ASSERT( iter != queue->results.end() );
 | 
|---|
| 81 |   CPPUNIT_ASSERT( FragmentQueue::NoResult == iter->second );
 | 
|---|
| 82 | 
 | 
|---|
| 83 |   // push same id again
 | 
|---|
| 84 | #ifndef NDEBUG
 | 
|---|
| 85 |   std::cout << "The following assertion is intended and does not indicate a failure." << std::endl;
 | 
|---|
| 86 |   CPPUNIT_ASSERT_THROW( queue->pushJob(testJob), Assert::AssertionFailure );
 | 
|---|
| 87 | #endif
 | 
|---|
| 88 | 
 | 
|---|
| 89 |   CPPUNIT_ASSERT_EQUAL((size_t)1, queue->jobs.size());
 | 
|---|
| 90 |   CPPUNIT_ASSERT_EQUAL((size_t)1, queue->results.size());
 | 
|---|
| 91 | 
 | 
|---|
| 92 |   FragmentJob poppedJob;
 | 
|---|
| 93 | #ifndef NDEBUG
 | 
|---|
| 94 |   CPPUNIT_ASSERT_NO_THROW( poppedJob = queue->popJob() );
 | 
|---|
| 95 | #else
 | 
|---|
| 96 |   poppedJob = queue->popJob();
 | 
|---|
| 97 | #endif
 | 
|---|
| 98 |   CPPUNIT_ASSERT( poppedJob == testJob );
 | 
|---|
| 99 | 
 | 
|---|
| 100 |   CPPUNIT_ASSERT_EQUAL((size_t)0, queue->jobs.size());
 | 
|---|
| 101 |   CPPUNIT_ASSERT_EQUAL(false, queue->isJobPresent() );
 | 
|---|
| 102 |   CPPUNIT_ASSERT_EQUAL((size_t)1, queue->results.size());
 | 
|---|
| 103 |   iter = queue->results.find((JobId_t)1);
 | 
|---|
| 104 |   CPPUNIT_ASSERT( iter != queue->results.end() );
 | 
|---|
| 105 |   CPPUNIT_ASSERT( FragmentQueue::NoResultQueued == iter->second );
 | 
|---|
| 106 | 
 | 
|---|
| 107 | #ifndef NDEBUG
 | 
|---|
| 108 |   std::cout << "The following assertion is intended and does not indicate a failure." << std::endl;
 | 
|---|
| 109 |   CPPUNIT_ASSERT_THROW( queue->popJob(), Assert::AssertionFailure );
 | 
|---|
| 110 | #endif
 | 
|---|
| 111 | }
 | 
|---|
| 112 | 
 | 
|---|
| 113 | /** UnitTest for working ResultMap
 | 
|---|
| 114 |  */
 | 
|---|
| 115 | void FragmentQueueTest::ResultsTest()
 | 
|---|
| 116 | {
 | 
|---|
| 117 |   // prepare a job
 | 
|---|
| 118 |   FragmentJob testJob;
 | 
|---|
| 119 |   testJob.setId(1);
 | 
|---|
| 120 |   testJob.outputfile = std::string("do something");
 | 
|---|
| 121 | #ifndef NDEBUG
 | 
|---|
| 122 |   CPPUNIT_ASSERT_NO_THROW( queue->pushJob(testJob) );
 | 
|---|
| 123 | #else
 | 
|---|
| 124 |   queue->pushJob(testJob);
 | 
|---|
| 125 | #endif
 | 
|---|
| 126 | #ifndef NDEBUG
 | 
|---|
| 127 |   CPPUNIT_ASSERT_NO_THROW( queue->popJob() );
 | 
|---|
| 128 | #else
 | 
|---|
| 129 |   queue->popJob();
 | 
|---|
| 130 | #endif
 | 
|---|
| 131 | 
 | 
|---|
| 132 | 
 | 
|---|
| 133 |   // prepare a result
 | 
|---|
| 134 |   FragmentResult testResult(1);
 | 
|---|
| 135 |   FragmentResult wrongIdResult(2);
 | 
|---|
| 136 | 
 | 
|---|
| 137 |   // check that none are present and we can't get result yet
 | 
|---|
| 138 |   CPPUNIT_ASSERT( !queue->isResultPresent(1) );
 | 
|---|
| 139 |   CPPUNIT_ASSERT( !queue->isResultPresent(2) );
 | 
|---|
| 140 | #ifndef NDEBUG
 | 
|---|
| 141 |   std::cout << "The following assertion is intended and does not indicate a failure." << std::endl;
 | 
|---|
| 142 |   CPPUNIT_ASSERT_THROW( queue->getResult(1), Assert::AssertionFailure );
 | 
|---|
| 143 | #endif
 | 
|---|
| 144 | 
 | 
|---|
| 145 |   /// check for admonishing wrong id
 | 
|---|
| 146 | #ifndef NDEBUG
 | 
|---|
| 147 |   std::cout << "The following assertion is intended and does not indicate a failure." << std::endl;
 | 
|---|
| 148 |   CPPUNIT_ASSERT_THROW( queue->pushResult(wrongIdResult), Assert::AssertionFailure );
 | 
|---|
| 149 | #endif
 | 
|---|
| 150 | 
 | 
|---|
| 151 |   // push correct result
 | 
|---|
| 152 | #ifndef NDEBUG
 | 
|---|
| 153 |   CPPUNIT_ASSERT_NO_THROW( queue->pushResult(testResult) );
 | 
|---|
| 154 | #else
 | 
|---|
| 155 |   queue->pushResult(testResult);
 | 
|---|
| 156 | #endif
 | 
|---|
| 157 | 
 | 
|---|
| 158 |   // check presence again
 | 
|---|
| 159 |   CPPUNIT_ASSERT( queue->isResultPresent(1) );
 | 
|---|
| 160 | 
 | 
|---|
| 161 |   // obtain result again
 | 
|---|
| 162 | #ifndef NDEBUG
 | 
|---|
| 163 |   CPPUNIT_ASSERT_NO_THROW( queue->getResult(1) );
 | 
|---|
| 164 | #else
 | 
|---|
| 165 |   queue->getResult(1);
 | 
|---|
| 166 | #endif
 | 
|---|
| 167 | 
 | 
|---|
| 168 |   // check presence one more time
 | 
|---|
| 169 |   CPPUNIT_ASSERT( !queue->isResultPresent(1) );
 | 
|---|
| 170 |   CPPUNIT_ASSERT( !queue->isResultPresent(2) );
 | 
|---|
| 171 | #ifndef NDEBUG
 | 
|---|
| 172 |   std::cout << "The following assertion is intended and does not indicate a failure." << std::endl;
 | 
|---|
| 173 |   CPPUNIT_ASSERT_THROW( queue->getResult(1), Assert::AssertionFailure );
 | 
|---|
| 174 | #endif
 | 
|---|
| 175 | }
 | 
|---|