Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / tools / telemetry / telemetry / core / backends / chrome / inspector_memory_unittest.py
1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 from telemetry import test
6 from telemetry.core import util
7 from telemetry.unittest import tab_test_case
8
9
10 class InspectorMemoryTest(tab_test_case.TabTestCase):
11   @test.Disabled('chromeos')
12   def testGetDOMStats(self):
13     self._browser.SetHTTPServerDirectories(util.GetUnittestDataDir())
14
15     # Due to an issue with CrOS, we create a new tab here rather than
16     # using self._tab to get a consistent starting page on all platforms
17     tab = self._browser.tabs.New()
18
19     tab.Navigate(
20       self._browser.http_server.UrlOf('dom_counter_sample.html'))
21     tab.WaitForDocumentReadyStateToBeComplete()
22
23     counts = tab.dom_stats
24     self.assertEqual(counts['document_count'], 2)
25     self.assertEqual(counts['node_count'], 18)
26     self.assertEqual(counts['event_listener_count'], 2)