Skip to content

Commit a50b7f2

Browse files
committed
improved s2i extended test
1 parent 50ab514 commit a50b7f2

File tree

3 files changed

+76
-20
lines changed

3 files changed

+76
-20
lines changed

test/extended/testdata/bindata.go

+38-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/extended/testdata/builds/build-secrets/s2i-binary-dir/.s2i/bin/assemble

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ fi
2222

2323
mkdir -p "${HOME}/testconfig"
2424
if [[ -f /tmp/configmap/foo ]]; then
25-
# Copy three secrets defined in configmap1 fixture to directory
25+
# Copy three configMap entries defined in configmap1 fixture to directory
2626
cp /tmp/configmap/* "${HOME}/testconfig"
2727
else
2828
echo "Unable to locate test-configmap fixture files"
@@ -31,7 +31,7 @@ fi
3131

3232
mkdir -p "${HOME}/testconfig2"
3333
if [[ -f configmap2/foo ]]; then
34-
# Copy three secrets defined in configmap2 fixture to directory
34+
# Copy three configMap entries defined in configmap2 fixture to directory
3535
cp configmap2/* "${HOME}/testconfig2"
3636
else
3737
echo "Unable to locate test-configmap-2 fixture files"

test/extended/testdata/builds/build-secrets/s2i-binary-dir/.s2i/bin/run

+36-8
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,46 @@
11
#!/bin/bash
22

33
# Ensure none of the build config inject secrets still exist in the file system
4-
for s in /tmp/secret? secret?; do
5-
if [[ -s "${s}" ]]; then
6-
echo "Found secret file which should have been removed: ${s}"
4+
5+
secrets=(secret1 secret2 secret3)
6+
configMaps=(foo this red)
7+
8+
function checkSecret() {
9+
dir=$1
10+
file=$2
11+
if [[ -a "${dir}/${file}" ]]; then
12+
if [[ -s "${dir}/${file}" ]]; then
13+
echo "Found secret file which should have been truncated: ${dir}/${file}"
14+
exit 1
15+
fi
16+
else
17+
echo "Secret file ${file} is missing from ${dir}."
718
exit 1
819
fi
9-
done
20+
}
1021

11-
for c in /tmp/configmap/* configmap2/*; do
12-
if [[ ! -s "${c}" ]]; then
13-
echo "Found configmap file which should not have been truncated: ${s}"
14-
exit 2
22+
function checkConfigMap() {
23+
dir=$1
24+
file=$2
25+
if [[ -a "${dir}/${file}" ]]; then
26+
if [[ ! -s "${dir}/${file}" ]]; then
27+
echo "Found empty configMap file which should not have been truncated: ${dir}/${file}"
28+
exit 1
29+
fi
30+
else
31+
echo "ConfigMap file ${file} is missing from ${dir}."
32+
exit 1
1533
fi
34+
}
35+
36+
for s in ${secrets[@]}; do
37+
checkSecret "/tmp" $s
38+
checkSecret "." $s
39+
done
40+
41+
for c in ${configMaps[@]}; do
42+
checkConfigMap "/tmp/configmap" $c
43+
checkConfigMap "configmap2" $c
1644
done
1745

1846
# Print out the secrets copied into the image during assemble

0 commit comments

Comments
 (0)