Permalink
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?
mariadb/tests/running.bats
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
21 lines (15 sloc)
578 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 | |
} |