OLD | NEW |
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/memory/discardable_memory.h" | 5 #include "base/memory/discardable_memory.h" |
6 #include "testing/gtest/include/gtest/gtest.h" | 6 #include "testing/gtest/include/gtest/gtest.h" |
7 | 7 |
8 namespace base { | 8 namespace base { |
9 | 9 |
10 #if defined(OS_ANDROID) || defined(OS_MACOSX) | 10 TEST(DiscardableMemoryTest, SupportedNatively) { |
| 11 #if defined(DISCARDABLE_MEMORY_ALWAYS_SUPPORTED_NATIVELY) |
| 12 ASSERT_TRUE(DiscardableMemory::SupportedNatively()); |
| 13 #elif defined(DISCARDABLE_MEMORY_NEVER_SUPPORTED_NATIVELY) |
| 14 ASSERT_FALSE(DiscardableMemory::SupportedNatively()); |
| 15 #endif |
| 16 } |
| 17 |
11 // Test Lock() and Unlock() functionalities. | 18 // Test Lock() and Unlock() functionalities. |
12 TEST(DiscardableMemoryTest, LockAndUnLock) { | 19 TEST(DiscardableMemoryTest, LockAndUnLock) { |
13 ASSERT_TRUE(DiscardableMemory::Supported()); | |
14 | |
15 const size_t size = 1024; | 20 const size_t size = 1024; |
16 | 21 |
17 DiscardableMemory memory; | 22 DiscardableMemory memory; |
18 ASSERT_TRUE(memory.InitializeAndLock(size)); | 23 ASSERT_TRUE(memory.InitializeAndLock(size)); |
19 void* addr = memory.Memory(); | 24 void* addr = memory.Memory(); |
20 ASSERT_NE(static_cast<void*>(NULL), addr); | 25 ASSERT_NE(static_cast<void*>(NULL), addr); |
21 | 26 |
22 memory.Unlock(); | 27 memory.Unlock(); |
23 // The system should have no reason to purge discardable blocks in this brief | 28 // The system should have no reason to purge discardable blocks in this brief |
24 // interval, though technically speaking this might flake. | 29 // interval, though technically speaking this might flake. |
25 EXPECT_EQ(DISCARDABLE_MEMORY_SUCCESS, memory.Lock()); | 30 EXPECT_EQ(DISCARDABLE_MEMORY_SUCCESS, memory.Lock()); |
26 addr = memory.Memory(); | 31 addr = memory.Memory(); |
27 ASSERT_NE(static_cast<void*>(NULL), addr); | 32 ASSERT_NE(static_cast<void*>(NULL), addr); |
28 | 33 |
29 memory.Unlock(); | 34 memory.Unlock(); |
30 } | 35 } |
31 | 36 |
32 // Test delete a discardable memory while it is locked. | 37 // Test delete a discardable memory while it is locked. |
33 TEST(DiscardableMemoryTest, DeleteWhileLocked) { | 38 TEST(DiscardableMemoryTest, DeleteWhileLocked) { |
34 ASSERT_TRUE(DiscardableMemory::Supported()); | |
35 | |
36 const size_t size = 1024; | 39 const size_t size = 1024; |
37 | 40 |
38 DiscardableMemory memory; | 41 DiscardableMemory memory; |
39 ASSERT_TRUE(memory.InitializeAndLock(size)); | 42 ASSERT_TRUE(memory.InitializeAndLock(size)); |
40 } | 43 } |
41 | 44 |
42 #if defined(OS_MACOSX) | 45 #if !defined(OS_ANDROID) |
43 // Test forced purging. | 46 // Test forced purging. |
44 TEST(DiscardableMemoryTest, Purge) { | 47 TEST(DiscardableMemoryTest, Purge) { |
45 ASSERT_TRUE(DiscardableMemory::Supported()); | |
46 ASSERT_TRUE(DiscardableMemory::PurgeForTestingSupported()); | 48 ASSERT_TRUE(DiscardableMemory::PurgeForTestingSupported()); |
47 | 49 |
48 const size_t size = 1024; | 50 const size_t size = 1024; |
49 | 51 |
50 DiscardableMemory memory; | 52 DiscardableMemory memory; |
51 ASSERT_TRUE(memory.InitializeAndLock(size)); | 53 ASSERT_TRUE(memory.InitializeAndLock(size)); |
52 memory.Unlock(); | 54 memory.Unlock(); |
53 | 55 |
54 DiscardableMemory::PurgeForTesting(); | 56 DiscardableMemory::PurgeForTesting(); |
55 EXPECT_EQ(DISCARDABLE_MEMORY_PURGED, memory.Lock()); | 57 EXPECT_EQ(DISCARDABLE_MEMORY_PURGED, memory.Lock()); |
56 } | 58 } |
57 #endif // OS_MACOSX | 59 #endif // !OS_ANDROID |
58 | |
59 #endif // OS_* | |
60 | 60 |
61 } | 61 } |
OLD | NEW |