summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-02-10 21:06:43 +0100
committerCarl Hetherington <cth@carlh.net>2022-02-10 21:12:06 +0100
commit7f5c053a13654224cea65beea0478267b97b8e1f (patch)
tree3ec5516f837c033b1bac1552eed9e4f1864398d1 /test
parent869e70cf34ac7f8e6b567bda17db3a72aa61142b (diff)
Don't give up on backups if config.xml isn't there (#2185).
Even if it isn't, we still want to try to back up other stuff. Previously if copying config.xml threw an exception we'd just give up.
Diffstat (limited to 'test')
-rw-r--r--test/config_test.cc26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/config_test.cc b/test/config_test.cc
index 0e6a05ac0..6a65deb2e 100644
--- a/test/config_test.cc
+++ b/test/config_test.cc
@@ -19,13 +19,16 @@
*/
+#include "lib/cinema.h"
#include "lib/config.h"
#include "test.h"
#include <boost/test/unit_test.hpp>
#include <fstream>
+using std::list;
using std::ofstream;
+using std::make_shared;
using std::string;
using boost::optional;
@@ -190,3 +193,26 @@ BOOST_AUTO_TEST_CASE (config_upgrade_test)
BOOST_REQUIRE (!boost::filesystem::exists(dir / "2.16" / "cinemas.xml"));
}
+
+BOOST_AUTO_TEST_CASE (config_keep_cinemas_if_making_new_config)
+{
+ boost::filesystem::path dir = "build/test/config_keep_cinemas_if_making_new_config";
+ Config::override_path = dir;
+ Config::drop ();
+ boost::filesystem::remove_all (dir);
+ boost::filesystem::create_directories (dir);
+
+ Config::instance()->write();
+
+ Config::instance()->add_cinema(make_shared<Cinema>("My Great Cinema", list<string>(), "", 0, 0));
+ Config::instance()->write();
+
+ boost::filesystem::copy_file (dir / "cinemas.xml", dir / "backup_for_test.xml");
+
+ Config::drop ();
+ boost::filesystem::remove (dir / "2.16" / "config.xml");
+ Config::instance();
+
+ check_text_file (dir / "backup_for_test.xml", dir / "cinemas.xml.1");
+}
+