This repository has been archived by the owner on Jan 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
url_pair_diff.py
executable file
·180 lines (146 loc) · 5.24 KB
/
url_pair_diff.py
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
#!/usr/bin/env python
# Copyright 2013 Brett Slatkin
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Utility for doing a diff between a pair of URLs.
Example usage:
./dpxdt/tools/url_pair_diff.py \
--upload_build_id=1234 \
--release_server_prefix=https://my-dpxdt-apiserver.example.com/api \
--release_client_id=<your api key> \
--release_client_secret=<your api secret> \
http://www.example.com/my/before/page \
http://www.example.com/my/after/page
"""
import HTMLParser
import Queue
import datetime
import json
import logging
import os
import re
import shutil
import sys
import tempfile
import urlparse
# Local Libraries
import gflags
FLAGS = gflags.FLAGS
# Local modules
from dpxdt.client import fetch_worker
from dpxdt.client import release_worker
from dpxdt.client import workers
import flags
class UrlPairDiff(workers.WorkflowItem):
"""Workflow for diffing a pair of URLs.
Args:
new_url: URL of the newest and best version of the page.
baseline_url: URL of the baseline to compare to.
upload_build_id: Optional. Build ID of the site being compared. When
supplied a new release will be cut for this build comparing it
to the last good release.
upload_release_name: Optional. Release name to use for the build. When
not supplied, a new release based on the current time will be
created.
heartbeat: Function to call with progress status.
"""
def run(self,
new_url,
baseline_url,
upload_build_id,
upload_release_name=None,
heartbeat=None):
# TODO: Make the default release name prettier.
if not upload_release_name:
upload_release_name = str(datetime.datetime.utcnow())
yield heartbeat('Creating release %s' % upload_release_name)
release_number = yield release_worker.CreateReleaseWorkflow(
upload_build_id, upload_release_name, new_url)
config_dict = {
'viewportSize': {
'width': 1280,
'height': 1024,
}
}
if FLAGS.width:
config_dict['viewportSize']['width'] = FLAGS.width
if FLAGS.height:
config_dict['viewportSize']['height'] = FLAGS.height
if FLAGS.inject_css:
config_dict['injectCss'] = FLAGS.inject_css
if FLAGS.inject_js:
config_dict['injectJs'] = FLAGS.inject_js
if FLAGS.http_username:
config_dict['httpUserName'] = FLAGS.http_username
if FLAGS.http_password:
config_dict['httpPassword'] = FLAGS.http_password
if FLAGS.command_executor:
config_dict['command_executor'] = FLAGS.command_executor
if FLAGS.desired_capabilities:
config_dict['desired_capabilities'] = json.loads(
FLAGS.desired_capabilities)
config_data = json.dumps(config_dict)
url_parts = urlparse.urlparse(new_url)
yield heartbeat('Requesting captures')
yield release_worker.RequestRunWorkflow(
upload_build_id,
upload_release_name,
release_number,
url_parts.path or '/',
new_url,
config_data,
ref_url=baseline_url,
ref_config_data=config_data)
yield heartbeat('Marking runs as complete')
release_url = yield release_worker.RunsDoneWorkflow(
upload_build_id, upload_release_name, release_number)
yield heartbeat('Results viewable at: %s' % release_url)
def real_main(new_url=None,
baseline_url=None,
upload_build_id=None,
upload_release_name=None):
"""Runs the ur_pair_diff."""
coordinator = workers.get_coordinator()
fetch_worker.register(coordinator)
coordinator.start()
item = UrlPairDiff(
new_url,
baseline_url,
upload_build_id,
upload_release_name=upload_release_name,
heartbeat=workers.PrintWorkflow)
item.root = True
coordinator.input_queue.put(item)
coordinator.wait_one()
coordinator.stop()
coordinator.join()
def main(argv):
try:
argv = FLAGS(argv)
except gflags.FlagsError, e:
print '%s\nUsage: %s ARGS\n%s' % (e, sys.argv[0], FLAGS)
sys.exit(1)
if len(argv) != 3:
print 'Must supply two URLs as arguments.'
sys.exit(1)
assert FLAGS.upload_build_id
assert FLAGS.release_server_prefix
if FLAGS.verbose:
logging.getLogger().setLevel(logging.DEBUG)
real_main(
new_url=argv[1],
baseline_url=argv[2],
upload_build_id=FLAGS.upload_build_id,
upload_release_name=FLAGS.upload_release_name)
if __name__ == '__main__':
main(sys.argv)