1f894d329537b0998600a8cb3b8211a8aa2a50c7
[dcpomatic.git] / test / util_test.cc
1 /*
2     Copyright (C) 2012-2016 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 /** @file  test/util_test.cc
22  *  @brief Test various utility methods.
23  */
24
25 #include <boost/test/unit_test.hpp>
26 #include "lib/util.h"
27 #include "lib/raw_convert.h"
28 #include "lib/exceptions.h"
29
30 using std::string;
31 using std::vector;
32 using boost::shared_ptr;
33
34 BOOST_AUTO_TEST_CASE (digest_head_tail_test)
35 {
36         vector<boost::filesystem::path> p;
37         p.push_back ("test/data/digest.test");
38         BOOST_CHECK_EQUAL (digest_head_tail (p, 1024), "57497ef84a0487f2bb0939a1f5703912");
39
40         p.push_back ("test/data/digest.test2");
41         BOOST_CHECK_EQUAL (digest_head_tail (p, 1024), "5a3a89857b931755ae728a518224a05c");
42
43         p.clear ();
44         p.push_back ("test/data/digest.test3");
45         p.push_back ("test/data/digest.test");
46         p.push_back ("test/data/digest.test2");
47         p.push_back ("test/data/digest.test4");
48         BOOST_CHECK_EQUAL (digest_head_tail (p, 1024), "52ccf111e4e72b58bb7b2aaa6bd45ea5");
49
50         p.clear ();
51         p.push_back ("foobar");
52         BOOST_CHECK_THROW (digest_head_tail (p, 1024), OpenFileError);
53 }
54
55 /* Straightforward test of DCPTime::round_up */
56 BOOST_AUTO_TEST_CASE (dcptime_round_up_test)
57 {
58         BOOST_CHECK_EQUAL (DCPTime(0).round_up(DCPTime::HZ / 2).get(), 0);
59         BOOST_CHECK_EQUAL (DCPTime(1).round_up(DCPTime::HZ / 2).get(), 2);
60         BOOST_CHECK_EQUAL (DCPTime(2).round_up(DCPTime::HZ / 2).get(), 2);
61         BOOST_CHECK_EQUAL (DCPTime(3).round_up(DCPTime::HZ / 2).get(), 4);
62
63         BOOST_CHECK_EQUAL (DCPTime(0).round_up(DCPTime::HZ / 42).get(), 0);
64         BOOST_CHECK_EQUAL (DCPTime(1).round_up(DCPTime::HZ / 42).get(), 42);
65         BOOST_CHECK_EQUAL (DCPTime(42).round_up(DCPTime::HZ / 42).get(), 42);
66         BOOST_CHECK_EQUAL (DCPTime(43).round_up(DCPTime::HZ / 42).get(), 84);
67
68         /* Check that rounding up to non-integer frame rates works */
69         BOOST_CHECK_EQUAL (DCPTime(45312).round_up(29.976).get(), 48045);
70 }
71
72 BOOST_AUTO_TEST_CASE (timecode_test)
73 {
74         DCPTime t = DCPTime::from_seconds (2 * 60 * 60 + 4 * 60 + 31) + DCPTime::from_frames (19, 24);
75         BOOST_CHECK_EQUAL (t.timecode (24), "02:04:31:19");
76 }
77
78 BOOST_AUTO_TEST_CASE (seconds_to_approximate_hms_test)
79 {
80         BOOST_CHECK_EQUAL (seconds_to_approximate_hms (1), "1s");
81         BOOST_CHECK_EQUAL (seconds_to_approximate_hms (2), "2s");
82         BOOST_CHECK_EQUAL (seconds_to_approximate_hms (60), "1m");
83         BOOST_CHECK_EQUAL (seconds_to_approximate_hms (1.5 * 60), "1m 30s");
84         BOOST_CHECK_EQUAL (seconds_to_approximate_hms (2 * 60), "2m");
85         BOOST_CHECK_EQUAL (seconds_to_approximate_hms (17 * 60 + 20), "17m");
86         BOOST_CHECK_EQUAL (seconds_to_approximate_hms (1 * 3600), "1h");
87         BOOST_CHECK_EQUAL (seconds_to_approximate_hms (3600 + 40 * 60), "1h 40m");
88         BOOST_CHECK_EQUAL (seconds_to_approximate_hms (13 * 3600 + 40 * 60), "14h");
89 }
90
91 BOOST_AUTO_TEST_CASE (raw_convert_test)
92 {
93         BOOST_CHECK_EQUAL (raw_convert<string> ("foo"), "foo");
94         BOOST_CHECK_EQUAL (raw_convert<string> ("foo bar"), "foo bar");
95 }