Skip to content
Permalink
71a5607301
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
executable file 68 lines (52 sloc) 1.79 KB
#!/usr/bin/env bats
load ../../../common
load ../../../library
@test "000 Cleanup before running the tests" {
run docker-compose down -v
}
@test "010 Initialize and start midPoint" {
docker-compose up -d
wait_for_midpoint_start simple_midpoint-server_1
}
@test "010 Check health" {
check_health
}
@test "100 Get 'administrator'" {
check_health
get_and_check_object users 00000000-0000-0000-0000-000000000002 administrator
}
@test "110 And and get 'test110'" {
check_health
echo "<user><name>test110</name></user>" >/tmp/test110.xml
add_object users /tmp/test110.xml
rm /tmp/test110.xml
search_and_check_object users test110
}
@test "300 Check repository preserved between restarts" {
check_health
echo "Creating user test300 and checking its existence"
echo "<user><name>test300</name></user>" >/tmp/test300.xml
add_object users /tmp/test300.xml
rm /tmp/test300.xml
search_and_check_object users test300
echo "Bringing the containers down"
docker-compose down
echo "Re-creating the containers"
docker-compose up --no-start
docker-compose start
wait_for_midpoint_start simple_midpoint-server_1
echo "Searching for the user again"
search_and_check_object users test300
}
@test "350 Test DB schema version check" {
echo "Removing version information from m_global_metadata"
docker exec simple_midpoint-data_1 mysql -p123321 registry -e "delete from m_global_metadata"
echo "Bringing the containers down"
docker-compose down
echo "Re-creating the containers"
docker-compose up -d
wait_for_log_message simple_midpoint-server_1 "com.evolveum.midpoint.util.exception.SystemException: Existing database schema version could not be determined"
}
@test "999 Clean up" {
docker-compose down -v
}