diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-07-18 17:17:37 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-07-18 17:17:37 +0100 |
| commit | 0b1f3a5dc3069726e61670b1aa35e62ba96ed198 (patch) | |
| tree | c10de9bc0b1b12b81ee92945d33f98edd8bf7766 /test/4k_test.cc | |
| parent | 59404039618db5d70a2f8fc0cb8c49ae4f8ce527 (diff) | |
Token 4K test.
Diffstat (limited to 'test/4k_test.cc')
| -rw-r--r-- | test/4k_test.cc | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/test/4k_test.cc b/test/4k_test.cc new file mode 100644 index 000000000..ee9ac0d98 --- /dev/null +++ b/test/4k_test.cc @@ -0,0 +1,48 @@ +/* + Copyright (C) 2013 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 <boost/test/unit_test.hpp> +#include "lib/film.h" +#include "lib/ffmpeg_content.h" +#include "lib/dcp_content_type.h" +#include "lib/ratio.h" +#include "test.h" + +using boost::shared_ptr; + +BOOST_AUTO_TEST_CASE (fourk_test) +{ + shared_ptr<Film> film = new_test_film ("4k_test"); + film->set_name ("4k_test"); + shared_ptr<FFmpegContent> c (new FFmpegContent (film, "test/data/test.mp4")); + c->set_ratio (Ratio::from_id ("185")); + film->set_resolution (RESOLUTION_4K); + film->set_dcp_content_type (DCPContentType::from_dci_name ("FTR")); + film->set_container (Ratio::from_id ("185")); + film->examine_and_add_content (c); + wait_for_jobs (); + + film->make_dcp (); + wait_for_jobs (); + + boost::filesystem::path p (test_film_dir ("4k_test")); + p /= film->dcp_name (); + + check_dcp ("test/data/4k_test", p.string ()); +} |
