Cleanup: test tidying.
[dcpomatic.git] / test / no_use_video_test.cc
1 /*
2     Copyright (C) 2020-2021 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
22 /** @file  test/test_no_use_video.cc
23  *  @brief Test some cases where the video parts of inputs are ignored, to
24  *  check that the right DCPs are made.
25  *  @ingroup completedcp
26  */
27
28
29 #include "lib/audio_content.h"
30 #include "lib/content.h"
31 #include "lib/content_factory.h"
32 #include "lib/film.h"
33 #include "lib/dcp_content.h"
34 #include "lib/video_content.h"
35 #include "test.h"
36 #include <dcp/cpl.h>
37 #include <dcp/dcp.h>
38 #include <dcp/reel.h>
39 #include <dcp/reel_sound_asset.h>
40 #include <dcp/reel_picture_asset.h>
41 #include <boost/test/unit_test.hpp>
42
43
44 using std::dynamic_pointer_cast;
45 using std::make_shared;
46
47
48 /** Overlay two video-only bits of content, don't use the video on one and
49  *  make sure the other one is in the DCP.
50  */
51 BOOST_AUTO_TEST_CASE (no_use_video_test1)
52 {
53         auto film = new_test_film2 ("no_use_video_test1");
54         auto A = content_factory("test/data/flat_red.png")[0];
55         auto B = content_factory("test/data/flat_green.png")[0];
56         film->examine_and_add_content (A);
57         film->examine_and_add_content (B);
58         BOOST_REQUIRE (!wait_for_jobs());
59
60         A->set_position (film, dcpomatic::DCPTime());
61         B->set_position (film, dcpomatic::DCPTime());
62         A->video->set_use (false);
63
64         make_and_verify_dcp (film);
65
66         check_dcp ("test/data/no_use_video_test1", film);
67 }
68
69
70 /** Overlay two muxed sources and disable the video on one */
71 BOOST_AUTO_TEST_CASE (no_use_video_test2)
72 {
73         auto film = new_test_film2 ("no_use_video_test2");
74         auto A = content_factory(TestPaths::private_data() / "dolby_aurora.vob")[0];
75         auto B = content_factory(TestPaths::private_data() / "big_buck_bunny_trailer_480p.mov")[0];
76         film->examine_and_add_content (A);
77         film->examine_and_add_content (B);
78         BOOST_REQUIRE (!wait_for_jobs());
79
80         A->set_position (film, dcpomatic::DCPTime());
81         B->set_position (film, dcpomatic::DCPTime());
82         A->video->set_use (false);
83
84         make_and_verify_dcp (film);
85
86         check_dcp (TestPaths::private_data() / "no_use_video_test2", film);
87 }
88
89
90 /** Make two DCPs and make a VF with the audio from one and the video from another */
91 BOOST_AUTO_TEST_CASE (no_use_video_test3)
92 {
93         auto ov_a = new_test_film2 ("no_use_video_test3_ov_a");
94         auto ov_a_pic = content_factory("test/data/flat_red.png")[0];
95         BOOST_REQUIRE (ov_a_pic);
96         auto ov_a_snd = content_factory("test/data/sine_16_48_220_10.wav")[0];
97         BOOST_REQUIRE (ov_a_snd);
98         ov_a->examine_and_add_content (ov_a_pic);
99         ov_a->examine_and_add_content (ov_a_snd);
100         BOOST_REQUIRE (!wait_for_jobs());
101         make_and_verify_dcp (ov_a);
102
103         auto ov_b = new_test_film2("no_use_video_test3_ov_b");
104         auto ov_b_pic = content_factory("test/data/flat_green.png")[0];
105         BOOST_REQUIRE (ov_b_pic);
106         auto ov_b_snd = content_factory("test/data/sine_16_48_880_10.wav")[0];
107         BOOST_REQUIRE (ov_b_snd);
108         ov_b->examine_and_add_content (ov_b_pic);
109         ov_b->examine_and_add_content (ov_b_snd);
110         BOOST_REQUIRE (!wait_for_jobs());
111         make_and_verify_dcp (ov_b);
112
113         auto vf = new_test_film2 ("no_use_video_test3_vf");
114         auto A = make_shared<DCPContent>(ov_a->dir(ov_a->dcp_name()));
115         auto B = make_shared<DCPContent>(ov_b->dir(ov_b->dcp_name()));
116         vf->examine_and_add_content (A);
117         vf->examine_and_add_content (B);
118         BOOST_REQUIRE (!wait_for_jobs());
119
120         A->set_position (vf, dcpomatic::DCPTime());
121         A->video->set_use (false);
122         B->set_position (vf, dcpomatic::DCPTime());
123         AudioMapping mapping (16, 16);
124         mapping.make_zero ();
125         B->audio->set_mapping(mapping);
126
127         A->set_reference_audio (true);
128         B->set_reference_video (true);
129
130         make_and_verify_dcp (vf, {dcp::VerificationNote::Code::EXTERNAL_ASSET});
131
132         dcp::DCP ov_a_check (ov_a->dir(ov_a->dcp_name()));
133         ov_a_check.read ();
134         BOOST_REQUIRE_EQUAL (ov_a_check.cpls().size(), 1U);
135         BOOST_REQUIRE_EQUAL (ov_a_check.cpls().front()->reels().size(), 1U);
136         auto ov_a_reel (ov_a_check.cpls().front()->reels().front());
137
138         dcp::DCP ov_b_check (ov_b->dir(ov_b->dcp_name()));
139         ov_b_check.read ();
140         BOOST_REQUIRE_EQUAL (ov_b_check.cpls().size(), 1U);
141         BOOST_REQUIRE_EQUAL (ov_b_check.cpls().front()->reels().size(), 1U);
142         auto ov_b_reel (ov_b_check.cpls().front()->reels().front());
143
144         dcp::DCP vf_check (vf->dir(vf->dcp_name()));
145         vf_check.read ();
146         BOOST_REQUIRE_EQUAL (vf_check.cpls().size(), 1U);
147         BOOST_REQUIRE_EQUAL (vf_check.cpls().front()->reels().size(), 1U);
148         auto vf_reel (vf_check.cpls().front()->reels().front());
149
150         BOOST_CHECK_EQUAL (vf_reel->main_picture()->asset_ref().id(), ov_b_reel->main_picture()->asset_ref().id());
151         BOOST_CHECK_EQUAL (vf_reel->main_sound()->asset_ref().id(), ov_a_reel->main_sound()->asset_ref().id());
152 }
153
154