Skip to content

Commit ad353ea

Browse files
authored
Fix test_install.sh when testing a new CCF release (#2005)
1 parent 1c82123 commit ad353ea

File tree

5 files changed

+24
-8
lines changed

5 files changed

+24
-8
lines changed

.azure-pipelines-templates/install.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ steps:
2323
2424
- script: |
2525
sudo apt -y install ./$(pkgname)
26-
cat /tmp/install_prefix | xargs ./test_install.sh
26+
cat /tmp/install_prefix | xargs -i bash -c "PYTHON_PACKAGE_PATH=../python ./test_install.sh {}"
2727
workingDirectory: build
2828
displayName: Test installed CCF
2929

src/host/main.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -743,8 +743,7 @@ int main(int argc, char** argv)
743743
else
744744
{
745745
LOG_FAIL_FMT(
746-
"No snapshot found. Node will request transactions all historical "
747-
"transactions");
746+
"No snapshot found: Node will request all historical transactions");
748747
}
749748
}
750749

tests/reconfiguration.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,7 @@ def run(args):
172172
test_add_node_from_snapshot(network, args, copy_ledger_read_only=False)
173173
errors, _ = network.get_joined_nodes()[-1].stop()
174174
if not any(
175-
"No snapshot found. Node will request transactions all historical transactions"
176-
in s
175+
"No snapshot found: Node will request all historical transactions" in s
177176
for s in errors
178177
):
179178
raise ValueError(

tests/sandbox/sandbox.sh

+8-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,14 @@ if [ -f "${VERSION_FILE}" ]; then
3838
BINARY_DIR=${PATH_HERE}
3939
START_NETWORK_SCRIPT="${PATH_HERE}"/start_network.py
4040
VERSION=$(<"${VERSION_FILE}")
41-
pip install --disable-pip-version-check -q -U ccf=="$VERSION"
41+
if [ ! -z "${PYTHON_PACKAGE_PATH}" ]; then
42+
# With an install tree, the python package can be specified, e.g. when testing
43+
# an install just before it is released
44+
echo "Using python package: ${PYTHON_PACKAGE_PATH}"
45+
pip install --disable-pip-version-check -q -U -e "${PYTHON_PACKAGE_PATH}"
46+
else
47+
pip install --disable-pip-version-check -q -U ccf=="$VERSION"
48+
fi
4249
pip install --disable-pip-version-check -q -U -r "${PATH_HERE}"/requirements.txt
4350
else
4451
# source tree

tests/test_install.sh

+13-2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ echo "Install prefix is ${1}"
1717

1818
# Setup env
1919
INSTALL_PREFIX="$1"
20+
if [ ! -z "$PYTHON_PACKAGE_PATH" ]; then
21+
PYTHON_PACKAGE_PATH=$(realpath -s "${PYTHON_PACKAGE_PATH}")
22+
fi
2023
working_dir="nested/run"
2124
rm -rf "$working_dir"
2225
mkdir -p "$working_dir"
@@ -28,11 +31,19 @@ timeout --signal=SIGINT --kill-after=${network_live_time}s --preserve-status ${n
2831
"$INSTALL_PREFIX"/bin/sandbox.sh -e release --verbose &
2932

3033
# Poll until service is open
31-
while [ ! "$(service_http_status)" == "200" ]; do
34+
polls=0
35+
while [ ! "$(service_http_status)" == "200" ] && [ ${polls} -lt ${network_live_time} ]; do
3236
echo "Waiting for service to open..."
37+
polls=$((polls+1))
3338
sleep 1
3439
done
3540

41+
if [ ! "$(service_http_status)" == "200" ]; then
42+
echo "Error: Timeout waiting for service to open"
43+
kill "$(jobs -p)"
44+
exit 1
45+
fi
46+
3647
# Issue tutorial transactions to ephemeral network
3748
python3.8 -m venv env
3849
# shellcheck source=/dev/null
@@ -41,7 +52,7 @@ python -m pip install ../../../python
4152
python ../../../python/tutorial.py ./workspace/sandbox_0/0.ledger/ ./workspace/sandbox_common/
4253

4354
# Test Python package CLI
44-
../../../tests//test_python_cli.sh > test_python_cli.out
55+
../../../tests/test_python_cli.sh > test_python_cli.out
4556

4657
# Poll until service has died
4758
while [ "$(service_http_status)" == "200" ]; do

0 commit comments

Comments
 (0)