A script and CI job for testing the compiler with different locales

This commit is contained in:
Kamil Śliwak 2022-02-25 19:21:58 +01:00 committed by wechman
parent 9dc26af829
commit 2d834eaf67
3 changed files with 99 additions and 0 deletions

View File

@ -1051,6 +1051,20 @@ jobs:
t_ubu_release_cli: &t_ubu_release_cli
<<: *t_ubu_cli
t_ubu_locale:
<<: *base_ubuntu2004_small
steps:
- checkout
- attach_workspace:
at: build
- run:
name: Install all locales
command: |
apt update --assume-yes
apt install locales-all --assume-yes --no-install-recommends
- run: test/localeTest.sh build/solc/solc
- gitter_notify_failure_unless_pr
t_ubu_asan_cli:
# Runs slightly faster on medium but we only run it nightly so efficiency matters more.
<<: *base_ubuntu2004_small
@ -1435,6 +1449,7 @@ workflows:
# Ubuntu build and tests
- b_ubu: *workflow_trigger_on_tags
- t_ubu_cli: *workflow_ubuntu2004
- t_ubu_locale: *workflow_ubuntu2004
- t_ubu_soltest_all: *workflow_ubuntu2004
- t_ubu_soltest_enforce_yul: *workflow_ubuntu2004
- b_ubu_clang: *workflow_trigger_on_tags

View File

@ -13,6 +13,7 @@ Bugfixes:
* Yul IR Code Generation: Optimize embedded creation code with correct settings. This fixes potential mismatches between the constructor code of a contract compiled in isolation and the bytecode in ``type(C).creationCode``, resp. the bytecode used for ``new C(...)``.
* Fix internal error for locales with unusual capitalization rules. Locale set in the environment is now completely ignored.
### 0.8.12 (2022-02-16)
Language Features:

83
test/localeTest.sh Executable file
View File

@ -0,0 +1,83 @@
#!/usr/bin/env bash
#------------------------------------------------------------------------------
# Script that tests that the compiler works correctly regardless of the locale
# setting. As a prerequisite, the following locales must be enabled system-wide:
# C, tr_TR.utf8, ja_JP.eucjp.
#
# Usage:
# <script name>.sh <path to solc binary>
#
# ------------------------------------------------------------------------------
# This file is part of solidity.
#
# solidity is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# solidity is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with solidity. If not, see <http://www.gnu.org/licenses/>
#
# (c) 2022 solidity contributors.
#------------------------------------------------------------------------------
set -eo pipefail
REPO_ROOT=$(cd "$(dirname "$0")/.." && pwd)
# shellcheck source=scripts/common.sh
source "${REPO_ROOT}/scripts/common.sh"
solc_binary="$1"
(( $# == 1 )) || fail "Expected exactly 1 argument."
# This test won't work without some specific locales installed
locale -a | grep -e "^tr_TR\.utf8$" || fail "Locale 'tr_TR.utf8' not available."
locale -a | grep -e "^ja_JP\.eucjp$" || fail "Locale 'ja_JP.eucjp' not available."
locale -a | grep -e "^C$" || fail "Locale 'C' not available."
locale -a | grep -e "^__invalid_locale__$" && fail "'__invalid_locale__' is not supposed to be a valid locale name."
i="i"
test_code=$(cat <<'EOF'
// SPDX-License-Identifier: GPL-3.0
pragma solidity *;
library L {}
EOF
)
# Whatever locale is set by default.
printTask "Testing the default locale..."
default_locale_output=$(echo "$test_code" | "$solc_binary" - --bin)
# Plain C locale
printTask "Testing the C locale..."
export LC_ALL=C
[[ ${i^^} == "I" ]] || assertFail
c_locale_output=$(echo "$test_code" | "$solc_binary" - --bin)
diff_values "$default_locale_output" "$c_locale_output"
# Turkish locale, which has capitalization rules (`i` -> `İ` and `I` to `ı`) that can make identifiers invalid.
printTask "Testing the Turkish locale..."
export LC_ALL=tr_TR.utf8
[[ ${i^^} != "I" ]] || assertFail
tr_locale_output=$(echo "$test_code" | "$solc_binary" - --bin)
diff_values "$default_locale_output" "$tr_locale_output"
# A different locale, that should not do anything special to ASCII chars.
printTask "Testing the Japanese locale..."
export LC_ALL=ja_JP.eucjp
[[ ${i^^} == "I" ]] || assertFail
ja_locale_output=$(echo "$test_code" | "$solc_binary" - --bin)
diff_values "$default_locale_output" "$ja_locale_output"
# The compiler should not crash if the locale is not valid.
printTask "Testing an invalid locale..."
export LC_ALL=__invalid_locale__ || true
invalid_locale_output=$(echo "$test_code" | "$solc_binary" - --bin)
diff_values "$default_locale_output" "$invalid_locale_output"