Missing static build libraries.
[libsub.git] / test / test.cc
1 /*
2     Copyright (C) 2014-2019 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 "iso6937_tables.h"
23 #include "compose.hpp"
24 #include <boost/test/unit_test.hpp>
25 #include <boost/filesystem.hpp>
26 #include <fstream>
27 #include <string>
28 #include <iostream>
29
30 using std::string;
31 using std::cerr;
32 using std::cout;
33 using std::min;
34 using std::max;
35 using std::hex;
36 using std::ifstream;
37 using std::getline;
38
39 boost::filesystem::path private_test;
40
41 struct TestConfig
42 {
43         TestConfig()
44         {
45                 if (boost::unit_test::framework::master_test_suite().argc >= 2) {
46                         private_test = boost::unit_test::framework::master_test_suite().argv[1];
47                 } else {
48                         BOOST_TEST_MESSAGE ("Private data libsub-test-private not found; some tests will not run");
49                 }
50
51                 sub::make_iso6937_tables ();
52         }
53 };
54
55 BOOST_GLOBAL_FIXTURE (TestConfig);
56
57 void
58 check_text (boost::filesystem::path a, boost::filesystem::path b)
59 {
60         if (!boost::filesystem::exists (a)) {
61                 cerr << "File not found: " << a << "\n";
62         }
63
64         if (!boost::filesystem::exists (b)) {
65                 cerr << "File not found: " << b << "\n";
66         }
67
68         BOOST_CHECK (boost::filesystem::exists (a));
69         BOOST_CHECK (boost::filesystem::exists (b));
70
71         ifstream p (a.c_str ());
72         ifstream q (b.c_str ());
73
74         string x;
75         string y;
76         while (p.good() && q.good()) {
77                 getline (p, x);
78                 getline (q, y);
79                 BOOST_CHECK_EQUAL (x, y);
80         }
81
82         BOOST_CHECK (p.good() == false);
83         BOOST_CHECK (q.good() == false);
84 }
85
86 void
87 check_file (boost::filesystem::path ref, boost::filesystem::path check)
88 {
89         uintmax_t N = boost::filesystem::file_size (ref);
90         BOOST_CHECK_EQUAL (N, boost::filesystem::file_size (check));
91         FILE* ref_file = fopen (ref.string().c_str(), "rb");
92         BOOST_CHECK (ref_file);
93         FILE* check_file = fopen (check.string().c_str(), "rb");
94         BOOST_CHECK (check_file);
95
96         int const buffer_size = 65536;
97         uint8_t* ref_buffer = new uint8_t[buffer_size];
98         uint8_t* check_buffer = new uint8_t[buffer_size];
99
100         uintmax_t offset = 0;
101         while (offset < N) {
102                 uintmax_t this_time = min (uintmax_t (buffer_size), N - offset);
103                 size_t r = fread (ref_buffer, 1, this_time, ref_file);
104                 BOOST_CHECK_EQUAL (r, this_time);
105                 r = fread (check_buffer, 1, this_time, check_file);
106                 BOOST_CHECK_EQUAL (r, this_time);
107
108                 for (uintmax_t i = 0; i < this_time; ++i) {
109                         string const s = String::compose (
110                                 "Files differ at offset %1; reference is %2, check is %3", (offset + i), ((int) ref_buffer[i]), ((int) check_buffer[i])
111                                 );
112                         BOOST_CHECK_MESSAGE (ref_buffer[i] == check_buffer[i], s);
113                 }
114
115                 offset += this_time;
116         }
117
118         delete[] ref_buffer;
119         delete[] check_buffer;
120
121         fclose (ref_file);
122         fclose (check_file);
123 }