blob: 33cb1546112db882bbfaebe215ff12b79144451c [file] [log] [blame]
Alexander Afanasyevec1d4a72012-03-05 11:06:54 -08001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2012 University of California, Los Angeles
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation;
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Author: Zhenkai Zhu <zhenkai@cs.ucla.edu>
19 * 卞超轶 Chaoyi Bian <bcy@pku.edu.cn>
20 * Alexander Afanasyev <alexander.afanasyev@ucla.edu>
21 */
22
Alexander Afanasyevb71beab2012-03-05 21:13:49 -080023#define BOOST_TEST_MODULE Digest
24#include <boost/test/unit_test.hpp>
25#include <boost/test/output_test_stream.hpp>
26using boost::test_tools::output_test_stream;
27
Alexander Afanasyevec1d4a72012-03-05 11:06:54 -080028#include "../model/sync-digest.h"
Alexander Afanasyev2fc2d672012-03-05 16:57:39 -080029#include <boost/lexical_cast.hpp>
Alexander Afanasyevec1d4a72012-03-05 11:06:54 -080030#include <iostream>
Alexander Afanasyev2fc2d672012-03-05 16:57:39 -080031#include <sstream>
Alexander Afanasyevec1d4a72012-03-05 11:06:54 -080032
33using namespace Sync;
34using namespace std;
Alexander Afanasyev2fc2d672012-03-05 16:57:39 -080035using namespace boost;
Alexander Afanasyevec1d4a72012-03-05 11:06:54 -080036
Alexander Afanasyevb71beab2012-03-05 21:13:49 -080037BOOST_AUTO_TEST_SUITE(DigestTestSuite)
38
39BOOST_AUTO_TEST_CASE (BasicTest)
Alexander Afanasyevec1d4a72012-03-05 11:06:54 -080040{
Alexander Afanasyevb71beab2012-03-05 21:13:49 -080041 Digest d0;
42 BOOST_REQUIRE (d0.empty ());
Alexander Afanasyevec1d4a72012-03-05 11:06:54 -080043}
Alexander Afanasyevb71beab2012-03-05 21:13:49 -080044
45BOOST_AUTO_TEST_CASE (DigestGenerationTest)
46{
47 Digest d1;
48 BOOST_CHECK_NO_THROW (d1 << "1\n");
49
50 // without explicit finalizing, Digest will not be complete and printing out will cause assert
51 BOOST_CHECK (d1.empty ());
52
53 // fix hash
54 BOOST_CHECK_NO_THROW (d1.getHash ());
55 BOOST_CHECK (!d1.empty ());
56 BOOST_CHECK (d1 == d1);
57
58 BOOST_CHECK_THROW (d1 << "2", DigestCalculationError);
59
60 output_test_stream output;
61 BOOST_CHECK_NO_THROW (output << d1);
62 BOOST_CHECK (output.check_length (40,false) );
63 BOOST_CHECK (output.is_equal ("e5fa44f2b31c1fb553b6021e7360d07d5d91ff5e", true));
64}
65
66BOOST_AUTO_TEST_CASE (DigestComparison)
67{
68 Digest d1;
69 BOOST_CHECK_NO_THROW (d1 << "1\n");
70 BOOST_CHECK_THROW (d1 == d1, DigestCalculationError);
71 BOOST_CHECK_NO_THROW (d1.getHash ());
72 BOOST_CHECK (d1 == d1);
73
74 Digest d2;
75 BOOST_CHECK_NO_THROW (d2 << "2\n");
76 BOOST_CHECK_NO_THROW (d2.getHash ());
77 BOOST_CHECK (d1 != d2);
78
79 Digest d3;
80 istringstream is (string ("e5fa44f2b31c1fb553b6021e7360d07d5d91ff5e")); //real sha-1 for "1\n"
81 BOOST_CHECK_NO_THROW (is >> d3);
82 BOOST_CHECK (!d3.empty ());
83 BOOST_CHECK (d3 == d1);
84 BOOST_CHECK (d3 != d2);
85
86 istringstream is2 (string ("25fa44f2b31c1fb553b6021e7360d07d5d91ff5e")); // some fake hash
87 BOOST_CHECK_THROW (is2 >> d3, DigestCalculationError); // >> can be used only once
88
89 Digest d4;
90 BOOST_CHECK_THROW (is2 >> d4, DigestCalculationError); // is2 is now empty. empty >> is not allowed
91
92 istringstream is3 (string ("25fa44f2b31c1fb553b6021e7360d07d5d91ff5e")); // some fake hash
93 BOOST_CHECK_NO_THROW (is3 >> d4);
94
95 BOOST_CHECK (d4 != d1);
96 BOOST_CHECK (d4 != d2);
97 BOOST_CHECK (d4 != d3);
98}
99
100BOOST_AUTO_TEST_SUITE_END()
101
102//////////////////////////////////////////////////////////////////////////////////////////
103
104BOOST_AUTO_TEST_SUITE(LeafTestSuite)
105
106BOOST_AUTO_TEST_CASE (LeafBase)
107{
108 Leaf test;
109}
110
111BOOST_AUTO_TEST_SUITE_END()