[b5ebb5] | 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 |
|
---|
[02f346] | 28 | #include "CodePatterns/Assert.hpp"
|
---|
| 29 |
|
---|
[b5ebb5] | 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 | {
|
---|
[02f346] | 42 | // Throw assertions
|
---|
| 43 | ASSERT_DO(Assert::Throw);
|
---|
| 44 |
|
---|
[b5ebb5] | 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 | {
|
---|
[02f346] | 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 |
|
---|
[12d15a] | 68 | CPPUNIT_ASSERT_EQUAL(false, queue->isJobPresent() );
|
---|
| 69 |
|
---|
[02f346] | 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());
|
---|
[12d15a] | 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 );
|
---|
[02f346] | 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());
|
---|
[12d15a] | 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
|
---|
[b5ebb5] | 111 | }
|
---|
| 112 |
|
---|
| 113 | /** UnitTest for working ResultMap
|
---|
| 114 | */
|
---|
| 115 | void FragmentQueueTest::ResultsTest()
|
---|
| 116 | {
|
---|
[02f346] | 117 | // prepare a job
|
---|
| 118 | FragmentJob testJob;
|
---|
| 119 | testJob.setId(1);
|
---|
| 120 | testJob.outputfile = std::string("do something");
|
---|
[12d15a] | 121 | #ifndef NDEBUG
|
---|
| 122 | CPPUNIT_ASSERT_NO_THROW( queue->pushJob(testJob) );
|
---|
| 123 | #else
|
---|
[02f346] | 124 | queue->pushJob(testJob);
|
---|
[12d15a] | 125 | #endif
|
---|
| 126 | #ifndef NDEBUG
|
---|
| 127 | CPPUNIT_ASSERT_NO_THROW( queue->popJob() );
|
---|
| 128 | #else
|
---|
| 129 | queue->popJob();
|
---|
| 130 | #endif
|
---|
| 131 |
|
---|
[02f346] | 132 |
|
---|
| 133 | // prepare a result
|
---|
| 134 | FragmentResult testResult(1);
|
---|
| 135 | FragmentResult wrongIdResult(2);
|
---|
| 136 |
|
---|
| 137 | // check presence
|
---|
| 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 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 | #ifndef NDEBUG
|
---|
| 151 | CPPUNIT_ASSERT_NO_THROW( queue->pushResult(testResult) );
|
---|
| 152 | #else
|
---|
| 153 | queue->pushResult(testResult);
|
---|
| 154 | #endif
|
---|
| 155 |
|
---|
| 156 | // check presence again
|
---|
| 157 | CPPUNIT_ASSERT( queue->isResultPresent(1) );
|
---|
| 158 |
|
---|
| 159 | #ifndef NDEBUG
|
---|
| 160 | CPPUNIT_ASSERT_NO_THROW( queue->getResult(1) );
|
---|
| 161 | #else
|
---|
| 162 | queue->getResult(1);
|
---|
| 163 | #endif
|
---|
| 164 |
|
---|
| 165 | // check presence one more time
|
---|
| 166 | CPPUNIT_ASSERT( !queue->isResultPresent(1) );
|
---|
| 167 | CPPUNIT_ASSERT( !queue->isResultPresent(2) );
|
---|
| 168 | #ifndef NDEBUG
|
---|
| 169 | std::cout << "The following assertion is intended and does not indicate a failure." << std::endl;
|
---|
| 170 | CPPUNIT_ASSERT_THROW( queue->getResult(1), Assert::AssertionFailure );
|
---|
| 171 | #endif
|
---|
[b5ebb5] | 172 | }
|
---|