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

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

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/logging.h" 5 #include "base/logging.h"
6 #include "base/port.h" 6 #include "base/port.h"
7 #include "net/disk_cache/simple/simple_util.h" 7 #include "net/disk_cache/simple/simple_util.h"
8 #include "testing/gtest/include/gtest/gtest.h" 8 #include "testing/gtest/include/gtest/gtest.h"
9 9
10 using disk_cache::simple_util::ConvertEntryHashKeyToHexString; 10 using disk_cache::simple_util::ConvertEntryHashKeyToHexString;
(...skipping 15 matching lines...) Expand all
26 EXPECT_EQ("ffffffffffffffff", 26 EXPECT_EQ("ffffffffffffffff",
27 ConvertEntryHashKeyToHexString(GG_UINT64_C(18446744073709551615))); 27 ConvertEntryHashKeyToHexString(GG_UINT64_C(18446744073709551615)));
28 } 28 }
29 29
30 TEST_F(SimpleUtilTest, GetEntryHashKey) { 30 TEST_F(SimpleUtilTest, GetEntryHashKey) {
31 EXPECT_EQ("7ac408c1dff9c84b", 31 EXPECT_EQ("7ac408c1dff9c84b",
32 GetEntryHashKeyAsHexString("http://www.amazon.com/")); 32 GetEntryHashKeyAsHexString("http://www.amazon.com/"));
33 EXPECT_EQ(GG_UINT64_C(0x7ac408c1dff9c84b), 33 EXPECT_EQ(GG_UINT64_C(0x7ac408c1dff9c84b),
34 GetEntryHashKey("http://www.amazon.com/")); 34 GetEntryHashKey("http://www.amazon.com/"));
35 35
36 EXPECT_EQ("9fe947998c2ccf47", 36 EXPECT_EQ("9fe947998c2ccf47", GetEntryHashKeyAsHexString("www.amazon.com"));
37 GetEntryHashKeyAsHexString("www.amazon.com"));
38 EXPECT_EQ(GG_UINT64_C(0x9fe947998c2ccf47), GetEntryHashKey("www.amazon.com")); 37 EXPECT_EQ(GG_UINT64_C(0x9fe947998c2ccf47), GetEntryHashKey("www.amazon.com"));
39 38
40 EXPECT_EQ("0d4b6b5eeea339da", GetEntryHashKeyAsHexString("")); 39 EXPECT_EQ("0d4b6b5eeea339da", GetEntryHashKeyAsHexString(""));
41 EXPECT_EQ(GG_UINT64_C(0x0d4b6b5eeea339da), GetEntryHashKey("")); 40 EXPECT_EQ(GG_UINT64_C(0x0d4b6b5eeea339da), GetEntryHashKey(""));
42 41
43 EXPECT_EQ("a68ac2ecc87dfd04", GetEntryHashKeyAsHexString("http://www.domain.co m/uoQ76Kb2QL5hzaVOSAKWeX0W9LfDLqphmRXpsfHN8tgF5lCsfTxlOVWY8vFwzhsRzoNYKhUIOTc5Tn UlT0vpdQflPyk2nh7vurXOj60cDnkG3nsrXMhFCsPjhcZAic2jKpF9F9TYRYQwJo81IMi6gY01RK3ZcN l8WGfqcvoZ702UIdetvR7kiaqo1czwSJCMjRFdG6EgMzgXrwE8DYMz4fWqoa1F1c1qwTCBk3yOcmGTbx sPSJK5QRyNea9IFLrBTjfE7ZlN2vZiI7adcDYJef.htm")); 42 EXPECT_EQ("a68ac2ecc87dfd04",
43 GetEntryHashKeyAsHexString(
44 "http://www.domain.com/"
45 "uoQ76Kb2QL5hzaVOSAKWeX0W9LfDLqphmRXpsfHN8tgF5lCsfTxlOVWY8vFwzh"
46 "sRzoNYKhUIOTc5TnUlT0vpdQflPyk2nh7vurXOj60cDnkG3nsrXMhFCsPjhcZA"
47 "ic2jKpF9F9TYRYQwJo81IMi6gY01RK3ZcNl8WGfqcvoZ702UIdetvR7kiaqo1c"
48 "zwSJCMjRFdG6EgMzgXrwE8DYMz4fWqoa1F1c1qwTCBk3yOcmGTbxsPSJK5QRyN"
49 "ea9IFLrBTjfE7ZlN2vZiI7adcDYJef.htm"));
44 50
45 EXPECT_EQ(GG_UINT64_C(0xa68ac2ecc87dfd04), GetEntryHashKey("http://www.domain. com/uoQ76Kb2QL5hzaVOSAKWeX0W9LfDLqphmRXpsfHN8tgF5lCsfTxlOVWY8vFwzhsRzoNYKhUIOTc5 TnUlT0vpdQflPyk2nh7vurXOj60cDnkG3nsrXMhFCsPjhcZAic2jKpF9F9TYRYQwJo81IMi6gY01RK3Z cNl8WGfqcvoZ702UIdetvR7kiaqo1czwSJCMjRFdG6EgMzgXrwE8DYMz4fWqoa1F1c1qwTCBk3yOcmGT bxsPSJK5QRyNea9IFLrBTjfE7ZlN2vZiI7adcDYJef.htm")); 51 EXPECT_EQ(GG_UINT64_C(0xa68ac2ecc87dfd04),
52 GetEntryHashKey(
53 "http://www.domain.com/"
54 "uoQ76Kb2QL5hzaVOSAKWeX0W9LfDLqphmRXpsfHN8tgF5lCsfTxlOVWY8vFwzh"
55 "sRzoNYKhUIOTc5TnUlT0vpdQflPyk2nh7vurXOj60cDnkG3nsrXMhFCsPjhcZA"
56 "ic2jKpF9F9TYRYQwJo81IMi6gY01RK3ZcNl8WGfqcvoZ702UIdetvR7kiaqo1c"
57 "zwSJCMjRFdG6EgMzgXrwE8DYMz4fWqoa1F1c1qwTCBk3yOcmGTbxsPSJK5QRyN"
58 "ea9IFLrBTjfE7ZlN2vZiI7adcDYJef.htm"));
46 } 59 }
47 60
48 TEST_F(SimpleUtilTest, GetEntryHashKeyFromHexString) { 61 TEST_F(SimpleUtilTest, GetEntryHashKeyFromHexString) {
49 uint64 hash_key = 0; 62 uint64 hash_key = 0;
50 EXPECT_TRUE(GetEntryHashKeyFromHexString("0000000005f5e0ff", &hash_key)); 63 EXPECT_TRUE(GetEntryHashKeyFromHexString("0000000005f5e0ff", &hash_key));
51 EXPECT_EQ(GG_UINT64_C(99999999), hash_key); 64 EXPECT_EQ(GG_UINT64_C(99999999), hash_key);
52 65
53 EXPECT_TRUE(GetEntryHashKeyFromHexString("7ffffffffffffffF", &hash_key)); 66 EXPECT_TRUE(GetEntryHashKeyFromHexString("7ffffffffffffffF", &hash_key));
54 EXPECT_EQ(GG_UINT64_C(9223372036854775807), hash_key); 67 EXPECT_EQ(GG_UINT64_C(9223372036854775807), hash_key);
55 68
(...skipping 11 matching lines...) Expand all
67 80
68 EXPECT_FALSE(GetEntryHashKeyFromHexString("iwr8wglhg8*(&1231((", &hash_key)); 81 EXPECT_FALSE(GetEntryHashKeyFromHexString("iwr8wglhg8*(&1231((", &hash_key));
69 } 82 }
70 83
71 TEST_F(SimpleUtilTest, SizesAndOffsets) { 84 TEST_F(SimpleUtilTest, SizesAndOffsets) {
72 const char key[] = "This is an example key"; 85 const char key[] = "This is an example key";
73 const int data_size = 1000; 86 const int data_size = 1000;
74 const int file_size = GetFileSizeFromKeyAndDataSize(key, data_size); 87 const int file_size = GetFileSizeFromKeyAndDataSize(key, data_size);
75 EXPECT_EQ(data_size, GetDataSizeFromKeyAndFileSize(key, file_size)); 88 EXPECT_EQ(data_size, GetDataSizeFromKeyAndFileSize(key, file_size));
76 } 89 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698