Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: net/disk_cache/simple/simple_util_unittest.cc

Issue 14263005: Refactor our SimpleIndex file format and serialization to use Pickle instead of the previously bugg… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: to commit again, since the last dcommit failed Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/disk_cache/simple/simple_util.cc ('k') | net/net.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/logging.h"
6 #include "base/port.h"
7 #include "net/disk_cache/simple/simple_util.h"
8 #include "testing/gtest/include/gtest/gtest.h"
9
10 using disk_cache::simple_util::ConvertEntryHashKeyToHexString;
11 using disk_cache::simple_util::GetEntryHashKeyAsHexString;
12 using disk_cache::simple_util::GetEntryHashKeyFromHexString;
13 using disk_cache::simple_util::GetEntryHashKey;
14
15 class SimpleUtilTest : public testing::Test {};
16
17 TEST_F(SimpleUtilTest, ConvertEntryHashKeyToHexString) {
18 EXPECT_EQ("0000000005f5e0ff",
19 ConvertEntryHashKeyToHexString(GG_UINT64_C(99999999)));
20 EXPECT_EQ("7fffffffffffffff",
21 ConvertEntryHashKeyToHexString(GG_UINT64_C(9223372036854775807)));
22 EXPECT_EQ("8000000000000000",
23 ConvertEntryHashKeyToHexString(GG_UINT64_C(9223372036854775808)));
24 EXPECT_EQ("ffffffffffffffff",
25 ConvertEntryHashKeyToHexString(GG_UINT64_C(18446744073709551615)));
26 }
27
28 TEST_F(SimpleUtilTest, GetEntryHashKey) {
29 EXPECT_EQ("7ac408c1dff9c84b",
30 GetEntryHashKeyAsHexString("http://www.amazon.com/"));
31 EXPECT_EQ(GG_UINT64_C(0x7ac408c1dff9c84b), GetEntryHashKey("http://www.amazon. com/"));
32
33 EXPECT_EQ("9fe947998c2ccf47",
34 GetEntryHashKeyAsHexString("www.amazon.com"));
35 EXPECT_EQ(GG_UINT64_C(0x9fe947998c2ccf47), GetEntryHashKey("www.amazon.com"));
36
37 EXPECT_EQ("0d4b6b5eeea339da", GetEntryHashKeyAsHexString(""));
38 EXPECT_EQ(GG_UINT64_C(0x0d4b6b5eeea339da), GetEntryHashKey(""));
39
40 EXPECT_EQ("a68ac2ecc87dfd04", GetEntryHashKeyAsHexString("http://www.domain.co m/uoQ76Kb2QL5hzaVOSAKWeX0W9LfDLqphmRXpsfHN8tgF5lCsfTxlOVWY8vFwzhsRzoNYKhUIOTc5Tn UlT0vpdQflPyk2nh7vurXOj60cDnkG3nsrXMhFCsPjhcZAic2jKpF9F9TYRYQwJo81IMi6gY01RK3ZcN l8WGfqcvoZ702UIdetvR7kiaqo1czwSJCMjRFdG6EgMzgXrwE8DYMz4fWqoa1F1c1qwTCBk3yOcmGTbx sPSJK5QRyNea9IFLrBTjfE7ZlN2vZiI7adcDYJef.htm"));
41
42 EXPECT_EQ(GG_UINT64_C(0xa68ac2ecc87dfd04), GetEntryHashKey("http://www.domain. com/uoQ76Kb2QL5hzaVOSAKWeX0W9LfDLqphmRXpsfHN8tgF5lCsfTxlOVWY8vFwzhsRzoNYKhUIOTc5 TnUlT0vpdQflPyk2nh7vurXOj60cDnkG3nsrXMhFCsPjhcZAic2jKpF9F9TYRYQwJo81IMi6gY01RK3Z cNl8WGfqcvoZ702UIdetvR7kiaqo1czwSJCMjRFdG6EgMzgXrwE8DYMz4fWqoa1F1c1qwTCBk3yOcmGT bxsPSJK5QRyNea9IFLrBTjfE7ZlN2vZiI7adcDYJef.htm"));
43 }
44
45 TEST_F(SimpleUtilTest, GetEntryHashKeyFromHexString) {
46 uint64 hash_key = 0;
47 EXPECT_TRUE(GetEntryHashKeyFromHexString("0000000005f5e0ff", &hash_key));
48 EXPECT_EQ(GG_UINT64_C(99999999), hash_key);
49
50 EXPECT_TRUE(GetEntryHashKeyFromHexString("7ffffffffffffffF", &hash_key));
51 EXPECT_EQ(GG_UINT64_C(9223372036854775807), hash_key);
52
53 EXPECT_TRUE(GetEntryHashKeyFromHexString("8000000000000000", &hash_key));
54 EXPECT_EQ(GG_UINT64_C(9223372036854775808), hash_key);
55
56 EXPECT_TRUE(GetEntryHashKeyFromHexString("FFFFFFFFFFFFFFFF", &hash_key));
57 EXPECT_EQ(GG_UINT64_C(18446744073709551615), hash_key);
58
59 // Wrong hash string size.
60 EXPECT_FALSE(GetEntryHashKeyFromHexString("FFFFFFFFFFFFFFF", &hash_key));
61
62 // Wrong hash string size.
63 EXPECT_FALSE(GetEntryHashKeyFromHexString("FFFFFFFFFFFFFFFFF", &hash_key));
64
65 EXPECT_FALSE(GetEntryHashKeyFromHexString("iwr8wglhg8*(&1231((", &hash_key));
66 }
OLDNEW
« no previous file with comments | « net/disk_cache/simple/simple_util.cc ('k') | net/net.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698