Another signed/unsigned mismatch.
[dcpomatic.git] / test / map_cli_test.cc
index 4b212ea39a846fa02c7cc0140171d616d036d324..143f391b1cf4f06c15b25828634449b612bd9cb5 100644 (file)
@@ -211,7 +211,7 @@ BOOST_AUTO_TEST_CASE(map_simple_interop_dcp_with_subs)
 
 static
 void
-test_map_ov_vf_copy()
+test_map_ov_vf_copy(vector<string> extra_args = {})
 {
        string const name = "map_ov_vf_copy";
        string const out = String::compose("build/test/%1_out", name);
@@ -230,7 +230,7 @@ test_map_ov_vf_copy()
 
        auto const vf_dir = vf_film->dir(vf_film->dcp_name());
 
-       vector<string> const args = {
+       vector<string> args = {
                "map_cli",
                "-o", out,
                "-d", ov_dir.string(),
@@ -238,6 +238,8 @@ test_map_ov_vf_copy()
                find_cpl(vf_dir).string()
        };
 
+       args.insert(std::end(args), std::begin(extra_args), std::end(extra_args));
+
        boost::filesystem::remove_all(out);
 
        vector<string> output_messages;
@@ -256,8 +258,56 @@ test_map_ov_vf_copy()
 BOOST_AUTO_TEST_CASE(map_ov_vf_copy)
 {
        test_map_ov_vf_copy();
+       test_map_ov_vf_copy({"-l"});
 }
 
+
+/** Map an OV and VF into a single DCP, where the VF refers to the OV's assets multiple times */
+BOOST_AUTO_TEST_CASE(map_ov_vf_copy_multiple_reference)
+{
+       string const name = "map_ov_vf_copy_multiple_reference";
+       string const out = String::compose("build/test/%1_out", name);
+
+       auto ov_content = content_factory("test/data/flat_red.png");
+       auto ov_film = new_test_film2(name + "_ov", ov_content);
+       make_and_verify_dcp(ov_film);
+
+       auto const ov_dir = ov_film->dir(ov_film->dcp_name());
+
+       auto vf_ov1 = make_shared<DCPContent>(ov_dir);
+       auto vf_ov2 = make_shared<DCPContent>(ov_dir);
+       auto vf_sound = content_factory("test/data/sine_440.wav").front();
+       auto vf_film = new_test_film2(name + "_vf", { vf_ov1, vf_ov2, vf_sound });
+       vf_film->set_reel_type(ReelType::BY_VIDEO_CONTENT);
+       vf_ov2->set_position(vf_film, vf_ov1->end(vf_film));
+       vf_ov1->set_reference_video(true);
+       vf_ov2->set_reference_video(true);
+       make_and_verify_dcp(vf_film, {dcp::VerificationNote::Code::EXTERNAL_ASSET});
+
+       auto const vf_dir = vf_film->dir(vf_film->dcp_name());
+
+       vector<string> const args = {
+               "map_cli",
+               "-o", out,
+               "-d", ov_dir.string(),
+               "-d", vf_dir.string(),
+               "-l",
+               find_cpl(vf_dir).string()
+       };
+
+       boost::filesystem::remove_all(out);
+
+       vector<string> output_messages;
+       auto error = run(args, output_messages);
+       BOOST_CHECK(!error);
+
+       verify_dcp(out, {});
+
+       check_file(find_file(out, "cpl_"), find_file(vf_dir, "cpl_"));
+       check_file(find_file(out, "j2c_"), find_file(ov_dir, "j2c_"));
+}
+
+
 /** Map a single DCP into a new DCP using the rename option */
 BOOST_AUTO_TEST_CASE(map_simple_dcp_copy_with_rename)
 {
@@ -364,6 +414,8 @@ BOOST_AUTO_TEST_CASE(map_two_smpte_cpls_each_with_subs)
 
 BOOST_AUTO_TEST_CASE(map_with_given_config)
 {
+       ConfigRestorer cr;
+
        string const name = "map_with_given_config";
        string const out = String::compose("build/test/%1_out", name);