2018-07-06 01:41:08 +02:00
|
|
|
#! /usr/bin/env sh
|
|
|
|
|
2020-08-07 13:07:28 +02:00
|
|
|
# Copyright The Mbed TLS Contributors
|
2020-05-26 01:54:15 +02:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
|
|
# 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.
|
2020-08-12 02:31:02 +02:00
|
|
|
|
|
|
|
# Purpose: check Python files for potential programming errors or maintenance
|
|
|
|
# hurdles. Run pylint to detect some potential mistakes and enforce PEP8
|
|
|
|
# coding standards. If available, run mypy to perform static type checking.
|
|
|
|
|
|
|
|
# We'll keep going on errors and report the status at the end.
|
|
|
|
ret=0
|
2018-07-06 01:41:08 +02:00
|
|
|
|
2020-03-24 15:07:57 +01:00
|
|
|
if type python3 >/dev/null 2>/dev/null; then
|
|
|
|
PYTHON=python3
|
2020-03-16 12:30:46 +01:00
|
|
|
else
|
2020-03-24 15:07:57 +01:00
|
|
|
PYTHON=python
|
2020-03-16 12:30:46 +01:00
|
|
|
fi
|
|
|
|
|
2021-01-19 21:42:05 +01:00
|
|
|
check_version () {
|
|
|
|
$PYTHON - "$2" <<EOF
|
|
|
|
import packaging.version
|
|
|
|
import sys
|
|
|
|
import $1 as package
|
|
|
|
actual = package.__version__
|
|
|
|
wanted = sys.argv[1]
|
|
|
|
if packaging.version.parse(actual) < packaging.version.parse(wanted):
|
|
|
|
sys.stderr.write("$1: version %s is too old (want %s)\n" % (actual, wanted))
|
|
|
|
exit(1)
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
2021-01-06 17:02:33 +01:00
|
|
|
can_pylint () {
|
2021-01-19 21:19:02 +01:00
|
|
|
# Pylint 1.5.2 from Ubuntu 16.04 is too old:
|
|
|
|
# E: 34, 0: Unable to import 'mbedtls_dev' (import-error)
|
2021-01-06 17:02:33 +01:00
|
|
|
# Pylint 1.8.3 from Ubuntu 18.04 passed on the first commit containing this line.
|
2021-01-19 21:42:05 +01:00
|
|
|
check_version pylint 1.8.3
|
2021-01-06 17:02:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
can_mypy () {
|
2021-01-19 21:58:09 +01:00
|
|
|
# mypy 0.770 is too old:
|
|
|
|
# tests/scripts/test_psa_constant_names.py:34: error: Cannot find implementation or library stub for module named 'mbedtls_dev'
|
|
|
|
# mypy 0.780 from pip passed on the first commit containing this line.
|
|
|
|
check_version mypy.version 0.780
|
2021-01-06 17:02:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# With just a --can-xxx option, check whether the tool for xxx is available
|
|
|
|
# with an acceptable version, and exit without running any checks. The exit
|
|
|
|
# status is true if the tool is available and acceptable and false otherwise.
|
|
|
|
if [ "$1" = "--can-pylint" ]; then
|
|
|
|
can_pylint
|
|
|
|
exit
|
|
|
|
elif [ "$1" = "--can-mypy" ]; then
|
|
|
|
can_mypy
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2021-01-19 21:19:25 +01:00
|
|
|
echo 'Running pylint ...'
|
2020-12-11 00:58:48 +01:00
|
|
|
$PYTHON -m pylint -j 2 scripts/mbedtls_dev/*.py scripts/*.py tests/scripts/*.py || {
|
2020-08-12 02:31:02 +02:00
|
|
|
echo >&2 "pylint reported errors"
|
|
|
|
ret=1
|
|
|
|
}
|
|
|
|
|
|
|
|
# Check types if mypy is available
|
2021-01-19 21:43:24 +01:00
|
|
|
if can_mypy; then
|
2020-08-12 02:31:02 +02:00
|
|
|
echo
|
|
|
|
echo 'Running mypy ...'
|
2021-01-19 21:45:32 +01:00
|
|
|
$PYTHON -m mypy scripts/*.py tests/scripts/*.py ||
|
2020-08-12 02:31:02 +02:00
|
|
|
ret=1
|
|
|
|
fi
|
|
|
|
|
|
|
|
exit $ret
|