summaryrefslogtreecommitdiff
path: root/base/trace_event/process_memory_totals_dump_provider_unittest.cc
blob: f9bb6c071ce08552957ffb0d5b2c5e64990deb13 (plain)
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
// 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/trace_event/process_memory_totals_dump_provider.h"

#include "base/trace_event/process_memory_dump.h"
#include "base/trace_event/process_memory_totals.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace base {
namespace trace_event {

TEST(ProcessMemoryTotalsDumpProviderTest, DumpRSS) {
  auto pmtdp = ProcessMemoryTotalsDumpProvider::GetInstance();
  scoped_ptr<ProcessMemoryDump> pmd_before(new ProcessMemoryDump(nullptr));
  scoped_ptr<ProcessMemoryDump> pmd_after(new ProcessMemoryDump(nullptr));

  ProcessMemoryTotalsDumpProvider::rss_bytes_for_testing = 1024;
  pmtdp->OnMemoryDump(pmd_before.get());

  // Pretend that the RSS of the process increased of +1M.
  const size_t kAllocSize = 1048576;
  ProcessMemoryTotalsDumpProvider::rss_bytes_for_testing += kAllocSize;

  pmtdp->OnMemoryDump(pmd_after.get());

  ProcessMemoryTotalsDumpProvider::rss_bytes_for_testing = 0;

  ASSERT_TRUE(pmd_before->has_process_totals());
  ASSERT_TRUE(pmd_after->has_process_totals());

  const uint64 rss_before = pmd_before->process_totals()->resident_set_bytes();
  const uint64 rss_after = pmd_after->process_totals()->resident_set_bytes();

  EXPECT_NE(0U, rss_before);
  EXPECT_NE(0U, rss_after);

  EXPECT_EQ(rss_after - rss_before, kAllocSize);
}

}  // namespace trace_event
}  // namespace base