Merge master.
[libdcp.git] / test / util_test.cc
1 /*
2     Copyright (C) 2013 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 <fstream>
21 #include <boost/test/unit_test.hpp>
22 #include "util.h"
23
24 using std::ifstream;
25 using std::string;
26
27 BOOST_AUTO_TEST_CASE (base64_decode_test)
28 {
29         int const N = 256;
30         
31         ifstream f ("test/data/base64_test");
32         BOOST_CHECK (f.good ());
33         string s;
34         while (f.good ()) {
35                 string l;
36                 getline (f, l);
37                 s += l;
38         }
39
40         ifstream g ("test/ref/base64_test_decoded", std::ios::binary);
41         BOOST_CHECK (g.good ());
42         unsigned char ref_decoded[N];
43         for (int i = 0; i < N; ++i) {
44                 char c;
45                 g.get (c);
46                 ref_decoded[i] = static_cast<unsigned char> (c);
47         }
48
49         unsigned char decoded[N];
50         int const r = dcp::base64_decode (s, decoded, N);
51         BOOST_CHECK_EQUAL (r, N);
52
53         for (int i = 0; i < N; ++i) {
54                 BOOST_CHECK_EQUAL (decoded[i], ref_decoded[i]);
55         }
56 }
57
58 BOOST_AUTO_TEST_CASE (content_kind_test)
59 {
60         BOOST_CHECK_EQUAL (dcp::content_kind_from_string ("feature"), dcp::FEATURE);
61         BOOST_CHECK_EQUAL (dcp::content_kind_from_string ("Feature"), dcp::FEATURE);
62         BOOST_CHECK_EQUAL (dcp::content_kind_from_string ("FeaturE"), dcp::FEATURE);
63         BOOST_CHECK_EQUAL (dcp::content_kind_from_string ("Short"), dcp::SHORT);
64         BOOST_CHECK_EQUAL (dcp::content_kind_from_string ("trailer"), dcp::TRAILER);
65         BOOST_CHECK_EQUAL (dcp::content_kind_from_string ("test"), dcp::TEST);
66         BOOST_CHECK_EQUAL (dcp::content_kind_from_string ("transitional"), dcp::TRANSITIONAL);
67         BOOST_CHECK_EQUAL (dcp::content_kind_from_string ("rating"), dcp::RATING);
68         BOOST_CHECK_EQUAL (dcp::content_kind_from_string ("teaser"), dcp::TEASER);
69         BOOST_CHECK_EQUAL (dcp::content_kind_from_string ("policy"), dcp::POLICY);
70         BOOST_CHECK_EQUAL (dcp::content_kind_from_string ("psa"), dcp::PUBLIC_SERVICE_ANNOUNCEMENT);
71         BOOST_CHECK_EQUAL (dcp::content_kind_from_string ("advertisement"), dcp::ADVERTISEMENT);
72 }
73
74 BOOST_AUTO_TEST_CASE (relative_to_root_test)
75 {
76         {
77                 boost::filesystem::path root = "a";
78                 root /= "b";
79                 
80                 boost::filesystem::path file = "a";
81                 file /= "b";
82                 file /= "c";
83                 
84                 boost::optional<boost::filesystem::path> rel = dcp::relative_to_root (root, file);
85                 BOOST_CHECK (rel);
86                 BOOST_CHECK_EQUAL (rel.get(), boost::filesystem::path ("c"));
87         }
88
89         {
90                 boost::filesystem::path root = "a";
91                 root /= "b";
92                 root /= "c";
93                 
94                 boost::filesystem::path file = "a";
95                 file /= "b";
96                 
97                 boost::optional<boost::filesystem::path> rel = dcp::relative_to_root (root, file);
98                 BOOST_CHECK (!rel);
99         }
100
101         {
102                 boost::filesystem::path root = "a";
103                 
104                 boost::filesystem::path file = "a";
105                 file /= "b";
106                 file /= "c";
107                 
108                 boost::optional<boost::filesystem::path> rel = dcp::relative_to_root (root, file);
109                 BOOST_CHECK (rel);
110
111                 boost::filesystem::path check = "b";
112                 check /= "c";
113                 BOOST_CHECK_EQUAL (rel.get(), check);
114         }
115 }