summaryrefslogtreecommitdiff
path: root/libs/audiographer/tests/sndfile_writer_test.cc
blob: 359d456f1577c7c2d76d6571cadcbff4836fe790 (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
#include "utils.h"
#include "audiographer/sndfile_writer.h"

using namespace AudioGrapher;

class SndfileWriterTest : public CppUnit::TestFixture
{
  CPPUNIT_TEST_SUITE (SndfileWriterTest);
  CPPUNIT_TEST (testProcess);
  CPPUNIT_TEST_SUITE_END ();

  public:
	void setUp()
	{
		frames = 128;
		random_data = TestUtils::init_random_data(frames);
	}

	void tearDown()
	{
		delete [] random_data;
	}

	void testProcess()
	{
		uint channels = 2;
		std::string filename ("test.wav");
		writer.reset (new SndfileWriter<float>(channels, 44100, SF_FORMAT_WAV | SF_FORMAT_FLOAT, filename));
		ProcessContext<float> c (random_data, frames, channels);
		c.set_flag (ProcessContext<float>::EndOfInput);
		writer->process (c);
	}

  private:
	boost::shared_ptr<SndfileWriter<float> > writer;

	float * random_data;
	nframes_t frames;
};

CPPUNIT_TEST_SUITE_REGISTRATION (SndfileWriterTest);