Use make_shared<>.
[dcpomatic.git] / test / isdcf_name_test.cc
1 /*
2     Copyright (C) 2014-2016 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include <boost/test/unit_test.hpp>
22 #include "lib/film.h"
23 #include "lib/ratio.h"
24 #include "lib/dcp_content_type.h"
25 #include "lib/image_content.h"
26 #include "lib/video_content.h"
27 #include "lib/audio_mapping.h"
28 #include "lib/ffmpeg_content.h"
29 #include "lib/audio_content.h"
30 #include "test.h"
31 #include <boost/make_shared.hpp>
32 #include <iostream>
33
34 using std::cout;
35 using boost::shared_ptr;
36 using boost::make_shared;
37
38 BOOST_AUTO_TEST_CASE (isdcf_name_test)
39 {
40         shared_ptr<Film> film = new_test_film ("isdcf_name_test");
41
42         /* A basic test */
43
44         film->set_name ("My Nice Film");
45         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
46         film->set_container (Ratio::from_id ("185"));
47         film->_isdcf_date = boost::gregorian::date (2014, boost::gregorian::Jul, 4);
48         ISDCFMetadata m;
49         m.content_version = 1;
50         m.audio_language = "EN";
51         m.subtitle_language = "XX";
52         m.territory = "UK";
53         m.rating = "PG";
54         m.studio = "ST";
55         m.facility = "FA";
56         film->set_isdcf_metadata (m);
57         film->set_interop (true);
58         BOOST_CHECK_EQUAL (film->isdcf_name(false), "MyNiceFilm_FTR-1_F_EN-XX_UK-PG_2K_ST_20140704_FA_IOP_OV");
59
60         /* Test a long name and some different data */
61
62         film->set_name ("My Nice Film With A Very Long Name");
63         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("TLR"));
64         film->set_container (Ratio::from_id ("239"));
65         film->_isdcf_date = boost::gregorian::date (2014, boost::gregorian::Jul, 4);
66         film->set_audio_channels (1);
67         film->set_resolution (RESOLUTION_4K);
68         m.content_version = 2;
69         m.audio_language = "DE";
70         m.subtitle_language = "FR";
71         m.territory = "US";
72         m.rating = "R";
73         m.studio = "DI";
74         m.facility = "PP";
75         film->set_isdcf_metadata (m);
76         film->set_interop (false);
77         BOOST_CHECK_EQUAL (film->isdcf_name(false), "MyNiceFilmWith_TLR-2_S_DE-fr_US-R_4K_DI_20140704_PP_SMPTE_OV");
78
79         /* Test interior aspect ratio: shouldn't be shown with trailers */
80
81         shared_ptr<ImageContent> content = make_shared<ImageContent> (film, "test/data/simple_testcard_640x480.png");
82         film->examine_and_add_content (content);
83         wait_for_jobs ();
84         content->video->set_scale (VideoContentScale (Ratio::from_id ("133")));
85         film->set_container (Ratio::from_id ("185"));
86         BOOST_CHECK_EQUAL (film->isdcf_name(false), "MyNiceFilmWith_TLR-2_F_DE-fr_US-R_4K_DI_20140704_PP_SMPTE_OV");
87
88         /* But should be shown for anything else */
89
90         film->set_dcp_content_type (DCPContentType::from_isdcf_name ("XSN"));
91         BOOST_CHECK_EQUAL (film->isdcf_name(false), "MyNiceFilmWith_XSN-2_F-133_DE-fr_US-R_4K_DI_20140704_PP_SMPTE_OV");
92
93         /* Test 3D */
94
95         film->set_three_d (true);
96         BOOST_CHECK_EQUAL (film->isdcf_name(false), "MyNiceFilmWith_XSN-2-3D_F-133_DE-fr_US-R_4K_DI_20140704_PP_SMPTE-3D_OV");
97
98         /* Test content type modifiers */
99
100         film->set_three_d (false);
101         m.temp_version = true;
102         m.pre_release = true;
103         m.red_band = true;
104         m.chain = "MyChain";
105         m.two_d_version_of_three_d = true;
106         m.mastered_luminance = "4fl";
107         film->set_isdcf_metadata (m);
108         film->set_video_frame_rate (48);
109         BOOST_CHECK_EQUAL (film->isdcf_name(false), "MyNiceFilmWith_XSN-2-Temp-Pre-RedBand-MyChain-2D-4fl-48_F-133_DE-fr_US-R_4K_DI_20140704_PP_SMPTE_OV");
110
111         /* Test a name which is already in camelCase */
112
113         film->set_three_d (false);
114         m.temp_version = false;
115         m.pre_release = false;
116         m.red_band = false;
117         m.chain = "";
118         m.two_d_version_of_three_d = false;
119         m.mastered_luminance = "";
120         film->set_isdcf_metadata (m);
121         film->set_video_frame_rate (24);
122         film->set_name ("IKnowCamels");
123         BOOST_CHECK_EQUAL (film->isdcf_name(false), "IKnowCamels_XSN-2_F-133_DE-fr_US-R_4K_DI_20140704_PP_SMPTE_OV");
124
125         /* And one in capitals */
126
127         film->set_name ("LIKE SHOUTING");
128         BOOST_CHECK_EQUAL (film->isdcf_name(false), "LikeShouting_XSN-2_F-133_DE-fr_US-R_4K_DI_20140704_PP_SMPTE_OV");
129
130         /* Test audio channel markup */
131
132         film->set_audio_channels (6);
133         shared_ptr<FFmpegContent> sound = make_shared<FFmpegContent> (film, "test/data/sine_440.wav");
134         film->examine_and_add_content (sound);
135         wait_for_jobs ();
136         BOOST_CHECK_EQUAL (film->isdcf_name(false), "LikeShouting_XSN-2_F-133_DE-fr_US-R_10_4K_DI_20140704_PP_SMPTE_OV");
137
138         AudioMapping mapping = sound->audio->mapping ();
139
140         mapping.set (0, dcp::LEFT, 1.0);
141         sound->audio->set_mapping (mapping);
142         BOOST_CHECK_EQUAL (film->isdcf_name(false), "LikeShouting_XSN-2_F-133_DE-fr_US-R_20_4K_DI_20140704_PP_SMPTE_OV");
143         mapping.set (0, dcp::RIGHT, 1.0);
144         sound->audio->set_mapping (mapping);
145         BOOST_CHECK_EQUAL (film->isdcf_name(false), "LikeShouting_XSN-2_F-133_DE-fr_US-R_30_4K_DI_20140704_PP_SMPTE_OV");
146         mapping.set (0, dcp::LFE, 1.0);
147         sound->audio->set_mapping (mapping);
148         BOOST_CHECK_EQUAL (film->isdcf_name(false), "LikeShouting_XSN-2_F-133_DE-fr_US-R_31_4K_DI_20140704_PP_SMPTE_OV");
149         mapping.set (0, dcp::LS, 1.0);
150         sound->audio->set_mapping (mapping);
151         BOOST_CHECK_EQUAL (film->isdcf_name(false), "LikeShouting_XSN-2_F-133_DE-fr_US-R_41_4K_DI_20140704_PP_SMPTE_OV");
152         mapping.set (0, dcp::RS, 1.0);
153         sound->audio->set_mapping (mapping);
154         BOOST_CHECK_EQUAL (film->isdcf_name(false), "LikeShouting_XSN-2_F-133_DE-fr_US-R_51_4K_DI_20140704_PP_SMPTE_OV");
155         mapping.set (0, dcp::HI, 1.0);
156         sound->audio->set_mapping (mapping);
157         BOOST_CHECK_EQUAL (film->isdcf_name(false), "LikeShouting_XSN-2_F-133_DE-fr_US-R_51_4K_DI_20140704_PP_SMPTE_OV");
158         film->set_audio_channels (8);
159         mapping.set (0, dcp::HI, 1.0);
160         sound->audio->set_mapping (mapping);
161         BOOST_CHECK_EQUAL (film->isdcf_name(false), "LikeShouting_XSN-2_F-133_DE-fr_US-R_61_4K_DI_20140704_PP_SMPTE_OV");
162         mapping.set (0, dcp::VI, 1.0);
163         sound->audio->set_mapping (mapping);
164         BOOST_CHECK_EQUAL (film->isdcf_name(false), "LikeShouting_XSN-2_F-133_DE-fr_US-R_71_4K_DI_20140704_PP_SMPTE_OV");
165 }