Fill test disk partitions with random noise to expose more bugs.
[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 using std::shared_ptr;
47
48
49 /** Overlay two video-only bits of content, don't use the video on one and
50  *  make sure the other one is in the DCP.
51  */
52 BOOST_AUTO_TEST_CASE (no_use_video_test1)
53 {
54         auto film = new_test_film2 ("no_use_video_test1");
55         auto A = content_factory("test/data/flat_red.png").front();
56         auto B = content_factory("test/data/flat_green.png").front();
57         film->examine_and_add_content (A);
58         film->examine_and_add_content (B);
59         BOOST_REQUIRE (!wait_for_jobs());
60
61         A->set_position (film, dcpomatic::DCPTime());
62         B->set_position (film, dcpomatic::DCPTime());
63         A->video->set_use (false);
64
65         make_and_verify_dcp (film);
66
67         check_dcp ("test/data/no_use_video_test1", film);
68 }
69
70
71 /** Overlay two muxed sources and disable the video on one */
72 BOOST_AUTO_TEST_CASE (no_use_video_test2)
73 {
74         auto film = new_test_film2 ("no_use_video_test2");
75         auto A = content_factory (TestPaths::private_data() / "dolby_aurora.vob").front();
76         auto B = content_factory (TestPaths::private_data() / "big_buck_bunny_trailer_480p.mov").front();
77         film->examine_and_add_content (A);
78         film->examine_and_add_content (B);
79         BOOST_REQUIRE (!wait_for_jobs());
80
81         A->set_position (film, dcpomatic::DCPTime());
82         B->set_position (film, dcpomatic::DCPTime());
83         A->video->set_use (false);
84
85         make_and_verify_dcp (film);
86
87         check_dcp (TestPaths::private_data() / "no_use_video_test2", film);
88 }
89
90
91 /** Make two DCPs and make a VF with the audio from one and the video from another */
92 BOOST_AUTO_TEST_CASE (no_use_video_test3)
93 {
94         auto ov_a = new_test_film2 ("no_use_video_test3_ov_a");
95         auto ov_a_pic = content_factory("test/data/flat_red.png").front();
96         BOOST_REQUIRE (ov_a_pic);
97         auto ov_a_snd = content_factory("test/data/sine_16_48_220_10.wav").front();
98         BOOST_REQUIRE (ov_a_snd);
99         ov_a->examine_and_add_content (ov_a_pic);
100         ov_a->examine_and_add_content (ov_a_snd);
101         BOOST_REQUIRE (!wait_for_jobs());
102         make_and_verify_dcp (ov_a);
103
104         auto ov_b = new_test_film2("no_use_video_test3_ov_b");
105         auto ov_b_pic = content_factory("test/data/flat_green.png").front();
106         BOOST_REQUIRE (ov_b_pic);
107         auto ov_b_snd = content_factory("test/data/sine_16_48_880_10.wav").front();
108         BOOST_REQUIRE (ov_b_snd);
109         ov_b->examine_and_add_content (ov_b_pic);
110         ov_b->examine_and_add_content (ov_b_snd);
111         BOOST_REQUIRE (!wait_for_jobs());
112         make_and_verify_dcp (ov_b);
113
114         auto vf = new_test_film2 ("no_use_video_test3_vf");
115         auto A = make_shared<DCPContent>(ov_a->dir(ov_a->dcp_name()));
116         auto B = make_shared<DCPContent>(ov_b->dir(ov_b->dcp_name()));
117         vf->examine_and_add_content (A);
118         vf->examine_and_add_content (B);
119         BOOST_REQUIRE (!wait_for_jobs());
120
121         A->set_position (vf, dcpomatic::DCPTime());
122         A->video->set_use (false);
123         B->set_position (vf, dcpomatic::DCPTime());
124         AudioMapping mapping (16, 16);
125         mapping.make_zero ();
126         B->audio->set_mapping(mapping);
127
128         A->set_reference_audio (true);
129         B->set_reference_video (true);
130
131         make_and_verify_dcp (vf, {dcp::VerificationNote::Code::EXTERNAL_ASSET});
132
133         dcp::DCP ov_a_check (ov_a->dir(ov_a->dcp_name()));
134         ov_a_check.read ();
135         BOOST_REQUIRE_EQUAL (ov_a_check.cpls().size(), 1U);
136         BOOST_REQUIRE_EQUAL (ov_a_check.cpls().front()->reels().size(), 1U);
137         auto ov_a_reel (ov_a_check.cpls().front()->reels().front());
138
139         dcp::DCP ov_b_check (ov_b->dir(ov_b->dcp_name()));
140         ov_b_check.read ();
141         BOOST_REQUIRE_EQUAL (ov_b_check.cpls().size(), 1U);
142         BOOST_REQUIRE_EQUAL (ov_b_check.cpls().front()->reels().size(), 1U);
143         auto ov_b_reel (ov_b_check.cpls().front()->reels().front());
144
145         dcp::DCP vf_check (vf->dir(vf->dcp_name()));
146         vf_check.read ();
147         BOOST_REQUIRE_EQUAL (vf_check.cpls().size(), 1U);
148         BOOST_REQUIRE_EQUAL (vf_check.cpls().front()->reels().size(), 1U);
149         auto vf_reel (vf_check.cpls().front()->reels().front());
150
151         BOOST_CHECK_EQUAL (vf_reel->main_picture()->asset_ref().id(), ov_b_reel->main_picture()->asset_ref().id());
152         BOOST_CHECK_EQUAL (vf_reel->main_sound()->asset_ref().id(), ov_a_reel->main_sound()->asset_ref().id());
153 }
154
155