Re-enabled all tests
This commit is contained in:
parent
b290d4e35e
commit
968c732d94
|
@ -330,7 +330,7 @@ function test_Merge () {
|
|||
assertEquals "Install failed" "0" $?
|
||||
}
|
||||
|
||||
function nope_test_LargeFileSet () {
|
||||
function test_LargeFileSet () {
|
||||
for i in "${osyncParameters[@]}"; do
|
||||
cd "$OSYNC_DIR"
|
||||
|
||||
|
@ -348,7 +348,7 @@ function nope_test_LargeFileSet () {
|
|||
done
|
||||
}
|
||||
|
||||
function nope_test_Exclusions () {
|
||||
function test_Exclusions () {
|
||||
# Will sync except php files
|
||||
# RSYNC_EXCLUDE_PATTERN="*.php" is set at runtime for quicksync and in config files for other runs
|
||||
|
||||
|
@ -376,7 +376,7 @@ function nope_test_Exclusions () {
|
|||
done
|
||||
}
|
||||
|
||||
function nope_test_Deletetion () {
|
||||
function test_Deletetion () {
|
||||
local iFile1="$INITIATOR_DIR/i fic"
|
||||
local iFile2="$INITIATOR_DIR/i foc"
|
||||
local tFile1="$TARGET_DIR/t fic"
|
||||
|
@ -420,7 +420,7 @@ function nope_test_Deletetion () {
|
|||
done
|
||||
}
|
||||
|
||||
function nope_test_deletion_failure () {
|
||||
function test_deletion_failure () {
|
||||
if [ "$LOCAL_OS" == "WinNT10" ] || [ "$LOCAL_OS" == "msys" ] || [ "$LOCAL_OS" == "Cygwin" ]; then
|
||||
echo "Skipping deletion failure test as Win10 does not have chattr support."
|
||||
return 0
|
||||
|
@ -487,7 +487,7 @@ function nope_test_deletion_failure () {
|
|||
done
|
||||
}
|
||||
|
||||
function nope_test_skip_deletion () {
|
||||
function test_skip_deletion () {
|
||||
local modes
|
||||
|
||||
if [ "$OSYNC_MIN_VERSION" == "1" ]; then
|
||||
|
@ -563,7 +563,7 @@ function nope_test_skip_deletion () {
|
|||
SetConfFileValue "$CONF_DIR/$REMOTE_CONF" "SKIP_DELETION" ""
|
||||
}
|
||||
|
||||
function nope_test_handle_symlinks () {
|
||||
function test_handle_symlinks () {
|
||||
if [ "$OSYNC_MIN_VERSION" == "1" ]; then
|
||||
echo "Skipping symlink tests as osync v1.1x didn't handle this."
|
||||
return 0
|
||||
|
@ -744,7 +744,7 @@ function nope_test_handle_symlinks () {
|
|||
done
|
||||
}
|
||||
|
||||
function nope_test_softdeletion_cleanup () {
|
||||
function test_softdeletion_cleanup () {
|
||||
#declare -A files
|
||||
|
||||
files=()
|
||||
|
@ -909,7 +909,7 @@ function test_FileAttributePropagation () {
|
|||
SetConfFileValue "$CONF_DIR/$REMOTE_CONF" "PRESERVE_XATTR" false
|
||||
}
|
||||
|
||||
function nope_test_ConflictBackups () {
|
||||
function test_ConflictBackups () {
|
||||
for i in "${osyncParameters[@]}"; do
|
||||
cd "$OSYNC_DIR"
|
||||
PrepareLocalDirs
|
||||
|
@ -945,7 +945,7 @@ function nope_test_ConflictBackups () {
|
|||
done
|
||||
}
|
||||
|
||||
function nope_test_MultipleConflictBackups () {
|
||||
function test_MultipleConflictBackups () {
|
||||
|
||||
local additionalParameters
|
||||
|
||||
|
@ -1007,7 +1007,7 @@ function nope_test_MultipleConflictBackups () {
|
|||
SetConfFileValue "$CONF_DIR/$REMOTE_CONF" "CONFLICT_BACKUP_MULTIPLE" false
|
||||
}
|
||||
|
||||
function nope_test_Locking () {
|
||||
function test_Locking () {
|
||||
# local not running = resume
|
||||
# remote same instance_id = resume
|
||||
# remote different instance_id = stop
|
||||
|
@ -1114,7 +1114,7 @@ function nope_test_Locking () {
|
|||
SetConfFileValue "$CONF_DIR/$REMOTE_CONF" "FORCE_STRANGER_LOCK_RESUME" false
|
||||
}
|
||||
|
||||
function nope_test_ConflictDetetion () {
|
||||
function test_ConflictDetetion () {
|
||||
# Tests compatible with v1.3+
|
||||
|
||||
if [ $OSYNC_MIN_VERSION -lt 3 ]; then
|
||||
|
@ -1165,7 +1165,7 @@ function nope_test_ConflictDetetion () {
|
|||
return 0
|
||||
}
|
||||
|
||||
function nope_test_WaitForTaskCompletion () {
|
||||
function test_WaitForTaskCompletion () {
|
||||
local pids
|
||||
|
||||
# Tests compatible with v1.1 syntax
|
||||
|
@ -1259,7 +1259,7 @@ function nope_test_WaitForTaskCompletion () {
|
|||
assertEquals "WaitForTaskCompletion test 5" "2" $?
|
||||
}
|
||||
|
||||
function nope_test_ParallelExec () {
|
||||
function test_ParallelExec () {
|
||||
if [ "$OSYNC_MIN_VERSION" == "1" ]; then
|
||||
echo "Skipping ParallelExec test because osync v1.1 ofunctions don't have this function."
|
||||
return 0
|
||||
|
@ -1320,7 +1320,7 @@ function nope_test_ParallelExec () {
|
|||
assertNotEquals "ParallelExec full test 3" "0" $?
|
||||
}
|
||||
|
||||
function nope_test_timedExecution () {
|
||||
function test_timedExecution () {
|
||||
local arguments
|
||||
local warnExitCode
|
||||
|
||||
|
@ -1367,7 +1367,7 @@ function nope_test_timedExecution () {
|
|||
done
|
||||
}
|
||||
|
||||
function nope_test_UpgradeConfRun () {
|
||||
function test_UpgradeConfRun () {
|
||||
if [ "$OSYNC_MIN_VERSION" == "1" ]; then
|
||||
echo "Skipping Upgrade script test because no further dev will happen on this for v1.1"
|
||||
return 0
|
||||
|
@ -1393,7 +1393,7 @@ function nope_test_UpgradeConfRun () {
|
|||
rm -f "$CONF_DIR/$TMP_OLD_CONF.save"
|
||||
}
|
||||
|
||||
function nope_test_DaemonMode () {
|
||||
function test_DaemonMode () {
|
||||
if [ "$LOCAL_OS" == "WinNT10" ] || [ "$LOCAL_OS" == "msys" ] || [ "$LOCAL_OS" == "Cygwin" ]; then
|
||||
echo "Skipping daemon mode test as [$LOCAL_OS] does not have inotifywait support."
|
||||
return 0
|
||||
|
@ -1449,7 +1449,7 @@ function nope_test_DaemonMode () {
|
|||
|
||||
}
|
||||
|
||||
function nope_test_NoRemoteAccessTest () {
|
||||
function test_NoRemoteAccessTest () {
|
||||
RemoveSSH
|
||||
|
||||
cd "$OSYNC_DIR"
|
||||
|
|
Loading…
Reference in New Issue