Doxygen will only process files with a @file documentation comment. Up to now, none of our test code has such a comment, preventing the cross-links to unit tests from working. This is unfortunate, since unit tests, and even the code comments there, can be considered as the most useful form of technical documentation. Thus I'll start an initiative to fill in those missing comments automatically
119 lines
3.2 KiB
C++
119 lines
3.2 KiB
C++
/*
|
|
IterQueue(Test) - verify queue-like iterator and builder function
|
|
|
|
Copyright (C) Lumiera.org
|
|
2012, Hermann Vosseler <Ichthyostega@web.de>
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation; either version 2 of
|
|
the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
* *****************************************************/
|
|
|
|
/** @file iter-queue-test.cpp
|
|
** unit test §§TODO§§
|
|
*/
|
|
|
|
|
|
|
|
#include "lib/test/run.hpp"
|
|
#include "lib/test/test-helper.hpp"
|
|
#include "lib/util.hpp"
|
|
|
|
#include "lib/iter-stack.hpp"
|
|
|
|
|
|
|
|
namespace lib {
|
|
namespace test{
|
|
|
|
using ::Test;
|
|
using util::isnil;
|
|
using lumiera::error::LUMIERA_ERROR_ITER_EXHAUST;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************//**
|
|
* @test cover an easy to use queue, built as convenience wrapper
|
|
* on top of \c std::deque and allowing element retrieval
|
|
* by iteration.
|
|
* - iterable according to the Lumiera Forward Iterator concept
|
|
* - can enqueue and dequeue elements repeatedly
|
|
* - can be loaded through an generic builder API.
|
|
*
|
|
* @see IterExplorer
|
|
* @see IterAdapter
|
|
*/
|
|
class IterQueue_test : public Test
|
|
{
|
|
|
|
virtual void
|
|
run (Arg)
|
|
{
|
|
IterQueue<int> queue;
|
|
CHECK (isnil (queue));
|
|
|
|
VERIFY_ERROR (ITER_EXHAUST, *queue );
|
|
VERIFY_ERROR (ITER_EXHAUST, ++queue );
|
|
|
|
queue.feed (1);
|
|
queue.feed (3);
|
|
queue.feed (5);
|
|
|
|
CHECK (!isnil (queue));
|
|
CHECK (1 == *queue);
|
|
|
|
++queue;
|
|
CHECK (3 == *queue);
|
|
|
|
CHECK (3 == queue.pop());
|
|
CHECK (5 == *queue);
|
|
|
|
++queue;
|
|
CHECK (isnil (queue));
|
|
VERIFY_ERROR (ITER_EXHAUST, *queue );
|
|
VERIFY_ERROR (ITER_EXHAUST, ++queue );
|
|
VERIFY_ERROR (ITER_EXHAUST, queue.pop() );
|
|
|
|
|
|
// use the generic builder API to feed
|
|
// the contents of another iterator into the queue
|
|
queue = build(queue).usingSequence (elements (23,45));
|
|
|
|
int i = queue.pop();
|
|
CHECK (i == 23);
|
|
CHECK (45 == *queue);
|
|
|
|
// feeding new elements and pulling / iteration can be mixed
|
|
queue.feed(67);
|
|
CHECK (45 == *queue);
|
|
++queue;
|
|
CHECK (67 == *queue);
|
|
++queue;
|
|
CHECK (isnil (queue));
|
|
queue.feed(89);
|
|
CHECK (89 == *queue);
|
|
queue.pop();
|
|
VERIFY_ERROR (ITER_EXHAUST, *queue );
|
|
}
|
|
|
|
};
|
|
|
|
|
|
LAUNCHER (IterQueue_test, "unit common");
|
|
|
|
|
|
}} // namespace lib::test
|