Merge branch 'master' into 1.0
[libdcp.git] / test / test.cc
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #define BOOST_TEST_DYN_LINK
21 #define BOOST_TEST_MODULE libdcp_test
22 #include <boost/test/unit_test.hpp>
23 #include "util.h"
24 #include "test.h"
25
26 using std::string;
27
28 struct TestConfig
29 {
30         TestConfig()
31         {
32                 dcp::init ();
33         }
34 };
35
36 BOOST_GLOBAL_FIXTURE (TestConfig);
37
38 boost::filesystem::path
39 j2c (int)
40 {
41         return "test/data/32x32_red_square.j2c";
42 }
43
44 boost::filesystem::path
45 wav (dcp::Channel)
46 {
47         return "test/data/1s_24-bit_48k_silence.wav";
48 }
49
50 string test_corpus = "../libdcp-test";
51
52 TestFile::TestFile (boost::filesystem::path file)
53 {
54         _size = boost::filesystem::file_size (file);
55         _data = new uint8_t[_size];
56         FILE* f = dcp::fopen_boost (file, "r");
57         assert (f);
58         fread (_data, 1, _size, f);
59         fclose (f);
60 }
61
62 TestFile::~TestFile ()
63 {
64         delete[] _data;
65 }