No-op; fix GPL address and use the explicit-program-name version.
[dcpomatic.git] / test / dcpomatic_time_test.cc
1 /*
2     Copyright (C) 2015 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 #include <boost/test/unit_test.hpp>
22 #include "lib/dcpomatic_time.h"
23
24 BOOST_AUTO_TEST_CASE (dcpomatic_time_test)
25 {
26         FrameRateChange frc (24, 48);
27         int j = 0;
28         int k = 0;
29         for (int64_t i = 0; i < 62000; i += 2000) {
30                 DCPTime d (i);
31                 ContentTime c (d, frc);
32                 BOOST_CHECK_EQUAL (c.frames_floor (24.0), j);
33                 ++k;
34                 if (k == 2) {
35                         ++j;
36                         k = 0;
37                 }
38         }
39 }
40
41 BOOST_AUTO_TEST_CASE (dcpomatic_time_period_overlaps_test)
42 {
43         /* Taking times as the start of a sampling interval
44
45            |--|--|--|--|--|--|--|--|--|--|
46            0  1  2  3  4  5  6  7  8  9  |
47            |--|--|--|--|--|--|--|--|--|--|
48
49            <------a----><----b----->
50
51            and saying `from' is the start of the first sampling
52            interval and `to' is the start of the interval after
53            the period... a and b do not overlap.
54         */
55
56         TimePeriod<DCPTime> a (DCPTime (0), DCPTime (4));
57         TimePeriod<DCPTime> b (DCPTime (4), DCPTime (8));
58         BOOST_CHECK (!a.overlaps (b));
59
60         /* Some more obvious non-overlaps */
61         a = TimePeriod<DCPTime> (DCPTime (0), DCPTime (4));
62         b = TimePeriod<DCPTime> (DCPTime (5), DCPTime (8));
63         BOOST_CHECK (!a.overlaps (b));
64
65         /* Some overlaps */
66         a = TimePeriod<DCPTime> (DCPTime (0), DCPTime (4));
67         b = TimePeriod<DCPTime> (DCPTime (3), DCPTime (8));
68         BOOST_CHECK (a.overlaps (b));
69         a = TimePeriod<DCPTime> (DCPTime (1), DCPTime (9));
70         b = TimePeriod<DCPTime> (DCPTime (0), DCPTime (10));
71         BOOST_CHECK (a.overlaps (b));
72 }