60 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
| #!/bin/bash
 | |
| set -eo pipefail
 | |
| 
 | |
| echo "Running limit_backup_count e2e test..."
 | |
| 
 | |
| [[ "${DEBUG}" ]] && set -x
 | |
| 
 | |
| # set current working directory to the directory of the script
 | |
| cd "$(dirname "$0")"
 | |
| 
 | |
| docker_image=$1
 | |
| 
 | |
| if ! docker inspect ${docker_image} &> /dev/null; then
 | |
|     echo "Image '${docker_image}' does not exists"
 | |
|     false
 | |
| fi
 | |
| 
 | |
| JENKINS_HOME="$(pwd)/jenkins_home"
 | |
| BACKUP_DIR="$(pwd)/backup"
 | |
| mkdir -p ${BACKUP_DIR}
 | |
| mkdir -p ${JENKINS_HOME}
 | |
| 
 | |
| mkdir -p ${BACKUP_DIR}/lost+found
 | |
| touch ${BACKUP_DIR}/1.tar.zstd
 | |
| touch ${BACKUP_DIR}/2.tar.zstd
 | |
| touch ${BACKUP_DIR}/3.tar.zstd
 | |
| touch ${BACKUP_DIR}/4.tar.zstd
 | |
| touch ${BACKUP_DIR}/5.tar.zstd
 | |
| touch ${BACKUP_DIR}/6.tar.zstd
 | |
| touch ${BACKUP_DIR}/7.tar.zstd
 | |
| touch ${BACKUP_DIR}/8.tar.zstd
 | |
| touch ${BACKUP_DIR}/9.tar.zstd
 | |
| touch ${BACKUP_DIR}/10.tar.zstd
 | |
| touch ${BACKUP_DIR}/11.tar.zstd
 | |
| # Emulate backup creation
 | |
| BACKUP_TMP_DIR=$(mktemp -d --tmpdir="${BACKUP_DIR}")
 | |
| touch ${BACKUP_TMP_DIR}/12.tar.zstd
 | |
| 
 | |
| # Create an instance of the container under testing
 | |
| cid="$(docker run -e BACKUP_CLEANUP_INTERVAL=1 -e BACKUP_COUNT=2 -e JENKINS_HOME=${JENKINS_HOME} -v ${JENKINS_HOME}:${JENKINS_HOME}:ro -e BACKUP_DIR=${BACKUP_DIR} -v ${BACKUP_DIR}:${BACKUP_DIR}:rw -d ${docker_image})"
 | |
| echo "Docker container ID '${cid}'"
 | |
| 
 | |
| # Remove test directory and container afterwards
 | |
| trap "docker rm -vf $cid > /dev/null;rm -rf ${BACKUP_DIR};rm -rf ${JENKINS_HOME}" EXIT
 | |
| 
 | |
| sleep 2
 | |
| mv ${BACKUP_TMP_DIR}/12.tar.zstd ${BACKUP_DIR}/
 | |
| sleep 2
 | |
| 
 | |
| if [[ "${DEBUG}" ]]; then
 | |
|     docker logs ${cid}
 | |
|     ls -la ${BACKUP_DIR}
 | |
| fi
 | |
| 
 | |
| # only two latest backup should exists
 | |
| [[ $(ls -1 ${BACKUP_DIR} | grep 'tar.zstd' | wc -l) -eq 2 ]] || exit 1
 | |
| [[ -f ${BACKUP_DIR}/11.tar.zstd ]] || exit 2
 | |
| [[ -f ${BACKUP_DIR}/12.tar.zstd ]] || exit 3
 | |
| echo PASS
 |