blob: e88e200f075eef3e1b8e48e86461d878db63b1be [file] [log] [blame]
Chris Masone2aa55332011-12-30 14:41:07 -08001#!/bin/bash
2#
3# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7USAGE="Usage: setup_dev_autotest.sh [-p <password>] [-a </path/to/autotest>]"
8HELP="${USAGE}\n\n\
9Install and configure software needed to run autotest locally.\n\
10If you're just working on tests, you do not need to run this.\n\n\
11Options:\n\
12 -p Desired Autotest DB password\n\
13 -a Absolute path to autotest source tree.\n"
14
15AUTOTEST_DIR=
16PASSWD=
17while getopts ":p:a:h" opt; do
18 case $opt in
19 a)
20 AUTOTEST_DIR=$OPTARG
21 ;;
22 p)
23 PASSWD=$OPTARG
24 ;;
25 h)
26 echo -e "${HELP}" >&2
27 exit 0
28 ;;
29 \?)
30 echo "Invalid option: -$OPTARG" >&2
31 echo "${USAGE}" >&2
32 exit 1
33 ;;
34 :)
35 echo "Option -$OPTARG requires an argument." >&2
36 echo "${USAGE}" >&2
37 exit 1
38 ;;
39 esac
40done
41
42if [ -z ${PASSWD} ]; then
43 read -s -p "Autotest DB password: " PASSWD
44 echo
45 if [ -z ${PASSWD} ]; then
46 echo "Empty passwords not allowed." >&2
47 exit 1
48 fi
49 read -s -p "Re-enter password: " PASSWD2
50 echo
51 if [ ${PASSWD} != ${PASSWD2} ]; then
52 echo "Passwords don't match." >&2
53 exit 1
54 fi
55fi
56
57if [ -z "${AUTOTEST_DIR}" ]; then
58 CANDIDATE=$(dirname "$(readlink -f "$0")" | egrep -o '(/[^/]+)*/files')
59 read -p "Enter autotest dir [${CANDIDATE}]: " AUTOTEST_DIR
60 if [ -z "${AUTOTEST_DIR}" ]; then
61 AUTOTEST_DIR="${CANDIDATE}"
62 fi
63fi
64
65SHADOW_CONFIG_PATH="${AUTOTEST_DIR}/shadow_config.ini"
66echo "Autotest supports local overrides of global configuration through a "
67echo "'shadow' configuration file. Setting one up for you now."
68if [ -f ${SHADOW_CONFIG_PATH} ]; then
69 clobber=
70 while read -n 1 -p "Clobber existing shadow config? [Y/n]: " clobber; do
71 echo
72 if [[ -z ${clobber} || $(echo ${clobber} | egrep -qi 'y|n') -eq 0 ]]; then
73 break
74 fi
75 echo "Please enter y or n."
76 done
77 if [[ ${clobber} = 'n' || ${clobber} = 'N' ]]; then
78 echo "Refusing to clobber existing shadow_config.ini."
79 exit 0
80 fi
81 echo "Clobbering existing shadow_config.ini."
82fi
83
84cat > "${SHADOW_CONFIG_PATH}" <<EOF
85[AUTOTEST_WEB]
86host: localhost
87password: ${PASSWD}
Chris Masonee61dd812012-01-10 18:04:21 -080088readonly_host: localhost
89readonly_user: chromeosqa-admin
90readonly_password: ${PASSWD}
Chris Masone2aa55332011-12-30 14:41:07 -080091
92[SERVER]
93hostname: localhost
94EOF
95echo -e "Done!\n"
96
97echo "Installing needed Ubuntu packages..."
98PKG_LIST="mysql-server mysql-common libapache2-mod-python python-mysqldb \
99gnuplot apache2-mpm-prefork unzip python-imaging libpng12-dev libfreetype6-dev \
100sqlite3 python-pysqlite2 git-core pbzip2 openjdk-6-jre openjdk-6-jdk \
101python-crypto python-dev subversion build-essential python-setuptools"
102
103if ! sudo apt-get install -y ${PKG_LIST}; then
104 echo "Could not install packages: $?"
105 exit 1
106fi
107echo -e "Done!\n"
108
109echo -n "Setting up Database: chromeos_autotest_db in MySQL..."
110SQL_COMMAND="create database chromeos_autotest_db; \
111grant all privileges on chromeos_autotest_db.* TO \
Chris Masonee61dd812012-01-10 18:04:21 -0800112'chromeosqa-admin'@'%' identified by '${PASSWD}'; \
Chris Masone2aa55332011-12-30 14:41:07 -0800113FLUSH PRIVILEGES;"
114
115if mysql -u root -e ';' 2> /dev/null ; then
116 PASSWD_STRING=
117elif mysql -u root -p"${PASSWD}" -e ';' 2> /dev/null ; then
118 PASSWD_STRING="-p${PASSWD}"
119else
120 PASSWD_STRING="-p"
121fi
122
123set -e
124
125mysql -u root "${PASSWD_STRING}" -e "${SQL_COMMAND}"
126echo -e "Done!\n"
127
128AT_DIR=/usr/local/autotest
129echo -n "Bind-mounting your autotest dir at ${AT_DIR}..."
130sudo mkdir -p "${AT_DIR}"
131sudo mount --bind "${AUTOTEST_DIR}" "${AT_DIR}"
132echo -e "Done!\n"
133
134EXISTING_MOUNT=$(egrep "/.+[[:space:]]${AT_DIR}" /etc/fstab || /bin/true)
135if [ -n "${EXISTING_MOUNT}" ]; then
136 echo "${EXISTING_MOUNT}" | awk '{print $1 " already automounting at " $2}'
137 echo "We won't update /etc/fstab, but you should have a line line this:"
138 echo -e "${AUTOTEST_DIR}\t${AT_DIR}\tbind defaults,bind\t0\t0"
139else
140 echo -n "Adding aforementioned bind-mount to /etc/fstab..."
141 # Is there a better way to elevate privs and do a redirect?
142 sudo su -c \
143 "echo -e '${AUTOTEST_DIR}\t${AT_DIR}\tbind defaults,bind\t0\t0' \
144 >> /etc/fstab"
145 echo -e "Done!\n"
146fi
147
148echo -n "Reticulating splines..."
149"${AT_DIR}"/utils/build_externals.py &> /dev/null
150"${AT_DIR}"/utils/compile_gwt_clients.py -a &> /dev/null
151echo -e "Done!\n"
152
153echo "Populating autotest mysql DB..."
154"${AT_DIR}"/database/migrate.py sync
155"${AT_DIR}"/frontend/manage.py syncdb
156# You may have to run this twice.
157"${AT_DIR}"/frontend/manage.py syncdb
158"${AT_DIR}"/utils/test_importer.py
159echo -e "Done!\n"
160
161echo "Configuring apache to run the autotest web interface..."
162sudo ln -sf "${AT_DIR}"/apache/apache-conf \
163 /etc/apache2/sites-available/autotest-server
164# disable currently active default
165sudo a2dissite default
166# enable autotest server
167sudo a2ensite autotest-server
168# Enable rewrite module
169sudo a2enmod rewrite
170# Setup permissions so that Apache web user can read the proper files.
171chmod -R o+r "${AT_DIR}"
172find "${AT_DIR}"/ -type d | xargs chmod o+x
173chmod o+x "${AT_DIR}"/tko/*.cgi
174# restart server
175sudo /etc/init.d/apache2 restart
176
177echo "Browse to http://localhost to see if Autotest is working."
178echo "For further necessary set up steps, see https://sites.google.com/a/chromium.org/dev/chromium-os/testing/autotest-developer-faq/setup-autotest-server?pli=1"