Fix and test release notes.
[dcpomatic.git] / test / release_notes_test.cc
1 /*
2     Copyright (C) 2022 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
22 #include "lib/config.h"
23 #include "lib/release_notes.h"
24 #include <boost/test/unit_test.hpp>
25
26
27 using std::string;
28
29
30 // If we have no previous version we're on something before 2.16.19 so we want the release notes
31 BOOST_AUTO_TEST_CASE(release_notes_test1)
32 {
33         for (auto version: { "2.16.19", "2.16.20", "2.18.0", "2.18.1devel6" }) {
34                 Config::instance()->unset_last_release_notes_version();
35                 auto notes = find_release_notes(string(version));
36                 BOOST_CHECK(notes.get_value_or("").find("In this version there are changes to the way that subtitles are positioned.") != string::npos);
37         }
38 }
39
40
41 // Once we're running 2.16.19 we have no more release notes (for now, at least)
42 BOOST_AUTO_TEST_CASE(release_notes_test2)
43 {
44         for (auto version: { "2.16.19", "2.16.20", "2.18.0", "2.18.1devel6" }) {
45                 Config::instance()->set_last_release_notes_version("2.16.19");
46                 auto notes = find_release_notes(string(version));
47                 BOOST_CHECK(!static_cast<bool>(notes));
48         }
49 }