summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-05-25 13:29:13 +0100
committerCarl Hetherington <cth@carlh.net>2016-05-25 13:29:13 +0100
commit4ee6786d1c3db04dcc77e511121e5d62d0d595b5 (patch)
tree95ac9aa9af77caccffac5b7fcf63cb1a672ca77a /test
parentd22243e8cd54c1c5de6c670445395907007428ea (diff)
Add VideoMXFContent (part of #803).
Diffstat (limited to 'test')
-rw-r--r--test/video_mxf_content_test.cc60
-rw-r--r--test/wscript1
2 files changed, 61 insertions, 0 deletions
diff --git a/test/video_mxf_content_test.cc b/test/video_mxf_content_test.cc
new file mode 100644
index 000000000..a42fe1a68
--- /dev/null
+++ b/test/video_mxf_content_test.cc
@@ -0,0 +1,60 @@
+/*
+ Copyright (C) 2016 Carl Hetherington <cth@carlh.net>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
+#include "lib/film.h"
+#include "lib/video_mxf_content.h"
+#include "lib/content_factory.h"
+#include "lib/dcp_content_type.h"
+#include "lib/ratio.h"
+#include "test.h"
+#include <dcp/mono_picture_asset.h>
+#include <boost/test/unit_test.hpp>
+
+using boost::shared_ptr;
+using boost::dynamic_pointer_cast;
+
+static boost::filesystem::path ref_mxf = "test/data/scaling_test_185_185/j2c_a41afbff-e1ad-41c4-9a84-de315b95dd0f.mxf";
+
+static void note (dcp::NoteType, std::string)
+{
+
+}
+
+/** Basic test of using video MXF content */
+BOOST_AUTO_TEST_CASE (video_mxf_content_test)
+{
+ shared_ptr<Film> film = new_test_film ("video_mxf_content_test");
+ film->set_dcp_content_type (DCPContentType::from_isdcf_name ("FTR"));
+ film->set_container (Ratio::from_id ("185"));
+ film->set_name ("video_mxf_content_test");
+
+ shared_ptr<Content> content = content_factory (film, ref_mxf);
+ shared_ptr<VideoMXFContent> check = dynamic_pointer_cast<VideoMXFContent> (content);
+ BOOST_REQUIRE (check);
+ film->examine_and_add_content (content);
+ wait_for_jobs ();
+ film->make_dcp ();
+ wait_for_jobs ();
+
+ shared_ptr<dcp::MonoPictureAsset> ref (new dcp::MonoPictureAsset (ref_mxf));
+ boost::filesystem::directory_iterator i ("build/test/video_mxf_content_test/video");
+ shared_ptr<dcp::MonoPictureAsset> comp (new dcp::MonoPictureAsset (*i));
+ dcp::EqualityOptions op;
+ BOOST_CHECK (ref->equals (comp, op, note));
+}
diff --git a/test/wscript b/test/wscript
index 1ddc25d70..1dc498bab 100644
--- a/test/wscript
+++ b/test/wscript
@@ -93,6 +93,7 @@ def build(bld):
vf_test.cc
video_content_scale_test.cc
video_decoder_fill_test.cc
+ video_mxf_content_test.cc
xml_subtitle_test.cc
"""