You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.4 KiB
43 lines
1.4 KiB
# Copyright 2019 The PDFium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
"""Presubmit script for pdfium.
|
|
|
|
See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts
|
|
for more details about the presubmit API built into depot_tools.
|
|
"""
|
|
|
|
def _CheckApiTestFile(input_api, output_api):
|
|
"""Checks that the public headers match the API tests."""
|
|
api_test_file = input_api.os_path.normpath('fpdfsdk/fpdf_view_c_api_test.c')
|
|
|
|
def is_api_test_file(f):
|
|
return input_api.os_path.normpath(f.LocalPath()) == api_test_file
|
|
|
|
if all([not is_api_test_file(f) for f in input_api.AffectedSourceFiles([])]):
|
|
return []
|
|
|
|
src_path = input_api.os_path.dirname(input_api.PresubmitLocalPath())
|
|
check_script = input_api.os_path.join(
|
|
src_path, 'testing' , 'tools' , 'api_check.py')
|
|
cmd = [input_api.python_executable, check_script]
|
|
try:
|
|
input_api.subprocess.check_output(cmd)
|
|
return []
|
|
except input_api.subprocess.CalledProcessError as error:
|
|
return [output_api.PresubmitError('api_check.py failed:',
|
|
long_text=error.output)]
|
|
|
|
|
|
def CheckChangeOnUpload(input_api, output_api):
|
|
results = []
|
|
results += _CheckApiTestFile(input_api, output_api)
|
|
return results
|
|
|
|
|
|
def CheckChangeOnCommit(input_api, output_api):
|
|
results = []
|
|
results += _CheckApiTestFile(input_api, output_api)
|
|
return results
|