1 | // $Id: cache_partial_test.cc 1119 2010-07-04 18:34:07Z peter $ |
---|
2 | |
---|
3 | /* |
---|
4 | Copyright (C) 2009, 2010 Peter Johansson |
---|
5 | |
---|
6 | This file is part of svndigest, http://dev.thep.lu.se/svndigest |
---|
7 | |
---|
8 | svndigest is free software; you can redistribute it and/or modify it |
---|
9 | under the terms of the GNU General Public License as published by |
---|
10 | the Free Software Foundation; either version 3 of the License, or |
---|
11 | (at your option) any later version. |
---|
12 | |
---|
13 | svndigest is distributed in the hope that it will be useful, but |
---|
14 | WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
16 | General Public License for more details. |
---|
17 | |
---|
18 | You should have received a copy of the GNU General Public License |
---|
19 | along with svndigest. If not, see <http://www.gnu.org/licenses/>. |
---|
20 | */ |
---|
21 | |
---|
22 | // Testing that partial cache works fine, ticket #338. |
---|
23 | |
---|
24 | #include "Suite.h" |
---|
25 | |
---|
26 | #include "lib/File.h" |
---|
27 | #include "lib/SVN.h" |
---|
28 | #include "lib/SVNinfo.h" |
---|
29 | #include "lib/utility.h" |
---|
30 | |
---|
31 | #include <iostream> |
---|
32 | |
---|
33 | using namespace theplu::svndigest; |
---|
34 | |
---|
35 | int main( int argc, char* argv[]) |
---|
36 | { |
---|
37 | test::Suite suite(argc, argv, true); |
---|
38 | |
---|
39 | mkdir_p("toy_project/.svndigest"); |
---|
40 | std::string root="toy_project"; |
---|
41 | std::string filename = root + "/AUTHORS"; |
---|
42 | suite.out() << "Create SVN instance" << std::endl; |
---|
43 | SVN* svn=SVN::instance(root); |
---|
44 | if (!svn) |
---|
45 | return 1; |
---|
46 | // Extract repository location |
---|
47 | suite.out() << "Extract repository location" << std::endl; |
---|
48 | std::string repo=SVNinfo(root).repos_root_url(); |
---|
49 | |
---|
50 | // create file ignoring cache file |
---|
51 | std::string cache_file = "toy_project/.svndigest/AUTHORS.svndigest-cache"; |
---|
52 | File file(0,filename,""); |
---|
53 | const StatsCollection& stats1 = file.parse(suite.verbose(), true); |
---|
54 | suite.add(test::consistent(stats1, suite)); |
---|
55 | |
---|
56 | // create file using partial cache |
---|
57 | copy_file(test::src_filename("data/AUTHORS.svndigest-cache-r61"), cache_file); |
---|
58 | File file2(0,filename,""); |
---|
59 | const StatsCollection& stats2 = file2.parse(suite.verbose(), false); |
---|
60 | suite.add(test::consistent(stats2, suite)); |
---|
61 | |
---|
62 | suite.add(equal(stats1, stats2, suite)); |
---|
63 | |
---|
64 | if (suite.ok()) { |
---|
65 | suite.out() << "Test is OK\n"; |
---|
66 | return 0; |
---|
67 | } |
---|
68 | suite.out() << "Test failed\n"; |
---|
69 | return 1; |
---|
70 | } |
---|
71 | |
---|
72 | |
---|
73 | |
---|
74 | |
---|