1 | // $Id: Suite.cc 1162 2010-08-13 17:30:03Z peter $ |
---|
2 | |
---|
3 | /* |
---|
4 | Copyright (C) 2008 Jari Häkkinen, Peter Johansson |
---|
5 | Copyright (C) 2009, 2010 Peter Johansson |
---|
6 | |
---|
7 | This file is part of the yat library, http://dev.thep.lu.se/yat |
---|
8 | |
---|
9 | The yat library is free software; you can redistribute it and/or |
---|
10 | modify it under the terms of the GNU General Public License as |
---|
11 | published by the Free Software Foundation; either version 3 of the |
---|
12 | License, or (at your option) any later version. |
---|
13 | |
---|
14 | The yat library is distributed in the hope that it will be useful, |
---|
15 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
17 | General Public License for more details. |
---|
18 | |
---|
19 | You should have received a copy of the GNU General Public License |
---|
20 | along with svndigest. If not, see <http://www.gnu.org/licenses/>. |
---|
21 | */ |
---|
22 | |
---|
23 | #include <config.h> |
---|
24 | |
---|
25 | #include "Suite.h" |
---|
26 | #include "environment.h" |
---|
27 | |
---|
28 | #include "lib/Stats.h" |
---|
29 | #include "lib/StatsCollection.h" |
---|
30 | #include "lib/utility.h" |
---|
31 | |
---|
32 | #include <algorithm> |
---|
33 | #include <cassert> |
---|
34 | #include <fstream> |
---|
35 | #include <iostream> |
---|
36 | #include <iterator> |
---|
37 | #include <string> |
---|
38 | |
---|
39 | namespace theplu { |
---|
40 | namespace svndigest { |
---|
41 | namespace test { |
---|
42 | |
---|
43 | Suite::Suite(int argc, char* argv[], bool need_test_repo) |
---|
44 | : ok_(true) |
---|
45 | { |
---|
46 | chdir(abs_builddir()); |
---|
47 | std::string test_dir = concatenate_path("testSubDir", file_name(argv[0])); |
---|
48 | mkdir_p(test_dir); |
---|
49 | chdir(test_dir); |
---|
50 | out() << "running `" << argv[0] << "' in `" << test_dir << "'\n"; |
---|
51 | if (need_test_repo) { |
---|
52 | bool have_test_repo=false; |
---|
53 | #ifdef HAVE_TEST_REPO |
---|
54 | have_test_repo=true; |
---|
55 | #endif |
---|
56 | if (!have_test_repo) { |
---|
57 | out() << "Skipping test because test repository is not available\n"; |
---|
58 | ::exit (77); |
---|
59 | } |
---|
60 | update_test_wc(); |
---|
61 | } |
---|
62 | |
---|
63 | } |
---|
64 | |
---|
65 | |
---|
66 | Suite::~Suite(void) |
---|
67 | { |
---|
68 | } |
---|
69 | |
---|
70 | |
---|
71 | bool Suite::add(bool b) |
---|
72 | { |
---|
73 | ok_ = ok_ && b; |
---|
74 | return b; |
---|
75 | } |
---|
76 | |
---|
77 | |
---|
78 | int Suite::exit_status(void) const |
---|
79 | { |
---|
80 | int value = EXIT_FAILURE; |
---|
81 | if (ok()) { |
---|
82 | value = EXIT_SUCCESS; |
---|
83 | } |
---|
84 | out() << "exit status: " << value << "\n"; |
---|
85 | return value; |
---|
86 | } |
---|
87 | |
---|
88 | |
---|
89 | bool Suite::ok(void) const |
---|
90 | { |
---|
91 | return ok_; |
---|
92 | } |
---|
93 | |
---|
94 | |
---|
95 | std::ostream& Suite::out(void) const |
---|
96 | { |
---|
97 | return std::cout; |
---|
98 | } |
---|
99 | |
---|
100 | |
---|
101 | bool check_all(const Stats& stats, test::Suite& suite) |
---|
102 | { |
---|
103 | for (int lt=0; lt<=LineTypeParser::total; ++lt) { |
---|
104 | for (svn_revnum_t rev=0; rev<=stats.revision(); ++rev) { |
---|
105 | size_t all = 0; |
---|
106 | for (std::set<std::string>::const_iterator a=stats.authors().begin(); |
---|
107 | a!=stats.authors().end(); ++a) { |
---|
108 | all += stats(lt, *a, rev); |
---|
109 | } |
---|
110 | if (all!=stats(lt, "all", rev)) { |
---|
111 | suite.out() << "error: check_all\n" |
---|
112 | << " lt = " << lt << "\n" |
---|
113 | << " rev = " << rev << "\n" |
---|
114 | << " all = " << all << "\n" |
---|
115 | << " stats = " << stats(lt, "all", rev) << "\n"; |
---|
116 | for (std::set<std::string>::const_iterator a=stats.authors().begin(); |
---|
117 | a!=stats.authors().end(); ++a) { |
---|
118 | suite.out() << *a << " " << stats(lt, *a, rev) << "\n"; |
---|
119 | } |
---|
120 | return false; |
---|
121 | } |
---|
122 | } |
---|
123 | } |
---|
124 | return true; |
---|
125 | } |
---|
126 | |
---|
127 | |
---|
128 | bool check_total(const Stats& stats, test::Suite& suite) |
---|
129 | { |
---|
130 | for (svn_revnum_t rev=0; rev<=stats.revision(); ++rev) { |
---|
131 | for (std::set<std::string>::const_iterator a=stats.authors().begin(); |
---|
132 | a!=stats.authors().end(); ++a) { |
---|
133 | unsigned int total=0; |
---|
134 | for (int lt=0; lt<4; ++lt) { |
---|
135 | total += stats(lt, *a, rev); |
---|
136 | } |
---|
137 | unsigned int total2=stats(LineTypeParser::total, *a, rev); |
---|
138 | |
---|
139 | if (total!=total2) { |
---|
140 | suite.out() << "error: check_total\n" |
---|
141 | << " author = " << *a << "\n" |
---|
142 | << " rev = " << rev << "\n" |
---|
143 | << " sum = " << total << "\n" |
---|
144 | << " total = " << total2 << "\n"; |
---|
145 | return false; |
---|
146 | } |
---|
147 | } |
---|
148 | } |
---|
149 | return true; |
---|
150 | } |
---|
151 | |
---|
152 | |
---|
153 | bool check_comment_or_copy(const Stats& stats, test::Suite& suite) |
---|
154 | { |
---|
155 | for (svn_revnum_t rev=0; rev<=stats.revision(); ++rev) { |
---|
156 | for (std::set<std::string>::const_iterator a=stats.authors().begin(); |
---|
157 | a!=stats.authors().end(); ++a) { |
---|
158 | unsigned int x=stats(LineTypeParser::comment, *a, rev); |
---|
159 | x+=stats(LineTypeParser::copyright, *a, rev); |
---|
160 | unsigned int y=stats(LineTypeParser::comment_or_copy, *a, rev); |
---|
161 | |
---|
162 | if (x!=y) { |
---|
163 | suite.out() << "error: check_total\n" |
---|
164 | << " author = " << *a << "\n" |
---|
165 | << " rev = " << rev << "\n" |
---|
166 | << " comment + copyright = " << x << "\n" |
---|
167 | << " comment_or_copy = " << y << "\n"; |
---|
168 | return false; |
---|
169 | } |
---|
170 | } |
---|
171 | } |
---|
172 | return true; |
---|
173 | } |
---|
174 | |
---|
175 | |
---|
176 | bool consistent(const StatsCollection& sc, test::Suite& suite) |
---|
177 | { |
---|
178 | std::map<std::string, Stats*>::const_iterator iter = sc.stats().begin(); |
---|
179 | while (iter != sc.stats().end()) { |
---|
180 | if (!consistent(*iter->second, suite)) { |
---|
181 | suite.out() << "error in " << iter->first << "\n"; |
---|
182 | return false; |
---|
183 | } |
---|
184 | ++iter; |
---|
185 | } |
---|
186 | return true; |
---|
187 | } |
---|
188 | |
---|
189 | |
---|
190 | bool consistent(const Stats& stats, test::Suite& suite) |
---|
191 | { |
---|
192 | suite.add(check_all(stats, suite)); |
---|
193 | suite.add(check_total(stats, suite)); |
---|
194 | suite.add(check_comment_or_copy(stats, suite)); |
---|
195 | return true; |
---|
196 | } |
---|
197 | |
---|
198 | |
---|
199 | bool equal(const StatsCollection& a, const StatsCollection& b, |
---|
200 | Suite& suite) |
---|
201 | { |
---|
202 | if (a.stats().size() != b.stats().size()) { |
---|
203 | suite.out() << "size mismatch\n"; |
---|
204 | return false; |
---|
205 | } |
---|
206 | std::map<std::string, Stats*>::const_iterator iter1 = a.stats().begin(); |
---|
207 | std::map<std::string, Stats*>::const_iterator iter2 = b.stats().begin(); |
---|
208 | while (iter1 != a.stats().end()) { |
---|
209 | if (iter1->first != iter2->first) { |
---|
210 | suite.out() << "key mismatch\n"; |
---|
211 | suite.out() << iter1->first << " vs " << iter2->first << "\n"; |
---|
212 | return false; |
---|
213 | } |
---|
214 | if (!equal(*iter1->second, *iter2->second, suite)) { |
---|
215 | suite.out() << "error in " << iter1->first << "\n"; |
---|
216 | return false; |
---|
217 | } |
---|
218 | ++iter1; |
---|
219 | ++iter2; |
---|
220 | } |
---|
221 | return true; |
---|
222 | } |
---|
223 | |
---|
224 | |
---|
225 | bool equal(const Stats& a, const Stats& b, test::Suite& suite) |
---|
226 | { |
---|
227 | if (a.authors() != b.authors()) { |
---|
228 | suite.out() << "authors are not equal\n"; |
---|
229 | suite.out() << "lhs:\n"; |
---|
230 | std::copy(a.authors().begin(), a.authors().end(), |
---|
231 | std::ostream_iterator<std::string>(suite.out(), "\n")); |
---|
232 | suite.out() << "rhs:\n"; |
---|
233 | std::copy(b.authors().begin(), b.authors().end(), |
---|
234 | std::ostream_iterator<std::string>(suite.out(), "\n")); |
---|
235 | return false; |
---|
236 | } |
---|
237 | if (a.revision() != b.revision()) { |
---|
238 | suite.out() << "revision mismatch\n"; |
---|
239 | return false; |
---|
240 | } |
---|
241 | std::vector<std::string> authors; |
---|
242 | authors.reserve(a.authors().size()+1); |
---|
243 | std::copy(a.authors().begin(), a.authors().end(), |
---|
244 | std::back_inserter(authors)); |
---|
245 | authors.push_back("all"); |
---|
246 | for (int linetype=0; linetype <= LineTypeParser::total; ++linetype) { |
---|
247 | for (std::vector<std::string>::const_iterator author=authors.begin(); |
---|
248 | author!=authors.end(); ++author) { |
---|
249 | for (svn_revnum_t rev=0; rev<a.revision(); ++rev) { |
---|
250 | size_t ax = a(linetype, *author, rev); |
---|
251 | size_t bx = b(linetype, *author, rev); |
---|
252 | if (ax != bx) { |
---|
253 | suite.out() << "error: linetype: " << linetype |
---|
254 | << " author " << *author |
---|
255 | << " rev " << rev << "\n" |
---|
256 | << " a: " << ax << "\n" |
---|
257 | << " b: " << bx << "\n"; |
---|
258 | return false; |
---|
259 | } |
---|
260 | } |
---|
261 | } |
---|
262 | } |
---|
263 | return true; |
---|
264 | } |
---|
265 | |
---|
266 | |
---|
267 | void Suite::update_test_wc(void) const |
---|
268 | { |
---|
269 | std::string cmd = abs_builddir()+"/svn_update.sh"; |
---|
270 | out() << cmd << std::endl; |
---|
271 | int status = system(cmd.c_str()); |
---|
272 | if (status) { |
---|
273 | out() << "failed with status: " << status << std::endl; |
---|
274 | exit (1); |
---|
275 | } |
---|
276 | } |
---|
277 | |
---|
278 | |
---|
279 | bool Suite::verbose(void) const |
---|
280 | { |
---|
281 | // we are always verbose nowadays |
---|
282 | return true; |
---|
283 | } |
---|
284 | |
---|
285 | |
---|
286 | std::string filename(const std::string& path) |
---|
287 | { |
---|
288 | return abs_builddir()+"/"+path; |
---|
289 | } |
---|
290 | |
---|
291 | |
---|
292 | std::string src_filename(const std::string& path) |
---|
293 | { |
---|
294 | return abs_srcdir()+"/"+path; |
---|
295 | } |
---|
296 | |
---|
297 | |
---|
298 | }}} |
---|