Files
@ 4d01ee44e4e5
Branch filter:
Location: tempo-plotter/tests/test.cpp
4d01ee44e4e5
4.0 KiB
text/x-c++hdr
added simple tests for Source class and minor improvements
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | /*
Copyright © 2017 Hasan Yavuz Özderya
This file is part of serialplot.
serialplot 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 3 of the License, or
(at your option) any later version.
serialplot 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 serialplot. If not, see <http://www.gnu.org/licenses/>.
*/
#define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file
#include "catch.hpp"
#include "samplepack.h"
#include "source.h"
TEST_CASE("samplepack with no X", "[memory]")
{
SamplePack pack(100, 3, false);
REQUIRE_FALSE(pack.hasX());
REQUIRE(pack.numChannels() == 3);
REQUIRE(pack.numSamples() == 100);
double* chan0 = pack.data(0);
double* chan1 = pack.data(1);
double* chan2 = pack.data(2);
REQUIRE(chan0 == chan1 - 100);
REQUIRE(chan1 == chan2 - 100);
}
TEST_CASE("samplepack with X", "[memory]")
{
SamplePack pack(100, 3, true);
REQUIRE(pack.hasX());
REQUIRE(pack.numChannels() == 3);
REQUIRE(pack.numSamples() == 100);
REQUIRE(pack.xData() != nullptr);
}
class TestSink : public Sink
{
public:
int totalFed;
int _numChannels;
bool _hasX;
TestSink()
{
totalFed = 0;
_numChannels = 0;
_hasX = false;
};
void feedIn(const SamplePack& data)
{
REQUIRE(data.numChannels() == numChannels());
totalFed += data.numSamples();
Sink::feedIn(data);
};
void setNumChannels(unsigned nc, bool x)
{
_numChannels = nc;
_hasX = x;
Sink::setNumChannels(nc, x);
};
virtual unsigned numChannels() const
{
return _numChannels;
};
virtual bool hasX() const
{
return _hasX;
};
};
TEST_CASE("sink", "[memory, stream]")
{
TestSink sink;
SamplePack pack(100, 3, false);
sink.setNumChannels(3, false);
REQUIRE(sink.numChannels() == 3);
sink.feedIn(pack);
REQUIRE(sink.totalFed == 100);
sink.feedIn(pack);
REQUIRE(sink.totalFed == 200);
TestSink follower;
sink.connectFollower(&follower);
REQUIRE(follower.numChannels() == 3);
REQUIRE(follower.hasX() == false);
sink.feedIn(pack);
REQUIRE(sink.totalFed == 300);
REQUIRE(follower.totalFed == 100);
sink.setNumChannels(2, true);
REQUIRE(follower.numChannels() == 2);
REQUIRE(follower.hasX() == true);
}
class TestSource : public Source
{
public:
int _numChannels;
bool _hasX;
TestSource(unsigned nc, bool x)
{
_numChannels = nc;
_hasX = x;
};
virtual unsigned numChannels() const
{
return _numChannels;
};
virtual bool hasX() const
{
return _hasX;
};
void _feed(const SamplePack& data) const
{
feedOut(data);
};
void _setNumChannels(unsigned nc, bool x)
{
_numChannels = nc;
_hasX = x;
updateNumChannels();
};
};
TEST_CASE("source", "[memory, stream]")
{
TestSink sink;
TestSource source(3, false);
REQUIRE(source.numChannels() == 3);
REQUIRE(source.hasX() == false);
source.connect(&sink);
REQUIRE(sink.numChannels() == 3);
REQUIRE(sink.hasX() == false);
source._setNumChannels(5, true);
REQUIRE(sink.numChannels() == 5);
REQUIRE(sink.hasX() == true);
SamplePack pack(100, 5, true);
source._feed(pack);
REQUIRE(sink.totalFed == 100);
source.disconnect(&sink);
source._feed(pack);
REQUIRE(sink.totalFed == 100);
}
|