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