forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmalloc_zone_functions_mac_unittest.cc
57 lines (48 loc) · 1.83 KB
/
malloc_zone_functions_mac_unittest.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/allocator/malloc_zone_functions_mac.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace base {
namespace allocator {
class MallocZoneFunctionsTest : public testing::Test {
protected:
void TearDown() override { ClearAllMallocZonesForTesting(); }
};
TEST_F(MallocZoneFunctionsTest, TestDefaultZoneMallocFree) {
ChromeMallocZone* malloc_zone =
reinterpret_cast<ChromeMallocZone*>(malloc_default_zone());
StoreMallocZone(malloc_zone);
int* test = reinterpret_cast<int*>(
g_malloc_zones[0].malloc(malloc_default_zone(), 33));
test[0] = 1;
test[1] = 2;
g_malloc_zones[0].free(malloc_default_zone(), test);
}
TEST_F(MallocZoneFunctionsTest, IsZoneAlreadyStored) {
ChromeMallocZone* malloc_zone =
reinterpret_cast<ChromeMallocZone*>(malloc_default_zone());
EXPECT_FALSE(IsMallocZoneAlreadyStored(malloc_zone));
StoreMallocZone(malloc_zone);
EXPECT_TRUE(IsMallocZoneAlreadyStored(malloc_zone));
}
TEST_F(MallocZoneFunctionsTest, CannotDoubleStoreZone) {
ChromeMallocZone* malloc_zone =
reinterpret_cast<ChromeMallocZone*>(malloc_default_zone());
StoreMallocZone(malloc_zone);
StoreMallocZone(malloc_zone);
EXPECT_EQ(1, GetMallocZoneCountForTesting());
}
TEST_F(MallocZoneFunctionsTest, CannotStoreMoreThanMaxZones) {
std::vector<ChromeMallocZone> zones;
zones.resize(kMaxZoneCount * 2);
for (int i = 0; i < kMaxZoneCount * 2; ++i) {
ChromeMallocZone& zone = zones[i];
memcpy(&zone, malloc_default_zone(), sizeof(ChromeMallocZone));
StoreMallocZone(&zone);
}
int max_zone_count = kMaxZoneCount;
EXPECT_EQ(max_zone_count, GetMallocZoneCountForTesting());
}
} // namespace allocator
} // namespace base