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
|
#!/usr/bin/env python
# Copyright (c) 2012 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.
import logging
import devtools_test_base
import pyauto_functional # Must be imported before pyauto
import pyauto
import pyauto_utils
class DevToolsNativeMemorySnapshotTest(devtools_test_base.DevToolsTestBase):
"""Test for tracking unknown share in the DevTools native memory snapshots.
This test navigates the browser to a test page, then takes native memory
snapshot over remote debugging protocol and prints render process private
memory size and unknown size extracted from the snapshot. It is used to
track size of the memory that is not counted by DevTools memory
instrumentation.
The test uses Web Page Replay server as a proxy that allows to replay
the same state of the test pages and avoid heavy network traffic on the
real web sites. See webpagereplay.ReplayServer documentation to learn how
to record new page archives.
"""
def testNytimes(self):
self.RunTestWithUrl('http://www.nytimes.com/')
def testCnn(self):
self.RunTestWithUrl('http://www.cnn.com/')
def testGoogle(self):
self.RunTestWithUrl('http://www.google.com/')
def PrintTestResult(self, hostname, snapshot):
total = snapshot.GetProcessPrivateMemorySize()
unknown = snapshot.GetUnknownSize()
logging.info('Got data for: %s, total size = %d, unknown size = %d' %
(hostname, total, unknown))
graph_name = 'Native Memory Unknown Bytes'
pyauto_utils.PrintPerfResult(graph_name, hostname + ': total', total,
'bytes')
pyauto_utils.PrintPerfResult(graph_name, hostname + ': unknown', unknown,
'bytes')
if total == 0:
logging.info('No total process memory size')
return
unknown_percent = (float(unknown) / total) * 100
unknown_percent_string = '%.1f' % unknown_percent
pyauto_utils.PrintPerfResult('Native Memory Unknown %', hostname,
unknown_percent_string, '%')
if __name__ == '__main__':
pyauto_functional.Main()
|