Skip to content
Permalink
8322c7448b
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
Latest commit 49b84dd Aug 31, 2016 History
0 contributors

Users who have contributed to this file

21 lines (15 sloc) 578 Bytes
#!/usr/bin/env bats
load ../common
# Assumes process is running
@test "MariaDB service is listening on port 3306" {
docker exec -it $imagename netstat -tulpn | grep :3306
}
@test "MySQL user running process" {
docker exec -i $imagename ps -u mysql
}
@test "Creates root account and database" {
docker exec -i $imagename mysql -u root --password="123321" -h 127.0.0.1 -e 'show tables' registry
}
@test "Creates user account with password" {
docker exec -i $imagename mysql -u registry_user --password="WJzesbe3poNZ91qIbmR7" -h 127.0.0.1 -e 'show tables' registry
}