summaryrefslogtreecommitdiffstats
path: root/tools/perf/page_sets/polymer.py
blob: 84b57d330f67a1f38eba9ea375a8b278137b5862 (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
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
# Copyright 2014 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.
# pylint: disable=W0401,W0614
from telemetry.page.actions.all_page_actions import *
from telemetry.page import page as page_module
from telemetry.page import page_set as page_set_module

class PolymerPage(page_module.Page):

  def __init__(self, url, page_set):
    super(PolymerPage, self).__init__(
      url=url,
      page_set=page_set)
    self.archive_data_file = "data/polymer.json"
    self.script_to_evaluate_on_commit = '''
      document.addEventListener("polymer-ready", function() {
        window.__polymer_ready = true;
      });
    '''

  def RunNavigateSteps(self, action_runner):
    action_runner.NavigateToPage(self)
    action_runner.RunAction(WaitAction(
      { 'javascript': "window.__polymer_ready" }))


class PolymerCalculatorPage(PolymerPage):

  def __init__(self, page_set):
    super(PolymerCalculatorPage, self).__init__(
      url='http://localhost:8000/components/paper-calculator/demo.html',
      page_set=page_set)

  def RunSmoothness(self, action_runner):
    self.TapButton(action_runner)
    self.SlidePanel(action_runner)

  def TapButton(self, action_runner):
    action_runner.RunAction(TapAction(
      {
        'element_function': '''
          function(callback) {
            callback(
              document.querySelector(
                'body /deep/ #outerPanels'
              ).querySelector(
                '#standard'
              ).shadowRoot.querySelector(
                'paper-calculator-key[label="5"]'
              )
            );
          }''',
        'wait_after': { 'seconds': 2 }
      }))

  def SlidePanel(self, action_runner):
    action_runner.RunAction(SwipeAction(
      {
        'left_start_percentage': 0.1,
        'distance': 300,
        'direction': 'left',
        'wait_after': {
          'javascript': '''
            var outer = document.querySelector("body /deep/ #outerPanels");
            outer.opened || outer.wideMode;
          '''
        },
        'top_start_percentage': 0.2,
        'element_function': '''
          function(callback) {
            callback(
              document.querySelector(
                'body /deep/ #outerPanels'
              ).querySelector(
                '#advanced'
              ).shadowRoot.querySelector(
                '.handle-bar'
              )
            );
          }''',
        'speed': 5000
      }))


class PolymerShadowPage(PolymerPage):

  def __init__(self, page_set):
    super(PolymerShadowPage, self).__init__(
      url='http://localhost:8000/components/paper-shadow/demo.html',
      page_set=page_set)
    self.archive_data_file = 'data/polymer.json'

  def RunSmoothness(self, action_runner):
    action_runner.ExecuteJavaScript(
        "document.getElementById('fab').scrollIntoView()")
    action_runner.RunAction(WaitAction(
      {
        'seconds': 5
      }))
    self.AnimateShadow(action_runner, 'card')
    self.AnimateShadow(action_runner, 'fab')

  def AnimateShadow(self, action_runner, eid):
    for i in range(1, 6):
      action_runner.ExecuteJavaScript(
          'document.getElementById("{0}").z = {1}'.format(eid, i))
      action_runner.RunAction(WaitAction(
        {
          'seconds': 1
        }))


class PolymerPageSet(page_set_module.PageSet):

  def __init__(self):
    super(PolymerPageSet, self).__init__(
      user_agent_type='mobile',
      archive_data_file='data/polymer.json')

    self.AddPage(PolymerCalculatorPage(self))
    self.AddPage(PolymerShadowPage(self))