summaryrefslogtreecommitdiff
path: root/libs/audiographer/tests/general/deinterleaver_test.cc
blob: f7e15459b3521a5634d90bbc57a50ffc4a44e043 (plain)
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
#include "tests/utils.h"

#include "audiographer/general/deinterleaver.h"

using namespace AudioGrapher;

class DeInterleaverTest : public CppUnit::TestFixture
{
  CPPUNIT_TEST_SUITE (DeInterleaverTest);
  CPPUNIT_TEST (testUninitialized);
  CPPUNIT_TEST (testInvalidOutputIndex);
  CPPUNIT_TEST (testInvalidInputSize);
  CPPUNIT_TEST (testOutputSize);
  CPPUNIT_TEST (testZeroInput);
  CPPUNIT_TEST_SUITE_END ();

  public:
	void setUp()
	{
		channels = 3;
		frames_per_channel = 128;
		total_frames = channels * frames_per_channel;
		random_data = TestUtils::init_random_data (total_frames, 1.0);

		deinterleaver.reset (new DeInterleaver<float>());
		sink_a.reset (new VectorSink<float>());
		sink_b.reset (new VectorSink<float>());
		sink_c.reset (new VectorSink<float>());
	}

	void tearDown()
	{
		delete [] random_data;
	}

	void testUninitialized()
	{
		deinterleaver.reset (new DeInterleaver<float>());
		CPPUNIT_ASSERT_THROW (deinterleaver->output(0)->add_output (sink_a), Exception);
	}

	void testInvalidOutputIndex()
	{
		deinterleaver->init (3, frames_per_channel);
		CPPUNIT_ASSERT_THROW (deinterleaver->output(3)->add_output (sink_a), Exception);
	}

	void testInvalidInputSize()
	{
		deinterleaver->init (channels, frames_per_channel);

		ProcessContext<float> c (random_data, 2 * total_frames, channels);

		// Too many, frames % channels == 0
		CPPUNIT_ASSERT_THROW (deinterleaver->process (c.beginning (total_frames + channels)), Exception);

		// Too many, frames % channels != 0
		CPPUNIT_ASSERT_THROW (deinterleaver->process (c.beginning (total_frames + 1)), Exception);

		// Too few, frames % channels != 0
		CPPUNIT_ASSERT_THROW (deinterleaver->process (c.beginning (total_frames - 1)), Exception);
	}

	void assert_outputs (framecnt_t expected_frames)
	{
		framecnt_t generated_frames = 0;

		generated_frames = sink_a->get_data().size();
		CPPUNIT_ASSERT_EQUAL (expected_frames, generated_frames);

		generated_frames = sink_b->get_data().size();
		CPPUNIT_ASSERT_EQUAL (expected_frames, generated_frames);

		generated_frames = sink_c->get_data().size();
		CPPUNIT_ASSERT_EQUAL (expected_frames, generated_frames);
	}

	void testOutputSize()
	{
		deinterleaver->init (channels, frames_per_channel);

		deinterleaver->output (0)->add_output (sink_a);
		deinterleaver->output (1)->add_output (sink_b);
		deinterleaver->output (2)->add_output (sink_c);

		// Test maximum frame input
		ProcessContext<float> c (random_data, total_frames, channels);
		deinterleaver->process (c);
		assert_outputs (frames_per_channel);

		// Now with less frames
		framecnt_t const less_frames = frames_per_channel / 4;
		deinterleaver->process (c.beginning (less_frames * channels));
		assert_outputs (less_frames);
	}

	void testZeroInput()
	{
		deinterleaver->init (channels, frames_per_channel);

		deinterleaver->output (0)->add_output (sink_a);
		deinterleaver->output (1)->add_output (sink_b);
		deinterleaver->output (2)->add_output (sink_c);

		// Input zero frames
		ProcessContext<float> c (random_data, total_frames, channels);
		deinterleaver->process (c.beginning (0));

		// ...and now test regular input
		deinterleaver->process (c);
		assert_outputs (frames_per_channel);
	}


  private:
	boost::shared_ptr<DeInterleaver<float> > deinterleaver;

	boost::shared_ptr<VectorSink<float> > sink_a;
	boost::shared_ptr<VectorSink<float> > sink_b;
	boost::shared_ptr<VectorSink<float> > sink_c;

	float * random_data;
	framecnt_t frames_per_channel;
	framecnt_t total_frames;
	unsigned int channels;
};

CPPUNIT_TEST_SUITE_REGISTRATION (DeInterleaverTest);