Change video content scaling so that it either:
[dcpomatic.git] / test / config_test.cc
1 /*
2     Copyright (C) 2018 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 "lib/config.h"
22 #include "test.h"
23 #include <boost/test/unit_test.hpp>
24 #include <fstream>
25
26 using std::ofstream;
27
28 static void
29 rewrite_bad_config ()
30 {
31         boost::system::error_code ec;
32         boost::filesystem::remove ("build/test/config.xml", ec);
33
34         Config::override_path = "build/test";
35         ofstream f ("build/test/config.xml");
36         f << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
37           << "<Config>\n"
38           << "<Foo></Foo>\n"
39           << "</Config>\n";
40         f.close ();
41 }
42
43
44 BOOST_AUTO_TEST_CASE (config_backup_test)
45 {
46         Config::drop();
47
48         boost::system::error_code ec;
49         boost::filesystem::remove ("build/test/config.xml.1", ec);
50         boost::filesystem::remove ("build/test/config.xml.2", ec);
51         boost::filesystem::remove ("build/test/config.xml.3", ec);
52         boost::filesystem::remove ("build/test/config.xml.4", ec);
53         boost::filesystem::remove ("build/test/config.xml.5", ec);
54         boost::filesystem::remove ("build/test/config.xml.5", ec);
55
56         rewrite_bad_config();
57
58         Config::instance();
59
60         BOOST_CHECK ( boost::filesystem::exists ("build/test/config.xml.1"));
61         BOOST_CHECK (!boost::filesystem::exists ("build/test/config.xml.2"));
62         BOOST_CHECK (!boost::filesystem::exists ("build/test/config.xml.3"));
63         BOOST_CHECK (!boost::filesystem::exists ("build/test/config.xml.4"));
64
65         Config::drop();
66         rewrite_bad_config();
67         Config::instance();
68
69         BOOST_CHECK ( boost::filesystem::exists ("build/test/config.xml.1"));
70         BOOST_CHECK ( boost::filesystem::exists ("build/test/config.xml.2"));
71         BOOST_CHECK (!boost::filesystem::exists ("build/test/config.xml.3"));
72         BOOST_CHECK (!boost::filesystem::exists ("build/test/config.xml.4"));
73
74         Config::drop();
75         rewrite_bad_config();
76         Config::instance();
77
78         BOOST_CHECK ( boost::filesystem::exists ("build/test/config.xml.1"));
79         BOOST_CHECK ( boost::filesystem::exists ("build/test/config.xml.2"));
80         BOOST_CHECK ( boost::filesystem::exists ("build/test/config.xml.3"));
81         BOOST_CHECK (!boost::filesystem::exists ("build/test/config.xml.4"));
82
83         Config::drop();
84         rewrite_bad_config();
85         Config::instance();
86
87         BOOST_CHECK (boost::filesystem::exists ("build/test/config.xml.1"));
88         BOOST_CHECK (boost::filesystem::exists ("build/test/config.xml.2"));
89         BOOST_CHECK (boost::filesystem::exists ("build/test/config.xml.3"));
90         BOOST_CHECK (boost::filesystem::exists ("build/test/config.xml.4"));
91
92         /* This test has called Config::set_defaults(), so take us back
93            to the config that we want for our tests.
94         */
95         setup_test_config ();
96 }