Change libdcp::Time to allow sub-second units to be anything, so that
[libdcp.git] / test / dcp_time_test.cc
1 /*
2     Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <boost/test/unit_test.hpp>
21 #include "dcp_time.h"
22
23 /** Check that libdcp::Time works */
24 BOOST_AUTO_TEST_CASE (dcp_time)
25 {
26         /* tcr of 250 makes the editable event length the same as an Interop `tick' */
27         libdcp::Time t (977143, 24, 250);
28
29         BOOST_CHECK_EQUAL (t.e, 73);
30         BOOST_CHECK_EQUAL (t.s, 34);
31         BOOST_CHECK_EQUAL (t.m, 18);
32         BOOST_CHECK_EQUAL (t.h, 11);
33         BOOST_CHECK_EQUAL (t.to_string(), "11:18:34:73");
34
35         /* Use a tcr of 24 so that the editable event is a frame */
36         libdcp::Time a (3, 2, 3, 4, 24);
37         libdcp::Time b (2, 3, 4, 5, 24);
38
39         libdcp::Time r = a - b;
40         BOOST_CHECK_EQUAL (r.h, 0);
41         BOOST_CHECK_EQUAL (r.m, 58);
42         BOOST_CHECK_EQUAL (r.s, 58);
43         BOOST_CHECK_EQUAL (r.e, 23);
44         BOOST_CHECK_EQUAL (r.to_string(), "0:58:58:23");
45
46         /* Different tcr (25) */
47         a = libdcp::Time (1, 58, 56, 2, 25);
48         b = libdcp::Time (1, 7, 12, 1, 25);
49         r = a + b;
50         BOOST_CHECK_EQUAL (r.h, 3);
51         BOOST_CHECK_EQUAL (r.m, 6);
52         BOOST_CHECK_EQUAL (r.s, 8);
53         BOOST_CHECK_EQUAL (r.e, 3);
54         BOOST_CHECK_EQUAL (r.to_string(), "3:6:8:3");
55
56         /* Another arbitrary tcr (30) */
57         a = libdcp::Time (24, 12, 6, 3, 30);
58         b = libdcp::Time (16, 8, 4, 2, 30);
59         BOOST_CHECK_CLOSE (a / b, 1.5, 1e-5);
60
61         a = libdcp::Time (3600 * 24, 24, 250);
62         BOOST_CHECK_EQUAL (a.h, 1);
63         BOOST_CHECK_EQUAL (a.m, 0);
64         BOOST_CHECK_EQUAL (a.s, 0);
65         BOOST_CHECK_EQUAL (a.e, 0);
66
67         a = libdcp::Time (60 * 24, 24, 250);
68         BOOST_CHECK_EQUAL (a.h, 0);
69         BOOST_CHECK_EQUAL (a.m, 1);
70         BOOST_CHECK_EQUAL (a.s, 0);
71         BOOST_CHECK_EQUAL (a.e, 0);
72
73         /* Check rounding; 3424 is 142.666666666... seconds or 0.166666666... ticks */
74         a = libdcp::Time (3424, 24, 250);
75         BOOST_CHECK_EQUAL (a.h, 0);
76         BOOST_CHECK_EQUAL (a.m, 2);
77         BOOST_CHECK_EQUAL (a.s, 22);
78         BOOST_CHECK_EQUAL (a.e, 167);
79
80         a = libdcp::Time (3425, 24, 250);
81         BOOST_CHECK_EQUAL (a.h, 0);
82         BOOST_CHECK_EQUAL (a.m, 2);
83         BOOST_CHECK_EQUAL (a.s, 22);
84         BOOST_CHECK_EQUAL (a.e, 177);
85
86         /* Check addition of times with different tcrs */
87         a = libdcp::Time (0, 0, 0, 3, 24);
88         b = libdcp::Time (0, 0, 0, 4, 48);
89         r = a + b;
90         BOOST_CHECK_EQUAL (r, libdcp::Time (0, 0, 0, 240, 1152));
91 }