]> sigrok.org Git - pulseview.git/blob - test/data/decoderstack.cpp
test: Disable all unit tests for now (all of them are broken).
[pulseview.git] / test / data / decoderstack.cpp
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
21 #include <libsigrokdecode/libsigrokdecode.h> /* First, so we avoid a _POSIX_C_SOURCE warning. */
22 #include <boost/test/unit_test.hpp>
23
24 #include <libsigrok/libsigrok.h>
25
26 #include "../../pv/data/decoderstack.h"
27 #include "../../pv/devicemanager.h"
28 #include "../../pv/sigsession.h"
29 #include "../../pv/view/decodetrace.h"
30
31 using pv::data::DecoderStack;
32 using pv::data::decode::Decoder;
33 using pv::view::DecodeTrace;
34 using std::shared_ptr;
35 using std::vector;
36
37 #if 0
38 BOOST_AUTO_TEST_SUITE(DecoderStackTest)
39
40 BOOST_AUTO_TEST_CASE(TwoDecoderStack)
41 {
42         sr_context *ctx = NULL;
43
44         BOOST_REQUIRE(sr_init(&ctx) == SR_OK);
45         BOOST_REQUIRE(ctx);
46
47         BOOST_REQUIRE(srd_init(NULL) == SRD_OK);
48
49         srd_decoder_load_all();
50
51         {
52                 pv::DeviceManager dm(ctx);
53                 pv::Session ss(dm);
54
55                 const GSList *l = srd_decoder_list();
56                 BOOST_REQUIRE(l);
57                 srd_decoder *const dec = (struct srd_decoder*)l->data;
58                 BOOST_REQUIRE(dec);
59
60                 ss.add_decoder(dec);
61                 ss.add_decoder(dec);
62
63                 // Check the signals were created
64                 const vector< shared_ptr<DecodeTrace> > sigs =
65                         ss.get_decode_signals();
66
67                 shared_ptr<DecoderStack> dec0 = sigs[0]->decoder();
68                 BOOST_REQUIRE(dec0);
69
70                 shared_ptr<DecoderStack> dec1 = sigs[0]->decoder();
71                 BOOST_REQUIRE(dec1);
72
73                 // Wait for the decode threads to complete
74                 dec0->decode_thread_.join();
75                 dec1->decode_thread_.join();
76
77                 // Check there were no errors
78                 BOOST_CHECK_EQUAL(dec0->error_message().isEmpty(), true);
79                 BOOST_CHECK_EQUAL(dec1->error_message().isEmpty(), true);
80         }
81
82
83         srd_exit();
84         sr_exit(ctx);
85 }
86
87 BOOST_AUTO_TEST_SUITE_END()
88 #endif