Split test compile up into individual files.
[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
25 using std::pair;
26 using std::list;
27 using boost::shared_ptr;
28
29 BOOST_AUTO_TEST_CASE (stream_test)
30 {
31         xmlpp::Document doc;
32         xmlpp::Element* root = doc.create_root_node ("FFmpegAudioStream");
33         root->add_child("Name")->add_child_text ("hello there world");
34         root->add_child("Id")->add_child_text ("4");
35         root->add_child("FrameRate")->add_child_text ("44100");
36         root->add_child("Channels")->add_child_text ("2");
37         xmlpp::Element* mapping = root->add_child("Mapping");
38         mapping->add_child("ContentChannels")->add_child_text ("2");
39         {
40                 /* L -> L */
41                 xmlpp::Element* map = mapping->add_child ("Map");
42                 map->add_child("ContentIndex")->add_child_text ("0");
43                 map->add_child("DCP")->add_child_text ("0");
44         }
45         {
46                 /* L -> C */
47                 xmlpp::Element* map = mapping->add_child ("Map");
48                 map->add_child("ContentIndex")->add_child_text ("0");
49                 map->add_child("DCP")->add_child_text ("2");
50         }
51         {
52                 /* R -> R */
53                 xmlpp::Element* map = mapping->add_child ("Map");
54                 map->add_child("ContentIndex")->add_child_text ("1");
55                 map->add_child("DCP")->add_child_text ("1");
56         }
57         {
58                 /* R -> C */
59                 xmlpp::Element* map = mapping->add_child ("Map");
60                 map->add_child("ContentIndex")->add_child_text ("1");
61                 map->add_child("DCP")->add_child_text ("2");
62         }
63                 
64         FFmpegAudioStream a (shared_ptr<cxml::Node> (new cxml::Node (root)));
65
66         BOOST_CHECK_EQUAL (a.id, 4);
67         BOOST_CHECK_EQUAL (a.frame_rate, 44100);
68         BOOST_CHECK_EQUAL (a.channels, 2);
69         BOOST_CHECK_EQUAL (a.name, "hello there world");
70         BOOST_CHECK_EQUAL (a.mapping.content_channels(), 2);
71         BOOST_CHECK_EQUAL (a.mapping.content_to_dcp().size(), 4);
72
73         list<pair<int, libdcp::Channel> > m = a.mapping.content_to_dcp ();
74         list<pair<int, libdcp::Channel> >::iterator i = m.begin();
75
76         BOOST_CHECK_EQUAL (i->first, 0);
77         BOOST_CHECK_EQUAL (i->second, libdcp::LEFT);
78         ++i;
79         
80         BOOST_CHECK_EQUAL (i->first, 0);
81         BOOST_CHECK_EQUAL (i->second, libdcp::CENTRE);
82         ++i;
83         
84         BOOST_CHECK_EQUAL (i->first, 1);
85         BOOST_CHECK_EQUAL (i->second, libdcp::RIGHT);
86         ++i;
87
88         BOOST_CHECK_EQUAL (i->first, 1);
89         BOOST_CHECK_EQUAL (i->second, libdcp::CENTRE);
90         ++i;
91 }
92