entrypoint: Add integration test.

This commit is contained in:
Shishir Mahajan 2021-03-25 16:40:14 -07:00
parent b93e718ac7
commit b390ff4f00
No known key found for this signature in database
GPG Key ID: D41782E7688DEC4A
3 changed files with 60 additions and 0 deletions

20
example/entrypoint.nomad Normal file
View File

@ -0,0 +1,20 @@
job "entrypoint" {
datacenters = ["dc1"]
group "entrypoint-group" {
task "entrypoint-task" {
driver = "containerd-driver"
config {
image = "ubuntu:16.04"
entrypoint = ["/bin/echo"]
args = ["container1", "container2"]
}
resources {
cpu = 500
memory = 256
}
}
}
}

40
tests/008-test-entrypoint.sh Executable file
View File

@ -0,0 +1,40 @@
#!/bin/bash
source $SRCDIR/utils.sh
job_name=entrypoint
test_entrypoint_nomad_job() {
pushd ~/go/src/github.com/Roblox/nomad-driver-containerd/example
echo "INFO: Starting nomad $job_name job using nomad-driver-containerd."
nomad job run $job_name.nomad
# Even though $(nomad job status) reports job status as "running"
# The actual container process might not be running yet.
# We need to wait for actual container to start running before executing $(nomad alloc logs).
echo "INFO: Wait for ${job_name} container to get into RUNNING state."
is_container_active ${job_name} true
echo "INFO: Checking status of $job_name job."
job_status=$(nomad job status -short $job_name|grep Status|awk '{split($0,a,"="); print a[2]}'|tr -d ' ')
if [ "$job_status" != "running" ];then
echo "ERROR: Error in getting ${job_name} job status."
return 1
fi
output=$(nomad logs -job ${job_name})
for result in "container1" "container2" ; do
echo -e "$output" |grep "$result" &>/dev/null
if [ $? -ne 0 ];then
echo "ERROR: $result not found in the output."
return 1
fi
done
echo "INFO: purge nomad ${job_name} job."
nomad job stop -purge ${job_name}
popd
}
test_entrypoint_nomad_job