Files
        @ 0bcc3039cc7c
    
        
              Branch filter: 
        
    Location: tempo-plotter/tests/test.cpp
        
            
            0bcc3039cc7c
            2.8 KiB
            text/x-c++hdr
        
        
    
    added tests for Sink class and some 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  | /*
  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;
        };
public:
    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);
}
 |