forked from sqlfluff/sqlfluff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.py
283 lines (251 loc) · 10.4 KB
/
util.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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
#!/usr/bin/env python
"""Utility strings for use during deployment.
NB: This is not part of the core sqlfluff code.
"""
# This contains various utility scripts
import shutil
import os
import click
import time
import subprocess
import sys
import yaml
import requests
import re
from ghapi.all import GhApi
@click.group()
def cli():
"""Launch the utility cli."""
pass
@cli.command()
@click.option("--path", default=".test-reports")
def clean_tests(path):
"""Clear up the tests directory.
NB: Using scripts allows platform independence
Makes a new one afterward
"""
try:
shutil.rmtree(path)
click.echo(f"Removed {path!r}...")
# OSError is for python 27
# in py36 its FileNotFoundError (but that inherits from IOError, which exists in
# py27)
except OSError:
click.echo(f"Directory {path!r} does not exist. Skipping...")
os.mkdir(path)
click.echo(f"Created {path!r}")
@cli.command()
@click.argument("cmd", nargs=-1)
@click.option("--from-file", "-f", default=None)
@click.option("--runs", default=3, show_default=True)
def benchmark(cmd, runs, from_file):
"""Benchmark how long it takes to run a particular command."""
if from_file:
with open(from_file) as yaml_file:
parsed = yaml.load(yaml_file.read(), Loader=yaml.FullLoader)
benchmarks = parsed["benchmarks"]
click.echo(repr(benchmarks))
elif cmd:
benchmarks = [{"name": str(hash(cmd)), "cmd": cmd}]
else:
click.echo("No command or file specified!")
sys.exit(1)
commit_hash = None
post_results = False
# Try and detect a CI environment
if "CI" in os.environ:
click.echo("CI detected!")
# available_vars = [var for var in os.environ.keys()]
# if var.startswith('CIRCLE')
# click.echo("Available keys: {0!r}".format(available_vars))
commit_hash = os.environ.get("GITHUB_SHA", None)
post_results = True
click.echo(f"Commit hash is: {commit_hash!r}")
all_results = {}
for run_no in range(runs):
click.echo(f"===== Run #{run_no + 1} =====")
results = {}
for benchmark in benchmarks:
# Iterate through benchmarks
click.echo("Starting benchmark: {!r}".format(benchmark["name"]))
t0 = time.monotonic()
click.echo("===START PROCESS OUTPUT===")
process = subprocess.run(benchmark["cmd"])
click.echo("===END PROCESS OUTPUT===")
t1 = time.monotonic()
if process.returncode != 0:
if benchmark["cmd"][0] == "sqlfluff" and benchmark["cmd"][1] == "fix":
# Allow fix to fail as not all our benchmark errors are fixable
click.echo(
f"Fix command failed with return code: {process.returncode}"
)
else:
click.echo(f"Command failed with return code: {process.returncode}")
sys.exit(process.returncode)
else:
duration = t1 - t0
click.echo(f"Process completed in {duration:.4f}s")
results[benchmark["name"]] = duration
if post_results:
click.echo(f"Posting results: {results}")
api_key = os.environ["SQLFLUFF_BENCHMARK_API_KEY"]
resp = requests.post(
"https://f32cvv8yh3.execute-api.eu-west-1.amazonaws.com/result/gh"
"/{repo}/{commit}".format(
# TODO: update the stats collector eventually to allow the new repo
# path
repo="alanmcruickshank/sqlfluff",
commit=commit_hash,
),
params={"key": api_key},
json=results,
)
click.echo(resp.text)
all_results[run_no] = results
click.echo("===== Done =====")
for run_no in all_results:
click.echo("Run {:>5}: {}".format(f"#{run_no}", all_results[run_no]))
@cli.command()
@click.option("--new_version_num")
def prepare_release(new_version_num):
"""Change version number in the cfg files."""
api = GhApi(
owner=os.environ["GITHUB_REPOSITORY_OWNER"],
repo="sqlfluff",
token=os.environ["GITHUB_TOKEN"],
)
releases = api.repos.list_releases()
latest_draft_release = None
for rel in releases:
if rel["draft"]:
latest_draft_release = rel
break
if not latest_draft_release:
raise ValueError("No draft release found!")
# Linkify the PRs and authors
draft_body_parts = latest_draft_release["body"].split("\n")
potential_new_contributors = []
for i, p in enumerate(draft_body_parts):
draft_body_parts[i] = re.sub(
r"\(#([0-9]*)\) @([^ ]*)$",
r"[#\1](https://github.com/sqlfluff/sqlfluff/pull/\1) [@\2](https://github.com/\2)", # noqa E501
p,
)
new_contrib_string = re.sub(
r".*\(#([0-9]*)\) @([^ ]*)$",
r"* [@\2](https://github.com/\2) made their first contribution in [#\1](https://github.com/sqlfluff/sqlfluff/pull/\1)", # noqa E501
p,
)
if new_contrib_string.startswith("* "):
new_contrib_name = re.sub(r"\* \[(.*?)\].*", r"\1", new_contrib_string)
potential_new_contributors.append(
{"name": new_contrib_name, "line": new_contrib_string}
)
whats_changed_text = "\n".join(draft_body_parts)
# Find the first commit for each contributor in this release
potential_new_contributors.reverse()
seen_contributors = set()
deduped_potential_new_contributors = []
for c in potential_new_contributors:
if c["name"] not in seen_contributors:
seen_contributors.add(c["name"])
deduped_potential_new_contributors.append(c)
input_changelog = open("CHANGELOG.md", encoding="utf8").readlines()
write_changelog = open("CHANGELOG.md", "w", encoding="utf8")
for i, line in enumerate(input_changelog):
write_changelog.write(line)
if "DO NOT DELETE THIS LINE" in line:
existing_entry_start = i + 2
# If the release is already in the changelog, update it
if f"## [{new_version_num}]" in input_changelog[existing_entry_start]:
input_changelog[
existing_entry_start
] = f"## [{new_version_num}] - {time.strftime('%Y-%m-%d')}\n"
# Delete the existing What’s Changed and New Contributors sections
remaining_changelog = input_changelog[existing_entry_start:]
existing_whats_changed_start = (
next(
j
for j, line in enumerate(remaining_changelog)
if line.startswith("## What’s Changed")
)
+ existing_entry_start
)
existing_new_contributors_start = (
next(
j
for j, line in enumerate(remaining_changelog)
if line.startswith("## New Contributors")
)
+ existing_entry_start
)
existing_new_contributors_length = (
next(
j
for j, line in enumerate(
input_changelog[existing_new_contributors_start:]
)
if line.startswith("## [")
)
- 1
)
del input_changelog[
existing_whats_changed_start : existing_new_contributors_start
+ existing_new_contributors_length
]
# Now that we've cleared the previous sections, we will accurately
# find if contributors have been previously mentioned in the changelog
new_contributor_lines = []
input_changelog_str = "".join(
input_changelog[existing_whats_changed_start:]
)
for c in deduped_potential_new_contributors:
if c["name"] not in input_changelog_str:
new_contributor_lines.append(c["line"])
input_changelog[existing_whats_changed_start] = (
whats_changed_text
+ "\n\n## New Contributors\n"
+ "\n".join(new_contributor_lines)
+ "\n\n"
)
else:
write_changelog.write(
f"\n## [{new_version_num}] - {time.strftime('%Y-%m-%d')}\n\n## Highlights\n\n" # noqa E501
)
write_changelog.write(whats_changed_text)
write_changelog.write("\n## New Contributors\n\n")
# Ensure contributor names don't appear in input_changelog list
new_contributor_lines = []
input_changelog_str = "".join(input_changelog)
for c in deduped_potential_new_contributors:
if c["name"] not in input_changelog_str:
new_contributor_lines.append(c["line"])
write_changelog.write("\n".join(new_contributor_lines))
write_changelog.write("\n")
write_changelog.close()
for filename in ["setup.cfg", "plugins/sqlfluff-templater-dbt/setup.cfg"]:
input_file = open(filename, "r").readlines()
write_file = open(filename, "w")
for line in input_file:
for key in ["stable_version", "version"]:
if line.startswith(key):
line = f"{key} = {new_version_num}\n"
break
if line.startswith(" sqlfluff=="):
line = f" sqlfluff=={new_version_num}\n"
write_file.write(line)
write_file.close()
for filename in ["docs/source/gettingstarted.rst"]:
input_file = open(filename, "r").readlines()
write_file = open(filename, "w")
change_next_line = False
for line in input_file:
if change_next_line:
line = f" {new_version_num}\n"
change_next_line = False
elif line.startswith(" $ sqlfluff version"):
change_next_line = True
write_file.write(line)
write_file.close()
if __name__ == "__main__":
cli()