blob: f4a0458691f06074f68fe366e3d190e5ee05547b [file] [log] [blame]
Joshua Heskethd78b4482015-09-14 16:56:34 -06001#!/bin/bash -xe
2
3# This script will be run by OpenStack CI before unit tests are run,
4# it sets up the test system as needed.
5# Developers should setup their test systems in a similar way.
6
7# This setup needs to be run as a user that can run sudo.
8
9# The root password for the MySQL database; pass it in via
10# MYSQL_ROOT_PW.
11DB_ROOT_PW=${MYSQL_ROOT_PW:-insecure_slave}
12
13# This user and its password are used by the tests, if you change it,
14# your tests might fail.
15DB_USER=openstack_citest
16DB_PW=openstack_citest
17
18sudo -H mysqladmin -u root password $DB_ROOT_PW
19
20# It's best practice to remove anonymous users from the database. If
21# a anonymous user exists, then it matches first for connections and
22# other connections from that host will not work.
23sudo -H mysql -u root -p$DB_ROOT_PW -h localhost -e "
24 DELETE FROM mysql.user WHERE User='';
25 FLUSH PRIVILEGES;
26 GRANT ALL PRIVILEGES ON *.*
27 TO '$DB_USER'@'%' identified by '$DB_PW' WITH GRANT OPTION;"
28
29# Now create our database.
30mysql -u $DB_USER -p$DB_PW -h 127.0.0.1 -e "
31 SET default_storage_engine=MYISAM;
32 DROP DATABASE IF EXISTS openstack_citest;
33 CREATE DATABASE openstack_citest CHARACTER SET utf8;"