Make ssh e2e test not use --one-time
There is functionality that needs to be tested beyond that.
This commit is contained in:
parent
2c6356cbcb
commit
a341fb62f9
26
test_e2e.sh
26
test_e2e.sh
|
|
@ -1800,8 +1800,12 @@ function e2e::ssh() {
|
|||
IP=$(docker_ip "$CTR")
|
||||
git -C "$REPO" commit -qam "$FUNCNAME"
|
||||
|
||||
# First sync
|
||||
echo "$FUNCNAME 1" > "$REPO"/file
|
||||
git -C "$REPO" commit -qam "$FUNCNAME 1"
|
||||
|
||||
GIT_SYNC \
|
||||
--one-time \
|
||||
--period=100ms \
|
||||
--repo="test@$IP:/src" \
|
||||
--branch="$MAIN_BRANCH" \
|
||||
--rev=HEAD \
|
||||
|
|
@ -1809,10 +1813,26 @@ function e2e::ssh() {
|
|||
--link="link" \
|
||||
--ssh \
|
||||
--ssh-known-hosts=false \
|
||||
>> "$1" 2>&1
|
||||
>> "$1" 2>&1 &
|
||||
sleep 3
|
||||
assert_link_exists "$ROOT"/link
|
||||
assert_file_exists "$ROOT"/link/file
|
||||
assert_file_eq "$ROOT"/link/file "$FUNCNAME"
|
||||
assert_file_eq "$ROOT"/link/file "$FUNCNAME 1"
|
||||
|
||||
# Move HEAD forward
|
||||
echo "$FUNCNAME 2" > "$REPO"/file
|
||||
git -C "$REPO" commit -qam "$FUNCNAME 2"
|
||||
sleep 3
|
||||
assert_link_exists "$ROOT"/link
|
||||
assert_file_exists "$ROOT"/link/file
|
||||
assert_file_eq "$ROOT"/link/file "$FUNCNAME 2"
|
||||
|
||||
# Move HEAD backward
|
||||
git -C "$REPO" reset -q --hard HEAD^
|
||||
sleep 3
|
||||
assert_link_exists "$ROOT"/link
|
||||
assert_file_exists "$ROOT"/link/file
|
||||
assert_file_eq "$ROOT"/link/file "$FUNCNAME 1"
|
||||
}
|
||||
|
||||
##############################################
|
||||
|
|
|
|||
Loading…
Reference in New Issue