Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / tools / telemetry / telemetry / core / backends / chrome / inspector_memory_unittest.py
index 22f2a98..e936152 100644 (file)
@@ -2,25 +2,30 @@
 # Use of this source code is governed by a BSD-style license that can be
 # found in the LICENSE file.
 
-import logging
-
+from telemetry import benchmark
 from telemetry.unittest import tab_test_case
 
 
 class InspectorMemoryTest(tab_test_case.TabTestCase):
 
+  @benchmark.Enabled('has tabs')
+  @benchmark.Disabled  # http://crbug.com/422244
   def testGetDOMStats(self):
-    if not self._browser.supports_tab_control:
-      logging.warning('Browser does not support tab control, skipping test.')
-      return
-
     # Due to an issue with CrOS, we create a new tab here rather than
     # using the existing tab to get a consistent starting page on all platforms.
     self._tab = self._browser.tabs.New()
 
     self.Navigate('dom_counter_sample.html')
 
+    # Document_count > 1 indicates that WebCore::Document loaded in Chrome
+    # is leaking! The baseline should exactly match the numbers on:
+    # unittest_data/dom_counter_sample.html
+    # Please contact kouhei@, hajimehoshi@ when rebaselining.
     counts = self._tab.dom_stats
-    self.assertEqual(counts['document_count'], 1)
-    self.assertEqual(counts['node_count'], 14)
-    self.assertEqual(counts['event_listener_count'], 2)
+    self.assertEqual(counts['document_count'], 1,
+        'Document leak is detected! '+
+        'The previous document is likely retained unexpectedly.')
+    self.assertEqual(counts['node_count'], 14,
+        'Node leak is detected!')
+    self.assertEqual(counts['event_listener_count'], 2,
+        'EventListener leak is detected!')