aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/integration/docker/test.sh
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-03-29 23:18:04 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2022-03-29 23:18:04 +0300
commit4beb075783e8f1b4081e429eec78dd96c3be57ae (patch)
tree3def5952657bbf63a0204a01a88e2c11414fecf1 /test/integration/docker/test.sh
parentt/i/docker: reuse the root docker-compose.yml (diff)
downloadcgitize-4beb075783e8f1b4081e429eec78dd96c3be57ae.tar.gz
cgitize-4beb075783e8f1b4081e429eec78dd96c3be57ae.zip
rename Compose services, move directories around, etc.
Diffstat (limited to 'test/integration/docker/test.sh')
-rwxr-xr-xtest/integration/docker/test.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/integration/docker/test.sh b/test/integration/docker/test.sh
index e55841f..239385e 100755
--- a/test/integration/docker/test.sh
+++ b/test/integration/docker/test.sh
@@ -10,7 +10,7 @@ readonly script_name
readonly ssh_dir="$script_dir/ssh"
readonly client_key_password='password'
-readonly output_dir="$script_dir/client/output"
+readonly output_dir="$script_dir/cgitize/output"
dump() {
local prefix="${FUNCNAME[0]}"
@@ -140,7 +140,7 @@ run_git_server() {
run_cgitize() {
echo
echo ----------------------------------------------------------------------
- echo Running the client
+ echo Running cgitize
echo ----------------------------------------------------------------------
if [ -z "${SSH_AUTH_SOCK:+x}" ]; then
@@ -148,7 +148,7 @@ run_cgitize() {
return 1
fi
dump "SSH_AUTH_SOCK: $SSH_AUTH_SOCK"
- docker-compose run --rm backend
+ docker-compose run --rm cgitize
}
run() {
@@ -162,7 +162,7 @@ verify() {
echo Checking the pulled repository
echo ----------------------------------------------------------------------
- pushd -- "$script_dir/client/output/test_repo" > /dev/null
+ pushd -- "$script_dir/cgitize/output/test_repo" > /dev/null
git log --oneline
popd > /dev/null
}