63 lines
1.7 KiB
Python
63 lines
1.7 KiB
Python
# Copyright (C) 2022 The Android Open Source Project
|
|
#
|
|
# 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.
|
|
|
|
from __future__ import print_function
|
|
import time
|
|
import subprocess
|
|
from os.path import relpath
|
|
|
|
|
|
USE_PYTHON3 = True
|
|
|
|
|
|
def RunAndReportIfLong(func, *args, **kargs):
|
|
start = time.time()
|
|
results = func(*args, **kargs)
|
|
end = time.time()
|
|
limit = 0.5 # seconds
|
|
name = func.__name__
|
|
runtime = end - start
|
|
if runtime > limit:
|
|
print("{} took >{:.2}s ({:.2}s)".format(name, limit, runtime))
|
|
return results
|
|
|
|
|
|
def CheckChange(input, output):
|
|
results = []
|
|
results += RunAndReportIfLong(CheckSqlTest, input, output)
|
|
return results
|
|
|
|
|
|
def CheckChangeOnUpload(input_api, output_api):
|
|
return CheckChange(input_api, output_api)
|
|
|
|
|
|
def CheckChangeOnCommit(input_api, output_api):
|
|
return CheckChange(input_api, output_api)
|
|
|
|
|
|
def CheckSqlTest(input_api, output_api):
|
|
|
|
def file_filter(x):
|
|
return input_api.FilterSourceFile(
|
|
x, files_to_check=('.*\.sql',), files_to_skip=('.*\_test\.sql',))
|
|
|
|
non_test_sql = input_api.AffectedSourceFiles(file_filter)
|
|
if non_test_sql:
|
|
return [
|
|
output_api.PresubmitError("SQL tests should be named *_test.sql:",
|
|
[f.LocalPath() for f in non_test_sql])
|
|
]
|
|
return []
|