Skip to content
Permalink
3c4a7b58a1
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
34 lines (26 sloc) 878 Bytes
#!/usr/bin/env bats
load ../common
# These tests assume the pipeline will start and stop the container.
@test "Leaves running process" {
result="$(docker ps | grep $imagename)"
[ "$result" != '' ]
}
@test "Exposes running Tomcat service" {
result="$(docker exec -i $imagename curl http://localhost:8080/idp/)"
[ "$result" != '' ]
}
@test "Service is Shibboleth" {
docker exec -i $imagename curl -silent http://localhost:8080/idp/ | grep 'Shibboleth'
}
@test "Shibboleth status URL is available" {
run docker exec -i $imagename curl -o /dev/null --silent --head --write-out '%{http_code}\n' http://localhost:8080/idp/status
echo ${output}
[ "$status" -eq 0 ]
[ ${output} == *"200"* ]
}
@test "Tomcat log directory log volume" {
find logs/tomcat/catalina.*.log
}
@test "Shibboleth log directory log volume" {
find logs/shibboleth_idp/idp-process.log
}