File tree 5 files changed +24
-8
lines changed
.azure-pipelines-templates
5 files changed +24
-8
lines changed Original file line number Diff line number Diff line change 23
23
24
24
- script : |
25
25
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 {}"
27
27
workingDirectory: build
28
28
displayName: Test installed CCF
29
29
Original file line number Diff line number Diff line change @@ -743,8 +743,7 @@ int main(int argc, char** argv)
743
743
else
744
744
{
745
745
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" );
748
747
}
749
748
}
750
749
Original file line number Diff line number Diff line change @@ -172,8 +172,7 @@ def run(args):
172
172
test_add_node_from_snapshot (network , args , copy_ledger_read_only = False )
173
173
errors , _ = network .get_joined_nodes ()[- 1 ].stop ()
174
174
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
177
176
for s in errors
178
177
):
179
178
raise ValueError (
Original file line number Diff line number Diff line change @@ -38,7 +38,14 @@ if [ -f "${VERSION_FILE}" ]; then
38
38
BINARY_DIR=${PATH_HERE}
39
39
START_NETWORK_SCRIPT=" ${PATH_HERE} " /start_network.py
40
40
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
42
49
pip install --disable-pip-version-check -q -U -r " ${PATH_HERE} " /requirements.txt
43
50
else
44
51
# source tree
Original file line number Diff line number Diff line change @@ -17,6 +17,9 @@ echo "Install prefix is ${1}"
17
17
18
18
# Setup env
19
19
INSTALL_PREFIX=" $1 "
20
+ if [ ! -z " $PYTHON_PACKAGE_PATH " ]; then
21
+ PYTHON_PACKAGE_PATH=$( realpath -s " ${PYTHON_PACKAGE_PATH} " )
22
+ fi
20
23
working_dir=" nested/run"
21
24
rm -rf " $working_dir "
22
25
mkdir -p " $working_dir "
@@ -28,11 +31,19 @@ timeout --signal=SIGINT --kill-after=${network_live_time}s --preserve-status ${n
28
31
" $INSTALL_PREFIX " /bin/sandbox.sh -e release --verbose &
29
32
30
33
# 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
32
36
echo " Waiting for service to open..."
37
+ polls=$(( polls+ 1 ))
33
38
sleep 1
34
39
done
35
40
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
+
36
47
# Issue tutorial transactions to ephemeral network
37
48
python3.8 -m venv env
38
49
# shellcheck source=/dev/null
@@ -41,7 +52,7 @@ python -m pip install ../../../python
41
52
python ../../../python/tutorial.py ./workspace/sandbox_0/0.ledger/ ./workspace/sandbox_common/
42
53
43
54
# Test Python package CLI
44
- ../../../tests// test_python_cli.sh > test_python_cli.out
55
+ ../../../tests/test_python_cli.sh > test_python_cli.out
45
56
46
57
# Poll until service has died
47
58
while [ " $( service_http_status) " == " 200" ]; do
You can’t perform that action at this time.
0 commit comments