feeba36351895d236d3ef8e3feb9d19bd7082a89
[libsub.git] / test / test.cc
1 /*
2     Copyright (C) 2014 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 #define BOOST_TEST_DYN_LINK
21 #define BOOST_TEST_MODULE libsub_test
22 #include <boost/test/unit_test.hpp>
23 #include <fstream>
24 #include <string>
25
26 using std::string;
27 using std::cerr;
28 using std::ifstream;
29 using std::getline;
30
31 string private_test;
32
33 struct TestConfig
34 {
35         TestConfig()
36         {
37                 if (boost::unit_test::framework::master_test_suite().argc >= 2) {
38                         private_test = boost::unit_test::framework::master_test_suite().argv[1];
39                 } else {
40                         BOOST_TEST_MESSAGE ("Private data libsub-test-private not found; some tests will not run");
41                 }
42         }
43 };
44
45 BOOST_GLOBAL_FIXTURE (TestConfig);
46
47 void
48 check_text (string a, string b)
49 {
50         if (access (a.c_str(), F_OK) == -1) {
51                 cerr << "File not found: " << a << "\n";
52         }
53
54         if (access (b.c_str(), F_OK) == -1) {
55                 cerr << "File not found: " << b << "\n";
56         }
57         
58         BOOST_CHECK_EQUAL (access (a.c_str(), F_OK), 0);
59         
60         ifstream p (a.c_str ());
61         ifstream q (b.c_str ());
62
63         string x;
64         string y;
65         while (p.good() && q.good()) {
66                 getline (p, x);
67                 getline (q, y);
68                 BOOST_CHECK_EQUAL (x, y);
69         }
70
71         BOOST_CHECK (p.good() == false);
72         BOOST_CHECK (q.good() == false);
73 }