OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "net/disk_cache/addr.h" | 5 #include "net/disk_cache/addr.h" |
6 #include "net/disk_cache/disk_cache_test_base.h" | 6 #include "net/disk_cache/disk_cache_test_base.h" |
7 #include "testing/gtest/include/gtest/gtest.h" | 7 #include "testing/gtest/include/gtest/gtest.h" |
8 | 8 |
9 namespace disk_cache { | 9 namespace disk_cache { |
10 | 10 |
(...skipping 22 matching lines...) Expand all Loading... |
33 EXPECT_EQ(0x2536, addr3.start_block()); | 33 EXPECT_EQ(0x2536, addr3.start_block()); |
34 EXPECT_EQ(4096, addr3.BlockSize()); | 34 EXPECT_EQ(4096, addr3.BlockSize()); |
35 } | 35 } |
36 | 36 |
37 TEST_F(DiskCacheTest, CacheAddr_SanityCheck) { | 37 TEST_F(DiskCacheTest, CacheAddr_SanityCheck) { |
38 // First a few valid values. | 38 // First a few valid values. |
39 EXPECT_TRUE(Addr(0).SanityCheck()); | 39 EXPECT_TRUE(Addr(0).SanityCheck()); |
40 EXPECT_TRUE(Addr(0x80001000).SanityCheck()); | 40 EXPECT_TRUE(Addr(0x80001000).SanityCheck()); |
41 EXPECT_TRUE(Addr(0xC3FFFFFF).SanityCheck()); | 41 EXPECT_TRUE(Addr(0xC3FFFFFF).SanityCheck()); |
42 EXPECT_TRUE(Addr(0xC0FFFFFF).SanityCheck()); | 42 EXPECT_TRUE(Addr(0xC0FFFFFF).SanityCheck()); |
| 43 EXPECT_TRUE(Addr(0xD0001000).SanityCheck()); |
43 | 44 |
44 // Not initialized. | 45 // Not initialized. |
45 EXPECT_FALSE(Addr(0x20).SanityCheck()); | 46 EXPECT_FALSE(Addr(0x20).SanityCheck()); |
46 EXPECT_FALSE(Addr(0x10001000).SanityCheck()); | 47 EXPECT_FALSE(Addr(0x10001000).SanityCheck()); |
47 | 48 |
48 // Invalid file type. | 49 // Invalid file type. |
49 EXPECT_FALSE(Addr(0xD0001000).SanityCheck()); | 50 EXPECT_FALSE(Addr(0xE0001000).SanityCheck()); |
50 EXPECT_FALSE(Addr(0xF0000000).SanityCheck()); | 51 EXPECT_FALSE(Addr(0xF0000000).SanityCheck()); |
51 | 52 |
52 // Reserved bits. | 53 // Reserved bits. |
53 EXPECT_FALSE(Addr(0x14000000).SanityCheck()); | 54 EXPECT_FALSE(Addr(0x14000000).SanityCheck()); |
54 EXPECT_FALSE(Addr(0x18000000).SanityCheck()); | 55 EXPECT_FALSE(Addr(0x18000000).SanityCheck()); |
55 } | 56 } |
56 | 57 |
57 } // namespace disk_cache | 58 } // namespace disk_cache |
OLD | NEW |