Merge master.
[dcpomatic.git] / test / stream_test.cc
1 /*
2     Copyright (C) 2013-2014 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 /** @test  test/stream_test.cc
21  *  @brief Some simple tests of FFmpegAudioStream.
22  */
23
24 #include <boost/test/unit_test.hpp>
25 #include <libxml++/libxml++.h>
26 #include <libcxml/cxml.h>
27 #include "lib/ffmpeg_content.h"
28 #include "lib/film.h"
29
30 using std::pair;
31 using std::list;
32 using boost::shared_ptr;
33
34 BOOST_AUTO_TEST_CASE (stream_test)
35 {
36         xmlpp::Document doc;
37         xmlpp::Element* root = doc.create_root_node ("FFmpegAudioStream");
38         root->add_child("Name")->add_child_text ("hello there world");
39         root->add_child("Id")->add_child_text ("4");
40         root->add_child("FrameRate")->add_child_text ("44100");
41         root->add_child("Channels")->add_child_text ("2");
42
43         /* This is the state file version 5 description of the mapping */
44         
45         xmlpp::Element* mapping = root->add_child("Mapping");
46         mapping->add_child("ContentChannels")->add_child_text ("2");
47         {
48                 /* L -> L */
49                 xmlpp::Element* map = mapping->add_child ("Map");
50                 map->add_child("ContentIndex")->add_child_text ("0");
51                 map->add_child("DCP")->add_child_text ("0");
52         }
53         {
54                 /* L -> C */
55                 xmlpp::Element* map = mapping->add_child ("Map");
56                 map->add_child("ContentIndex")->add_child_text ("0");
57                 map->add_child("DCP")->add_child_text ("2");
58         }
59         {
60                 /* R -> R */
61                 xmlpp::Element* map = mapping->add_child ("Map");
62                 map->add_child("ContentIndex")->add_child_text ("1");
63                 map->add_child("DCP")->add_child_text ("1");
64         }
65         {
66                 /* R -> C */
67                 xmlpp::Element* map = mapping->add_child ("Map");
68                 map->add_child("ContentIndex")->add_child_text ("1");
69                 map->add_child("DCP")->add_child_text ("2");
70         }
71                 
72         FFmpegAudioStream a (cxml::NodePtr (new cxml::Node (root)), 5);
73
74         BOOST_CHECK_EQUAL (a.identifier(), "4");
75         BOOST_CHECK_EQUAL (a.frame_rate, 44100);
76         BOOST_CHECK_EQUAL (a.channels, 2);
77         BOOST_CHECK_EQUAL (a.name, "hello there world");
78         BOOST_CHECK_EQUAL (a.mapping.content_channels(), 2);
79
80         BOOST_CHECK_EQUAL (a.mapping.get (0, dcp::LEFT), 1);
81         BOOST_CHECK_EQUAL (a.mapping.get (0, dcp::RIGHT), 0);
82         BOOST_CHECK_EQUAL (a.mapping.get (0, dcp::CENTRE), 1);
83         BOOST_CHECK_EQUAL (a.mapping.get (1, dcp::LEFT), 0);
84         BOOST_CHECK_EQUAL (a.mapping.get (1, dcp::RIGHT), 1);
85         BOOST_CHECK_EQUAL (a.mapping.get (1, dcp::CENTRE), 1);
86 }
87