Add integration test.

This commit is contained in:
Shishir Mahajan 2021-04-19 15:27:23 -07:00
parent f80f41896d
commit c86faf9e07
No known key found for this signature in database
GPG Key ID: D41782E7688DEC4A
2 changed files with 11 additions and 3 deletions

View File

@ -6,9 +6,10 @@ job "redis" {
driver = "containerd-driver"
config {
image = "redis:alpine"
seccomp = true
cwd = "/home/redis"
image = "redis:alpine"
hostname = "foobar"
seccomp = true
cwd = "/home/redis"
}
resources {

View File

@ -34,6 +34,13 @@ test_redis_nomad_job() {
exit 1
fi
echo "INFO: Exec redis job and check hostname is foobar."
hostname=$(nomad alloc exec -job redis hostname)
if [ $hostname != "foobar" ]; then
echo "ERROR: hostname is not foobar."
exit 1
fi
echo "INFO: Check if default seccomp is enabled."
output=$(nomad alloc exec -job redis cat /proc/1/status | grep Seccomp)
seccomp_code=$(echo $output|cut -d' ' -f2)