blob: a1ae6a3809d8271848c7b56b6779e111f9b53d99 [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#include <boost/test/unit_test.hpp>
24#include <boost/test/output_test_stream.hpp>
25using boost::test_tools::output_test_stream;
26
Alexander Afanasyevec1d4a72012-03-05 11:06:54 -080027#include "../model/sync-digest.h"
28#include <iostream>
Alexander Afanasyev2fc2d672012-03-05 16:57:39 -080029#include <sstream>
Alexander Afanasyevec1d4a72012-03-05 11:06:54 -080030
31using namespace Sync;
32using namespace std;
Alexander Afanasyev2fc2d672012-03-05 16:57:39 -080033using namespace boost;
Alexander Afanasyevec1d4a72012-03-05 11:06:54 -080034
Alexander Afanasyevb71beab2012-03-05 21:13:49 -080035BOOST_AUTO_TEST_SUITE(DigestTestSuite)
36
37BOOST_AUTO_TEST_CASE (BasicTest)
Alexander Afanasyevec1d4a72012-03-05 11:06:54 -080038{
Alexander Afanasyevb71beab2012-03-05 21:13:49 -080039 Digest d0;
40 BOOST_REQUIRE (d0.empty ());
Alexander Afanasyevec1d4a72012-03-05 11:06:54 -080041}
Alexander Afanasyevb71beab2012-03-05 21:13:49 -080042
43BOOST_AUTO_TEST_CASE (DigestGenerationTest)
44{
45 Digest d1;
46 BOOST_CHECK_NO_THROW (d1 << "1\n");
47
48 // without explicit finalizing, Digest will not be complete and printing out will cause assert
49 BOOST_CHECK (d1.empty ());
50
51 // fix hash
52 BOOST_CHECK_NO_THROW (d1.getHash ());
53 BOOST_CHECK (!d1.empty ());
54 BOOST_CHECK (d1 == d1);
55
56 BOOST_CHECK_THROW (d1 << "2", DigestCalculationError);
57
58 output_test_stream output;
59 BOOST_CHECK_NO_THROW (output << d1);
60 BOOST_CHECK (output.check_length (40,false) );
61 BOOST_CHECK (output.is_equal ("e5fa44f2b31c1fb553b6021e7360d07d5d91ff5e", true));
62}
63
64BOOST_AUTO_TEST_CASE (DigestComparison)
65{
66 Digest d1;
67 BOOST_CHECK_NO_THROW (d1 << "1\n");
68 BOOST_CHECK_THROW (d1 == d1, DigestCalculationError);
69 BOOST_CHECK_NO_THROW (d1.getHash ());
70 BOOST_CHECK (d1 == d1);
71
72 Digest d2;
73 BOOST_CHECK_NO_THROW (d2 << "2\n");
74 BOOST_CHECK_NO_THROW (d2.getHash ());
75 BOOST_CHECK (d1 != d2);
76
77 Digest d3;
78 istringstream is (string ("e5fa44f2b31c1fb553b6021e7360d07d5d91ff5e")); //real sha-1 for "1\n"
79 BOOST_CHECK_NO_THROW (is >> d3);
80 BOOST_CHECK (!d3.empty ());
81 BOOST_CHECK (d3 == d1);
82 BOOST_CHECK (d3 != d2);
83
84 istringstream is2 (string ("25fa44f2b31c1fb553b6021e7360d07d5d91ff5e")); // some fake hash
85 BOOST_CHECK_THROW (is2 >> d3, DigestCalculationError); // >> can be used only once
86
87 Digest d4;
88 BOOST_CHECK_THROW (is2 >> d4, DigestCalculationError); // is2 is now empty. empty >> is not allowed
89
90 istringstream is3 (string ("25fa44f2b31c1fb553b6021e7360d07d5d91ff5e")); // some fake hash
91 BOOST_CHECK_NO_THROW (is3 >> d4);
92
93 BOOST_CHECK (d4 != d1);
94 BOOST_CHECK (d4 != d2);
95 BOOST_CHECK (d4 != d3);
96}
97
98BOOST_AUTO_TEST_SUITE_END()
99