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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
|
// Copyright 2015 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/memory/memory_pressure_monitor_win.h"
#include "base/macros.h"
#include "base/memory/memory_pressure_listener.h"
#include "base/message_loop/message_loop.h"
#include "base/run_loop.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace base {
namespace win {
namespace {
struct PressureSettings {
int phys_left_mb;
MemoryPressureListener::MemoryPressureLevel level;
};
} // namespace
// This is outside of the anonymous namespace so that it can be seen as a friend
// to the monitor class.
class TestMemoryPressureMonitor : public MemoryPressureMonitor {
public:
using MemoryPressureMonitor::CalculateCurrentPressureLevel;
using MemoryPressureMonitor::CheckMemoryPressure;
static const DWORDLONG kMBBytes = 1024 * 1024;
explicit TestMemoryPressureMonitor(bool large_memory)
: mem_status_() {
// Generate a plausible amount of memory.
mem_status_.ullTotalPhys =
static_cast<DWORDLONG>(GenerateTotalMemoryMb(large_memory)) * kMBBytes;
// Rerun InferThresholds using the test fixture's GetSystemMemoryStatus.
InferThresholds();
// Stop the timer.
StopObserving();
}
TestMemoryPressureMonitor(int system_memory_mb,
int moderate_threshold_mb,
int critical_threshold_mb)
: MemoryPressureMonitor(moderate_threshold_mb, critical_threshold_mb),
mem_status_() {
// Set the amount of system memory.
mem_status_.ullTotalPhys = static_cast<DWORDLONG>(
system_memory_mb * kMBBytes);
// Stop the timer.
StopObserving();
}
virtual ~TestMemoryPressureMonitor() {}
MOCK_METHOD1(OnMemoryPressure,
void(MemoryPressureListener::MemoryPressureLevel level));
// Generates an amount of total memory that is consistent with the requested
// memory model.
int GenerateTotalMemoryMb(bool large_memory) {
int total_mb = 64;
while (total_mb < MemoryPressureMonitor::kLargeMemoryThresholdMb)
total_mb *= 2;
if (large_memory)
return total_mb * 2;
return total_mb / 2;
}
// Sets up the memory status to reflect the provided absolute memory left.
void SetMemoryFree(int phys_left_mb) {
// ullTotalPhys is set in the constructor and not modified.
// Set the amount of available memory.
mem_status_.ullAvailPhys =
static_cast<DWORDLONG>(phys_left_mb) * kMBBytes;
DCHECK_LT(mem_status_.ullAvailPhys, mem_status_.ullTotalPhys);
// These fields are unused.
mem_status_.dwMemoryLoad = 0;
mem_status_.ullTotalPageFile = 0;
mem_status_.ullAvailPageFile = 0;
mem_status_.ullTotalVirtual = 0;
mem_status_.ullAvailVirtual = 0;
}
void SetNone() {
SetMemoryFree(moderate_threshold_mb() + 1);
}
void SetModerate() {
SetMemoryFree(moderate_threshold_mb() - 1);
}
void SetCritical() {
SetMemoryFree(critical_threshold_mb() - 1);
}
private:
bool GetSystemMemoryStatus(MEMORYSTATUSEX* mem_status) override {
// Simply copy the memory status set by the test fixture.
*mem_status = mem_status_;
return true;
}
MEMORYSTATUSEX mem_status_;
DISALLOW_COPY_AND_ASSIGN(TestMemoryPressureMonitor);
};
class WinMemoryPressureMonitorTest : public testing::Test {
protected:
void CalculateCurrentMemoryPressureLevelTest(
TestMemoryPressureMonitor* monitor) {
int mod = monitor->moderate_threshold_mb();
monitor->SetMemoryFree(mod + 1);
EXPECT_EQ(MemoryPressureListener::MEMORY_PRESSURE_LEVEL_NONE,
monitor->CalculateCurrentPressureLevel());
monitor->SetMemoryFree(mod);
EXPECT_EQ(MemoryPressureListener::MEMORY_PRESSURE_LEVEL_MODERATE,
monitor->CalculateCurrentPressureLevel());
monitor->SetMemoryFree(mod - 1);
EXPECT_EQ(MemoryPressureListener::MEMORY_PRESSURE_LEVEL_MODERATE,
monitor->CalculateCurrentPressureLevel());
int crit = monitor->critical_threshold_mb();
monitor->SetMemoryFree(crit + 1);
EXPECT_EQ(MemoryPressureListener::MEMORY_PRESSURE_LEVEL_MODERATE,
monitor->CalculateCurrentPressureLevel());
monitor->SetMemoryFree(crit);
EXPECT_EQ(MemoryPressureListener::MEMORY_PRESSURE_LEVEL_CRITICAL,
monitor->CalculateCurrentPressureLevel());
monitor->SetMemoryFree(crit - 1);
EXPECT_EQ(MemoryPressureListener::MEMORY_PRESSURE_LEVEL_CRITICAL,
monitor->CalculateCurrentPressureLevel());
}
base::MessageLoopForUI message_loop_;
};
// Tests the fundamental direct calculation of memory pressure with automatic
// small-memory thresholds.
TEST_F(WinMemoryPressureMonitorTest, CalculateCurrentMemoryPressureLevelSmall) {
static const int kModerateMb =
MemoryPressureMonitor::kSmallMemoryDefaultModerateThresholdMb;
static const int kCriticalMb =
MemoryPressureMonitor::kSmallMemoryDefaultCriticalThresholdMb;
TestMemoryPressureMonitor monitor(false); // Small-memory model.
EXPECT_EQ(kModerateMb, monitor.moderate_threshold_mb());
EXPECT_EQ(kCriticalMb, monitor.critical_threshold_mb());
ASSERT_NO_FATAL_FAILURE(CalculateCurrentMemoryPressureLevelTest(&monitor));
}
// Tests the fundamental direct calculation of memory pressure with automatic
// large-memory thresholds.
TEST_F(WinMemoryPressureMonitorTest, CalculateCurrentMemoryPressureLevelLarge) {
static const int kModerateMb =
MemoryPressureMonitor::kLargeMemoryDefaultModerateThresholdMb;
static const int kCriticalMb =
MemoryPressureMonitor::kLargeMemoryDefaultCriticalThresholdMb;
TestMemoryPressureMonitor monitor(true); // Large-memory model.
EXPECT_EQ(kModerateMb, monitor.moderate_threshold_mb());
EXPECT_EQ(kCriticalMb, monitor.critical_threshold_mb());
ASSERT_NO_FATAL_FAILURE(CalculateCurrentMemoryPressureLevelTest(&monitor));
}
// Tests the fundamental direct calculation of memory pressure with manually
// specified threshold levels.
TEST_F(WinMemoryPressureMonitorTest,
CalculateCurrentMemoryPressureLevelCustom) {
static const int kSystemMb = 512;
static const int kModerateMb = 256;
static const int kCriticalMb = 128;
TestMemoryPressureMonitor monitor(kSystemMb, kModerateMb, kCriticalMb);
EXPECT_EQ(kModerateMb, monitor.moderate_threshold_mb());
EXPECT_EQ(kCriticalMb, monitor.critical_threshold_mb());
ASSERT_NO_FATAL_FAILURE(CalculateCurrentMemoryPressureLevelTest(&monitor));
}
// This test tests the various transition states from memory pressure, looking
// for the correct behavior on event reposting as well as state updates.
TEST_F(WinMemoryPressureMonitorTest, CheckMemoryPressure) {
// Large-memory.
testing::StrictMock<TestMemoryPressureMonitor> monitor(true);
MemoryPressureListener listener(
base::Bind(&TestMemoryPressureMonitor::OnMemoryPressure,
base::Unretained(&monitor)));
// Checking the memory pressure at 0% load should not produce any
// events.
monitor.SetNone();
monitor.CheckMemoryPressure();
RunLoop().RunUntilIdle();
EXPECT_EQ(MemoryPressureListener::MEMORY_PRESSURE_LEVEL_NONE,
monitor.GetCurrentPressureLevel());
// Setting the memory level to 80% should produce a moderate pressure level.
EXPECT_CALL(monitor,
OnMemoryPressure(MemoryPressureListener::
MEMORY_PRESSURE_LEVEL_MODERATE));
monitor.SetModerate();
monitor.CheckMemoryPressure();
RunLoop().RunUntilIdle();
EXPECT_EQ(MemoryPressureListener::MEMORY_PRESSURE_LEVEL_MODERATE,
monitor.GetCurrentPressureLevel());
testing::Mock::VerifyAndClearExpectations(&monitor);
// Check that the event gets reposted after a while.
for (int i = 0; i < monitor.kModeratePressureCooldownCycles; ++i) {
if (i + 1 == monitor.kModeratePressureCooldownCycles) {
EXPECT_CALL(monitor,
OnMemoryPressure(MemoryPressureListener::
MEMORY_PRESSURE_LEVEL_MODERATE));
}
monitor.CheckMemoryPressure();
RunLoop().RunUntilIdle();
EXPECT_EQ(MemoryPressureListener::MEMORY_PRESSURE_LEVEL_MODERATE,
monitor.GetCurrentPressureLevel());
testing::Mock::VerifyAndClearExpectations(&monitor);
}
// Setting the memory usage to 99% should produce critical levels.
EXPECT_CALL(monitor,
OnMemoryPressure(MemoryPressureListener::
MEMORY_PRESSURE_LEVEL_CRITICAL));
monitor.SetCritical();
monitor.CheckMemoryPressure();
RunLoop().RunUntilIdle();
EXPECT_EQ(MemoryPressureListener::MEMORY_PRESSURE_LEVEL_CRITICAL,
monitor.GetCurrentPressureLevel());
testing::Mock::VerifyAndClearExpectations(&monitor);
// Calling it again should immediately produce a second call.
EXPECT_CALL(monitor,
OnMemoryPressure(MemoryPressureListener::
MEMORY_PRESSURE_LEVEL_CRITICAL));
monitor.CheckMemoryPressure();
RunLoop().RunUntilIdle();
EXPECT_EQ(MemoryPressureListener::MEMORY_PRESSURE_LEVEL_CRITICAL,
monitor.GetCurrentPressureLevel());
testing::Mock::VerifyAndClearExpectations(&monitor);
// When lowering the pressure again there should be a notification and the
// pressure should go back to moderate.
EXPECT_CALL(monitor,
OnMemoryPressure(MemoryPressureListener::
MEMORY_PRESSURE_LEVEL_MODERATE));
monitor.SetModerate();
monitor.CheckMemoryPressure();
RunLoop().RunUntilIdle();
EXPECT_EQ(MemoryPressureListener::MEMORY_PRESSURE_LEVEL_MODERATE,
monitor.GetCurrentPressureLevel());
testing::Mock::VerifyAndClearExpectations(&monitor);
// Check that the event gets reposted after a while.
for (int i = 0; i < monitor.kModeratePressureCooldownCycles; ++i) {
if (i + 1 == monitor.kModeratePressureCooldownCycles) {
EXPECT_CALL(monitor,
OnMemoryPressure(MemoryPressureListener::
MEMORY_PRESSURE_LEVEL_MODERATE));
}
monitor.CheckMemoryPressure();
RunLoop().RunUntilIdle();
EXPECT_EQ(MemoryPressureListener::MEMORY_PRESSURE_LEVEL_MODERATE,
monitor.GetCurrentPressureLevel());
testing::Mock::VerifyAndClearExpectations(&monitor);
}
// Going down to no pressure should not produce an notification.
monitor.SetNone();
monitor.CheckMemoryPressure();
RunLoop().RunUntilIdle();
EXPECT_EQ(MemoryPressureListener::MEMORY_PRESSURE_LEVEL_NONE,
monitor.GetCurrentPressureLevel());
testing::Mock::VerifyAndClearExpectations(&monitor);
}
} // namespace win
} // namespace base
|