diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-01-05 00:50:20 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-01-05 00:50:20 +0000 |
| commit | ff06669bc8c14abe40cd9590afc8391f19608424 (patch) | |
| tree | 42d7e185edee041b9ab9e496fbfa4e8ee55f677b /test | |
| parent | 278bfa265eed9b2fafec8b2bb5e92541a1bb23c1 (diff) | |
Fix strange behaviour with single-frame fades (#1440).
Diffstat (limited to 'test')
| m--------- | test/data | 0 | ||||
| -rw-r--r-- | test/image_content_fade_test.cc | 44 | ||||
| -rw-r--r-- | test/wscript | 1 |
3 files changed, 45 insertions, 0 deletions
diff --git a/test/data b/test/data -Subproject 8e5bb30bd87cc81d55da1653301c9b338a54622 +Subproject 1f6543913f7ef1497bd0b3f53e796216a05fc81 diff --git a/test/image_content_fade_test.cc b/test/image_content_fade_test.cc new file mode 100644 index 000000000..a3f093204 --- /dev/null +++ b/test/image_content_fade_test.cc @@ -0,0 +1,44 @@ +/* + Copyright (C) 2019 Carl Hetherington <cth@carlh.net> + + This file is part of DCP-o-matic. + + DCP-o-matic 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. + + DCP-o-matic 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 DCP-o-matic. If not, see <http://www.gnu.org/licenses/>. + +*/ + +#include "test.h" +#include "lib/film.h" +#include "lib/content_factory.h" +#include "lib/content.h" +#include "lib/video_content.h" +#include <boost/test/unit_test.hpp> + +using std::string; +using std::list; +using boost::shared_ptr; + +BOOST_AUTO_TEST_CASE (image_content_fade_test) +{ + shared_ptr<Film> film = new_test_film2 ("image_content_fade_test"); + shared_ptr<Content> content = content_factory("test/data/flat_red.png").front(); + film->examine_and_add_content (content); + wait_for_jobs (); + + content->video->set_fade_in (1); + film->make_dcp (); + wait_for_jobs (); + + check_dcp ("test/data/image_content_fade_test", film->dir(film->dcp_name())); +} diff --git a/test/wscript b/test/wscript index 23f31dadc..396c713d1 100644 --- a/test/wscript +++ b/test/wscript @@ -76,6 +76,7 @@ def build(bld): file_naming_test.cc film_metadata_test.cc frame_rate_test.cc + image_content_fade_test.cc image_filename_sorter_test.cc image_test.cc import_dcp_test.cc |
