]> sigrok.org Git - pulseview.git/blame - test/data/decoderstack.cpp
test/CMakeLists.txt: Fix MinGW build of the tests.
[pulseview.git] / test / data / decoderstack.cpp
CommitLineData
3b3a445c
JH
1/*
2 * This file is part of the PulseView project.
3 *
4 * Copyright (C) 2013 Joel Holdsworth <joel@airwebreathe.org.uk>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
3b3a445c 21#include <libsigrokdecode/libsigrokdecode.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */
6ab78775 22#include <boost/test/unit_test.hpp>
3b3a445c
JH
23
24#include <libsigrok/libsigrok.h>
25
6e89374a 26#include "../../pv/data/decoderstack.h"
3b3a445c
JH
27#include "../../pv/devicemanager.h"
28#include "../../pv/sigsession.h"
b9329558 29#include "../../pv/view/decodetrace.h"
3b3a445c 30
819f4c25
JH
31using boost::shared_ptr;
32using pv::data::DecoderStack;
33using pv::data::decode::Decoder;
34using pv::view::DecodeTrace;
35using std::vector;
3b3a445c 36
6e89374a 37BOOST_AUTO_TEST_SUITE(DecoderStackTest)
3b3a445c 38
6e89374a 39BOOST_AUTO_TEST_CASE(TwoDecoderStack)
3b3a445c
JH
40{
41 sr_context *ctx = NULL;
42
43 BOOST_REQUIRE(sr_init(&ctx) == SR_OK);
44 BOOST_REQUIRE(ctx);
45
46 BOOST_REQUIRE(srd_init(NULL) == SRD_OK);
47
48 srd_decoder_load_all();
49
50 {
51 pv::DeviceManager dm(ctx);
52 pv::SigSession ss(dm);
53
54 const GSList *l = srd_decoder_list();
55 BOOST_REQUIRE(l);
56 srd_decoder *const dec = (struct srd_decoder*)l->data;
57 BOOST_REQUIRE(dec);
58
4e5a4405
JH
59 ss.add_decoder(dec);
60 ss.add_decoder(dec);
b6b267bb
JH
61
62 // Check the signals were created
819f4c25 63 const vector< shared_ptr<DecodeTrace> > sigs =
b6b267bb
JH
64 ss.get_decode_signals();
65
819f4c25 66 shared_ptr<DecoderStack> dec0 = sigs[0]->decoder();
b6b267bb
JH
67 BOOST_REQUIRE(dec0);
68
819f4c25 69 shared_ptr<DecoderStack> dec1 = sigs[0]->decoder();
b6b267bb
JH
70 BOOST_REQUIRE(dec1);
71
72 // Wait for the decode threads to complete
73 dec0->_decode_thread.join();
74 dec1->_decode_thread.join();
75
76 // Check there were no errors
77 BOOST_CHECK_EQUAL(dec0->error_message().isEmpty(), true);
78 BOOST_CHECK_EQUAL(dec1->error_message().isEmpty(), true);
3b3a445c
JH
79 }
80
81
82 srd_exit();
83 sr_exit(ctx);
84}
85
86BOOST_AUTO_TEST_SUITE_END()