From af46939af5dbe914e07c9b1ec0af2560b38ffbc6 Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Fri, 6 Nov 2015 22:21:30 +0000 Subject: Bug 1222497 - Refactor the BMO docker image with new file and script structure while minimizing final image size --- docker/Dockerfile | 68 ++-- docker/bugzilla.conf | 16 - docker/bugzilla_config.sh | 15 - docker/buildbot_step | 63 ---- docker/checksetup_answers.txt | 27 -- docker/docker-compose.yml | 7 + docker/fig.yml | 6 - docker/files/bugzilla.conf | 19 + docker/files/checksetup_answers.txt | 27 ++ docker/files/my.cnf | 42 +++ docker/files/rpm_list | 34 ++ docker/files/sudoers | 9 + docker/files/supervisord.conf | 25 ++ docker/generate_bmo_data.pl | 728 ------------------------------------ docker/install_deps.sh | 31 -- docker/my.cnf | 42 --- docker/my_config.sh | 2 - docker/rpm_list | 51 --- docker/runtests.sh | 108 ------ docker/scripts/bugzilla_config.sh | 17 + docker/scripts/buildbot_step | 63 ++++ docker/scripts/generate_bmo_data.pl | 707 ++++++++++++++++++++++++++++++++++ docker/scripts/install_deps.sh | 24 ++ docker/scripts/my_config.sh | 2 + docker/scripts/runtests.sh | 96 +++++ docker/scripts/start.sh | 8 + docker/sudoers | 9 - docker/supervisord.conf | 28 -- 28 files changed, 1104 insertions(+), 1170 deletions(-) delete mode 100644 docker/bugzilla.conf delete mode 100755 docker/bugzilla_config.sh delete mode 100644 docker/buildbot_step delete mode 100644 docker/checksetup_answers.txt create mode 100755 docker/docker-compose.yml delete mode 100644 docker/fig.yml create mode 100644 docker/files/bugzilla.conf create mode 100644 docker/files/checksetup_answers.txt create mode 100644 docker/files/my.cnf create mode 100644 docker/files/rpm_list create mode 100644 docker/files/sudoers create mode 100644 docker/files/supervisord.conf delete mode 100755 docker/generate_bmo_data.pl delete mode 100755 docker/install_deps.sh delete mode 100644 docker/my.cnf delete mode 100755 docker/my_config.sh delete mode 100644 docker/rpm_list delete mode 100755 docker/runtests.sh create mode 100755 docker/scripts/bugzilla_config.sh create mode 100644 docker/scripts/buildbot_step create mode 100755 docker/scripts/generate_bmo_data.pl create mode 100755 docker/scripts/install_deps.sh create mode 100755 docker/scripts/my_config.sh create mode 100755 docker/scripts/runtests.sh create mode 100755 docker/scripts/start.sh delete mode 100644 docker/sudoers delete mode 100644 docker/supervisord.conf diff --git a/docker/Dockerfile b/docker/Dockerfile index 7c4a96d71..ebba20a48 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -2,71 +2,51 @@ FROM centos:centos7 MAINTAINER David Lawrence # Environment configuration -ENV BUGS_DB_DRIVER mysql -ENV BUGS_DB_NAME bugs -ENV BUGS_DB_PASS bugs -ENV BUGS_DB_HOST localhost - -ENV BUGZILLA_USER bugzilla -ENV BUGZILLA_HOME /home/$BUGZILLA_USER -ENV BUGZILLA_ROOT $BUGZILLA_HOME/devel/htdocs/bmo -ENV BUGZILLA_URL http://localhost/bmo - +ENV USER bugzilla +ENV HOME /home/bugzilla +ENV BUGZILLA_ROOT $HOME/devel/htdocs/bmo ENV GITHUB_BASE_GIT https://github.com/mozilla/webtools-bmo-bugzilla ENV GITHUB_BASE_BRANCH master -ENV GITHUB_QA_GIT https://github.com/mozilla/webtools-bmo-qa -ENV ADMIN_EMAIL admin@mozilla.bugs -ENV ADMIN_PASS password +# Copy over all files and scripts +COPY files /files +COPY scripts /scripts # Distribution package installation -COPY rpm_list /rpm_list -RUN yum -y -q install https://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm \ - epel-release && yum clean all -RUN yum -y -q install `cat /rpm_list` && yum clean all +RUN yum -y -q install https://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm epel-release \ + && yum -y -q install `cat /files/rpm_list` \ + && yum clean all # User configuration -RUN useradd -m -G wheel -u 1000 -s /bin/bash $BUGZILLA_USER \ - && passwd -u -f $BUGZILLA_USER \ +RUN useradd -m -G wheel -u 1000 -s /bin/bash $USER \ + && passwd -u -f $USER \ && echo "bugzilla:bugzilla" | chpasswd -# sshd -RUN mkdir -p /var/run/sshd \ - && chmod -rx /var/run/sshd \ - && ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key -N '' \ - && ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key -N '' \ - && ssh-keygen -t ecdsa -f /etc/ssh/ssh_host_ecdsa_key -N '' \ - && sed -ri 's/#UseDNS yes/UseDNS no/'g /etc/ssh/sshd_config - # Apache configuration -COPY bugzilla.conf /etc/httpd/conf.d/bugzilla.conf +RUN cp /files/bugzilla.conf /etc/httpd/conf.d/bugzilla.conf # MySQL configuration -COPY my.cnf /etc/my.cnf -RUN chmod 644 /etc/my.cnf \ +RUN cp /files/my.cnf /etc/my.cnf \ + && chmod 644 /etc/my.cnf \ && chown root.root /etc/my.cnf \ && rm -rf /etc/mysql \ && rm -rf /var/lib/mysql/* \ - && /usr/bin/mysql_install_db --user=$BUGZILLA_USER --basedir=/usr --datadir=/var/lib/mysql + && /usr/bin/mysql_install_db --user=$USER --basedir=/usr --datadir=/var/lib/mysql # Sudoer configuration -COPY sudoers /etc/sudoers -RUN chown root.root /etc/sudoers && chmod 440 /etc/sudoers +RUN cp /files/sudoers /etc/sudoers \ + && chown root.root /etc/sudoers \ + && chmod 440 /etc/sudoers # Clone the code repo RUN su $BUGZILLA_USER -c "git clone $GITHUB_BASE_GIT -b $GITHUB_BASE_BRANCH $BUGZILLA_ROOT" -# Copy setup and test scripts -COPY *.sh buildbot_step generate_bmo_data.pl checksetup_answers.txt / -RUN chmod 755 /*.sh /buildbot_step - # Bugzilla dependencies and setup -RUN /install_deps.sh -RUN /bugzilla_config.sh -RUN /my_config.sh - -# Final permissions fix -RUN chown -R $BUGZILLA_USER.$BUGZILLA_USER $BUGZILLA_HOME +RUN chmod a+x /scripts/* +RUN /scripts/install_deps.sh +RUN /scripts/bugzilla_config.sh +RUN /scripts/my_config.sh +RUN chown -R $USER.$USER $HOME # Networking RUN echo "NETWORKING=yes" > /etc/sysconfig/network @@ -78,6 +58,6 @@ EXPOSE 5900 ADD https://selenium-release.storage.googleapis.com/2.45/selenium-server-standalone-2.45.0.jar /selenium-server.jar # Supervisor -COPY supervisord.conf /etc/supervisord.conf +RUN cp /files/supervisord.conf /etc/supervisord.conf RUN chmod 700 /etc/supervisord.conf CMD ["/usr/bin/supervisord", "-c", "/etc/supervisord.conf"] diff --git a/docker/bugzilla.conf b/docker/bugzilla.conf deleted file mode 100644 index 1b2b3f2e0..000000000 --- a/docker/bugzilla.conf +++ /dev/null @@ -1,16 +0,0 @@ -User bugzilla -Group bugzilla -ServerName localhost:80 -#PerlSwitches -wT -#PerlConfigRequire /home/bugzilla/devel/htdocs/bmo/mod_perl.pl - - AddHandler cgi-script .cgi - ServerName localhost - DocumentRoot "/home/bugzilla/devel/htdocs" - - DirectoryIndex index.cgi - Options Indexes FollowSymLinks ExecCGI - AllowOverride All - Require all granted - - diff --git a/docker/bugzilla_config.sh b/docker/bugzilla_config.sh deleted file mode 100755 index 818e34c63..000000000 --- a/docker/bugzilla_config.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -cd $BUGZILLA_ROOT - -# Configure database -/usr/bin/mysqld_safe & -sleep 5 -mysql -u root mysql -e "GRANT ALL PRIVILEGES ON *.* TO bugs@localhost IDENTIFIED BY 'bugs'; FLUSH PRIVILEGES;" -mysql -u root mysql -e "CREATE DATABASE bugs CHARACTER SET = 'utf8';" - -perl checksetup.pl /checksetup_answers.txt -perl checksetup.pl /checksetup_answers.txt -perl /generate_bmo_data.pl - -mysqladmin -u root shutdown diff --git a/docker/buildbot_step b/docker/buildbot_step deleted file mode 100644 index a567351b8..000000000 --- a/docker/buildbot_step +++ /dev/null @@ -1,63 +0,0 @@ -#! /bin/bash -e - -buildbot_step_help() { - echo "Run a command and wrap it in buildbot step format" - echo " $0 - [bash args...]" -} - -bb_time() { - # Parser dies if this is longer then 6 chars long. - nano=$(date +%N | cut -c1-6) - echo "$(date '+%Y-%m-%d %H:%M:%S.')$nano" -} - -bb_echo() { - echo "========= $1 =========" -} - -bb_line() { - local type=$1 # Finished/Started - local step=$2 # Name of step - local code=$3 # Exit code - local duration=$4 # Elapsed time in seconds - local time=$(bb_time) - - bb_echo "$type $step (results: $code, elapsed: $duration secs) (at $time)" -} - -# Intentionally the full name of this executable so sourcing this file also -# works as expected... -buildbot_step() { - local step=$1 - local command=${@:2} - local start_time=$(date +%s) - local exit_code=0 - - bb_line "Started" "$step" 0 0 - if eval "$command"; - then - exit_code=$? - else - exit_code=$? - fi - - local end_time=$(date +%s) - local duration=$(($end_time-$start_time)) - - bb_line "Finished" "$step" $exit_code $duration - return $exit_code -} - - -# When this script is not being sourced invoke command directly. -if [ "$(basename $0)" == "buildbot_step" ]; -then - if [ $# -lt 2 ]; - then - buildbot_step_help - exit 1 - fi - buildbot_step "$@" - exit $? -fi - diff --git a/docker/checksetup_answers.txt b/docker/checksetup_answers.txt deleted file mode 100644 index bda62f883..000000000 --- a/docker/checksetup_answers.txt +++ /dev/null @@ -1,27 +0,0 @@ -$answer{'ADMIN_EMAIL'} = 'admin@mozilla.bugs'; -$answer{'ADMIN_OK'} = 'Y'; -$answer{'ADMIN_PASSWORD'} = 'password'; -$answer{'ADMIN_REALNAME'} = 'Admin'; -$answer{'NO_PAUSE'} = 1; -$answer{'bugzilla_version'} = '4.2'; -$answer{'create_htaccess'} = ''; -$answer{'cvsbin'} = '/usr/bin/cvs'; -$answer{'db_check'} = 1; -$answer{'db_driver'} = 'mysql'; -$answer{'db_host'} = 'localhost'; -$answer{'db_mysql_ssl_ca_file'} = ''; -$answer{'db_mysql_ssl_ca_path'} = ''; -$answer{'db_mysql_ssl_client_cert'} = ''; -$answer{'db_mysql_ssl_client_key'} = ''; -$answer{'db_name'} = 'bugs', -$answer{'db_pass'} = 'bugs'; -$answer{'db_port'} = 0; -$answer{'db_sock'} = ''; -$answer{'db_user'} = 'bugs'; -$answer{'diffpath'} = '/usr/bin'; -$answer{'index_html'} = 0; -$answer{'interdiffbin'} = '/usr/bin/interdiff'; -$answer{'memcached_servers'} = "localhost:11211"; -$answer{'urlbase'} = 'http://localhost:8080/bmo/'; -$answer{'use_suexec'} = ''; -$answer{'webservergroup'} = 'bugzilla'; diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml new file mode 100755 index 000000000..e6e9ac8fd --- /dev/null +++ b/docker/docker-compose.yml @@ -0,0 +1,7 @@ +bugzilla: + build: . + ports: + - "8080:80" + - "5900:5900" + environment: + - "TEST_SUITE=sanity" diff --git a/docker/fig.yml b/docker/fig.yml deleted file mode 100644 index b4e9ed143..000000000 --- a/docker/fig.yml +++ /dev/null @@ -1,6 +0,0 @@ -bugzilla: - build: . - ports: - - "8080:80" - - "2222:22" - - "5900:5900" diff --git a/docker/files/bugzilla.conf b/docker/files/bugzilla.conf new file mode 100644 index 000000000..857f79d17 --- /dev/null +++ b/docker/files/bugzilla.conf @@ -0,0 +1,19 @@ +User bugzilla +Group bugzilla +ServerName localhost:80 + +#PerlSwitches -wT +#PerlConfigRequire /home/bugzilla/devel/htdocs/bmo/mod_perl.pl + + + #AddHandler perl-script .cgi + AddHandler cgi-script .cgi + ServerName localhost + DocumentRoot "/home/bugzilla/devel/htdocs" + + DirectoryIndex index.cgi + Options Indexes FollowSymLinks ExecCGI + AllowOverride All + Require all granted + + diff --git a/docker/files/checksetup_answers.txt b/docker/files/checksetup_answers.txt new file mode 100644 index 000000000..0ab75aac9 --- /dev/null +++ b/docker/files/checksetup_answers.txt @@ -0,0 +1,27 @@ +$answer{'ADMIN_EMAIL'} = 'admin@mozilla.test'; +$answer{'ADMIN_OK'} = 'Y'; +$answer{'ADMIN_PASSWORD'} = 'password'; +$answer{'ADMIN_REALNAME'} = 'QA Admin'; +$answer{'NO_PAUSE'} = 1; +$answer{'bugzilla_version'} = '4.2'; +$answer{'create_htaccess'} = ''; +$answer{'cvsbin'} = '/usr/bin/cvs'; +$answer{'db_check'} = 1; +$answer{'db_driver'} = 'mysql'; +$answer{'db_host'} = 'localhost'; +$answer{'db_mysql_ssl_ca_file'} = ''; +$answer{'db_mysql_ssl_ca_path'} = ''; +$answer{'db_mysql_ssl_client_cert'} = ''; +$answer{'db_mysql_ssl_client_key'} = ''; +$answer{'db_name'} = 'bugs', +$answer{'db_pass'} = 'bugs'; +$answer{'db_port'} = 0; +$answer{'db_sock'} = ''; +$answer{'db_user'} = 'bugs'; +$answer{'diffpath'} = '/usr/bin'; +$answer{'index_html'} = 0; +$answer{'interdiffbin'} = '/usr/bin/interdiff'; +$answer{'memcached_servers'} = "localhost:11211"; +$answer{'urlbase'} = 'http://localhost/bmo/'; +$answer{'use_suexec'} = ''; +$answer{'webservergroup'} = 'bugzilla'; diff --git a/docker/files/my.cnf b/docker/files/my.cnf new file mode 100644 index 000000000..b7e035ce5 --- /dev/null +++ b/docker/files/my.cnf @@ -0,0 +1,42 @@ +[mysql] +max_allowed_packet=1G + +[mysqld] +user = bugzilla +default_storage_engine = InnoDB +socket = /var/lib/mysql/mysql.sock +pid_file = /var/lib/mysql/mysql.pid +key_buffer_size = 32M +myisam_recover = FORCE,BACKUP +max_allowed_packet = 1G +max_connect_errors = 1000000 +innodb = FORCE +datadir = /var/lib/mysql +character-set-server = utf8mb4 +collation-server = utf8mb4_general_ci + +tmp_table_size = 32M +max_heap_table_size = 32M +query_cache_type = 0 +query_cache_size = 0 +max_connections = 500 +thread_cache_size = 50 +#open_files_limit = 65535 +table_definition_cache = 1024 +table_open_cache = 2048 + +innodb_flush_method = O_DIRECT +innodb_log_files_in_group = 2 +innodb_log_file_size = 256M +innodb_flush_log_at_trx_commit = 2 +innodb_file_per_table = 1 +innodb_buffer_pool_size = 1G +innodb_flush_neighbors = 0 +innodb_flush_log_at_trx_commit = 2 + +log_error = /var/lib/mysql/mysql-error.log +log_queries_not_using_indexes = 0 +slow_query_log = 0 +slow_query_log_file = /var/lib/mysql/mysql-slow.log +general_log = 0 +general_log_file = /var/lib/mysql/bmo_query.log diff --git a/docker/files/rpm_list b/docker/files/rpm_list new file mode 100644 index 000000000..3b155969b --- /dev/null +++ b/docker/files/rpm_list @@ -0,0 +1,34 @@ +ImageMagick-perl +bzip2 +ctags +dbus-x11 +firefox +gcc +gcc-c++ +git +graphviz +java-1.7.0-openjdk +make +memcached +mod_perl +mod_perl-devel +mpfr-devel +mysql-community-server +openssl-devel +passwd +patch +patchutils +perl-App-cpanminus +perl-CPAN +perl-DBD-MySQL +perl-GD +perl-GSSAPI +perl-core +postfix +python-sphinx +sudo +supervisor +tigervnc-server-minimal +unzip +vim-enhanced +wget diff --git a/docker/files/sudoers b/docker/files/sudoers new file mode 100644 index 000000000..afd139090 --- /dev/null +++ b/docker/files/sudoers @@ -0,0 +1,9 @@ +Defaults env_reset +Defaults env_keep = "COLORS DISPLAY HOSTNAME HISTSIZE INPUTRC KDEDIR LS_COLORS" +Defaults env_keep += "MAIL PS1 PS2 QTDIR USERNAME LANG LC_ADDRESS LC_CTYPE" +Defaults env_keep += "LC_COLLATE LC_IDENTIFICATION LC_MEASUREMENT LC_MESSAGES" +Defaults env_keep += "LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER LC_TELEPHONE" +Defaults env_keep += "LC_TIME LC_ALL LANGUAGE LINGUAS _XKB_CHARSET XAUTHORITY" +Defaults secure_path = /sbin:/bin:/usr/sbin:/usr/bin +root ALL=(ALL) ALL +%wheel ALL=(ALL) NOPASSWD: ALL diff --git a/docker/files/supervisord.conf b/docker/files/supervisord.conf new file mode 100644 index 000000000..4a3d49fcd --- /dev/null +++ b/docker/files/supervisord.conf @@ -0,0 +1,25 @@ +[supervisord] +nodaemon=true +logfile=/var/log/supervisor/supervisord.log +logfile_maxbytes=50MB +logfile_backups=10 +loglevel=debug +pidfile=/var/run/supervisord.pid +minfds=1024 +minprocs=200 + +[program:httpd] +command=/usr/sbin/httpd -DFOREGROUND + +[program:mysqld] +command=/usr/bin/mysqld_safe + +[program:postfix] +command = /usr/sbin/postfix start +startsecs = 0 +autorestart = false + +[program:memcached] +command=/usr/bin/memcached -u memcached +stderr_logfile=/var/log/supervisor/memcached.log +stdout_logfile=/var/log/supervisor/memcached.log diff --git a/docker/generate_bmo_data.pl b/docker/generate_bmo_data.pl deleted file mode 100755 index 90294c080..000000000 --- a/docker/generate_bmo_data.pl +++ /dev/null @@ -1,728 +0,0 @@ -#!/usr/bin/perl -w -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. - -use strict; -use warnings; - -use lib '.'; - -use Bugzilla; -use Bugzilla::User; -use Bugzilla::Install; -use Bugzilla::Milestone; -use Bugzilla::Product; -use Bugzilla::Component; -use Bugzilla::Group; -use Bugzilla::Version; -use Bugzilla::Constants; -use Bugzilla::Keyword; -use Bugzilla::Config qw(:admin); -use Bugzilla::User::Setting; -use Bugzilla::Status; - -my $dbh = Bugzilla->dbh; - -# set Bugzilla usage mode to USAGE_MODE_CMDLINE -Bugzilla->usage_mode(USAGE_MODE_CMDLINE); - -Bugzilla->set_user(Bugzilla::User->new({ name => 'admin@mozilla.bugs' })); - -########################################################################## -# Set Default User Preferences -########################################################################## - -my %user_prefs = ( - post_bug_submit_action => 'nothing', - bugmail_new_prefix => 'on', - comment_box_position => 'after_comments', - comment_sort_order => 'oldest_to_newest', - csv_colsepchar => ',', - display_quips => 'off', - email_format => 'text_only', - headers_in_body => 'off', - inline_history => 'on', - lang => 'en', - orange_factor => 'off', - per_bug_queries => 'off', - possible_duplicates => 'on', - post_bug_submit_action => 'same_bug', - product_chooser => 'pretty_product_chooser', - quicksearch_fulltext => 'off', - quote_replies => 'quoted_reply', - requestee_cc => 'on', - request_nagging => 'on', - show_gravatars => 'On', - show_my_gravatar => 'On', - skin => 'Mozilla', - state_addselfcc => 'cc_unless_role', - timezone => 'local', - zoom_textareas => 'off', -); - -foreach my $pref (keys %user_prefs) { - my $value = $user_prefs{$pref}; - Bugzilla::User::Setting::set_default($pref, $value, 1); -} - -############################################################ -# OS, Platform, Priority -############################################################ - -my @priorities = qw( - -- - P1 - P2 - P3 - P4 - P5 -); - -if (!$dbh->selectrow_array("SELECT 1 FROM priority WHERE value = 'P1'")) { - $dbh->do("DELETE FROM priority"); - my $count = 100; - foreach my $priority (@priorities) { - $dbh->do("INSERT INTO priority (value, sortkey) VALUES (?, ?)", - undef, ($priority, $count+100)); - } -} - -my @platforms = qw( - All - ARM - x86 - x86_64 - Unspecified - Other -); - -if (!$dbh->selectrow_array("SELECT 1 FROM rep_platform WHERE value = 'ARM'")) { - $dbh->do("DELETE FROM rep_platform"); - my $count = 100; - foreach my $platform (@platforms) { - $dbh->do("INSERT INTO rep_platform (value, sortkey) VALUES (?, ?)", - undef, ($platform, $count+100)); - } -} - -my @oses= ( - 'All', - 'Windows', - 'Windows XP', - 'Windows Server 2008', - 'Windows Vista', - 'Windows 7', - 'Windows 8', - 'Windows 8.1', - 'Windows 10', - 'Windows Phone', - 'Mac OS X', - 'Linux', - 'Gonk (Firefox OS)', - 'Android', - 'iOS', - 'iOS 7', - 'iOS 8', - 'BSDI', - 'FreeBSD', - 'NetBSD', - 'OpenBSD', - 'Unspecified', - 'Other' -); - -if (!$dbh->selectrow_array("SELECT 1 FROM op_sys WHERE value = 'AIX'")) { - $dbh->do("DELETE FROM op_sys"); - my $count = 100; - foreach my $os (@oses) { - $dbh->do("INSERT INTO op_sys (value, sortkey) VALUES (?, ?)", - undef, ($os, $count+100)); - } -} - -########################################################################## -# Create Users -########################################################################## -# First of all, remove the default .* regexp for the editbugs group. -my $group = new Bugzilla::Group({ name => 'editbugs' }); -$group->set_user_regexp(''); -$group->update(); - -my @users = ( - { - login => 'nobody@mozilla.org', - realname => 'Nobody; OK to take it and work on it', - password => '*' - }, -); - -print "creating user accounts...\n"; -foreach my $user (@users) { - if (is_available_username($user->{login})) { - Bugzilla::User->create( - { login_name => $user->{login}, - realname => $user->{realname}, - cryptpassword => $user->{password}, - } - ); - if ($user->{admin}) { - Bugzilla::Install::make_admin($user->{login}); - } - } -} - -########################################################################## -# Create Classifications -########################################################################## -my @classifications = ( - { - name => "Client Software", - description => "End User Products developed by mozilla.org contributors" - }, - { - name => "Components", - description => "Standalone components that can be used by other products. " . - "Core, Directory, NSPR, NSS and Toolkit are used by Gecko " . - "(which is in turn used by Firefox, Thunderbird, SeaMonkey, " . - "Fennec, and others)", - }, - { - name => "Server Software", - description => "Web Server software developed by mozilla.org contributors " . - "to aid the development of mozilla.org products" - }, - { - name => "Other", - description => "Everything else - websites, Labs, important things which aren't code" - }, - { - name => "Graveyard", - description => "Old, retired products" - }, -); - -print "creating classifications...\n"; -for my $class (@classifications) { - my $new_class = Bugzilla::Classification->new({ name => $class->{name} }); - if (!$new_class) { - $dbh->do('INSERT INTO classifications (name, description) VALUES (?, ?)', - undef, ( $class->{name}, $class->{description} )); - } -} - -########################################################################## -# Create Some Products -########################################################################## -my @products = ( - { - classification => 'Client Software', - product_name => 'Firefox', - description => 'For bugs in Firefox Desktop, the Mozilla Foundations ' . - 'web browser. For Firefox user interface issues in ' . - 'menus, developer tools, bookmarks, location bar, and ' . - 'preferences. Many Firefox bugs will either be filed ' . - 'here or in the Core product.' . - '(more info)', - versions => [ - '34 Branch', - '35 Branch', - '36 Branch', - '37 Branch', - 'Trunk', - 'unspecified' - ], - milestones => [ - 'Firefox 36', - '---', - 'Firefox 37', - 'Firefox 38', - 'Firefox 39', - 'Future' - ], - defaultmilestone => '---', - components => [ - { - name => 'General', - description => 'For bugs in Firefox which do not fit into ' . - 'other more specific Firefox components', - initialowner => 'nobody@mozilla.org', - initialqaowner => '', - initial_cc => [], - watch_user => 'general@firefox.bugs' - } - ], - }, -); - -my $default_op_sys_id - = $dbh->selectrow_array("SELECT id FROM op_sys WHERE value = 'Unspecified'"); -my $default_platform_id - = $dbh->selectrow_array("SELECT id FROM rep_platform WHERE value = 'Unspecified'"); - -print "creating products...\n"; -for my $product (@products) { - my $new_product = - Bugzilla::Product->new({ name => $product->{product_name} }); - if (!$new_product) { - my $class_id = 1; - if ($product->{classification}) { - $class_id = Bugzilla::Classification->new({ name => $product->{classification} })->id; - } - $dbh->do('INSERT INTO products (name, description, classification_id, - default_op_sys_id, default_platform_id) - VALUES (?, ?, ?, ?, ?)', - undef, ( $product->{product_name}, $product->{description}, - $class_id, $default_op_sys_id, $default_platform_id )); - - $new_product - = new Bugzilla::Product( { name => $product->{product_name} } ); - - $dbh->do( 'INSERT INTO milestones (product_id, value) VALUES (?, ?)', - undef, ( $new_product->id, $product->{defaultmilestone} ) ); - - # Now clear the internal list of accessible products. - delete Bugzilla->user->{selectable_products}; - - foreach my $component (@{ $product->{components} }) { - if (!Bugzilla::User->new({ name => $component->{watch_user} })) { - Bugzilla::User->create({ - login_name => $component->{watch_user}, - cryptpassword => '*', - }); - } - Bugzilla->input_params({ watch_user => $component->{watch_user} }); - Bugzilla::Component->create({ - name => $component->{name}, - product => $new_product, - description => $component->{description}, - initialowner => $component->{initialowner}, - initialqacontact => $component->{initialqacontact} || '', - initial_cc => $component->{initial_cc} || [], - }); - } - } - - foreach my $version (@{ $product->{versions} }) { - if (!new Bugzilla::Version({ name => $version, - product => $new_product })) - { - Bugzilla::Version->create({value => $version, product => $new_product}); - } - } - - foreach my $milestone (@{ $product->{milestones} }) { - if (!new Bugzilla::Milestone({ name => $milestone, - product => $new_product })) - { - $dbh->do('INSERT INTO milestones (product_id, value) VALUES (?,?)', - undef, $new_product->id, $milestone); - } - } -} - -########################################################################## -# Create Groups -########################################################################## -my @groups = ( - { - name => 'core-security', - description => 'Security-Sensitive Core Bug', - no_admin => 1, - bug_group => 1, - all_products => 1, - }, - { - name => 'core-security-release', - description => 'Release-track Client Security Bug', - no_admin => 1, - bug_group => 1, - all_products => 1, - }, - { - name => 'core-security-release', - description => 'Release-track Client Security Bug', - no_admin => 1, - bug_group => 1, - all_products => 1, - }, - { - name => 'core-security-release', - description => 'Release-track Client Security Bug', - no_admin => 1, - bug_group => 1, - all_products => 1, - }, - { - name => 'can_edit_comments', - description => 'Members of this group will be able to edit comments', - no_admin => 0, - bug_group => 0, - all_products => 0, - }, - { - name => 'can_restrict_comments', - description => 'Members of this group will be able to restrict comments on bugs', - no_admin => 0, - all_products => 0, - bug_group => 0, - }, - { - name => 'timetrackers', - description => 'Time Trackers', - no_admin => 1, - all_products => 0, - bug_group => 0, - }, -); - -print "creating groups...\n"; -foreach my $group (@groups) { - my $name = $group->{name}; - my $desc = $group->{desc}; - my $bug_group = exists $group->{bug_group} ? $group->{bug_group} : 1; - my $no_admin = exists $group->{no_admin} ? $group->{no_admin} : 0; - - if (!Bugzilla::Group->new({ name => $name })) { - my $new_group; - if (exists $group->{no_admin} && $group->{no_admin}) { - $dbh->do('INSERT INTO groups (name, description, isbuggroup, isactive) - VALUES (?, ?, 1, 1)', - undef, ($group->{name}, $group->{description})); - $new_group = Bugzilla::Group->new({ name => $group->{name} }); - } - else { - $new_group - = Bugzilla::Group->create({ name => $group->{name}, - description => $group->{description}, - isbuggroup => $group->{bug_group} }); - } - - if (exists $group->{all_products} && $group->{all_products}) { - $dbh->do('INSERT INTO group_control_map - (group_id, product_id, entry, membercontrol, othercontrol, canedit) - SELECT ?, products.id, 0, ?, ?, 0 FROM products', - undef, ( $new_group->id, CONTROLMAPSHOWN, CONTROLMAPSHOWN ) ); - } - } -} - -# Update default security group settings for new products -my $default_security_group = Bugzilla::Group->new({ name => 'core-security' }); -if ($default_security_group) { - $dbh->do('UPDATE products SET security_group_id = ? WHERE security_group_id IS NULL', - undef, $default_security_group->id); -} - -########################################################################## -# Set Parameters -########################################################################## - -my %set_params = ( - allowbugdeletion => 1, - allowuserdeletion => 0, - allow_attachment_deletion => 1, - bonsai_url => 'http://bonsai.mozilla.org', - collapsed_comment_tags => 'obsolete,spam,typo,me-too,advocacy,off-topic,offtopic,abuse,abusive', - confirmuniqueusermatch => 0, - maxusermatches => '100', - debug_group => 'editbugs', - defaultpriority => '--', # FIXME: add priority - defaultquery => 'resolution=---&emailassigned_to1=1&emailassigned_to2=1' . - '&emailreporter2=1&emailqa_contact2=1&emailtype1=exact' . - '&emailtype2=exact&order=Importance&keywords_type=allwords' . - '&long_desc_type=substring', - defaultseverity => 'normal', - edit_comments_group => 'can_edit_comments', - insidergroup => 'core-security-release', - last_visit_keep_days => '28', - lxr_url => 'http://mxr.mozilla.org/mozilla', - lxr_root => 'mozilla/', - mail_delivery_method => 'Test', - mailfrom => '"Bugzilla@Mozilla" ', - maintainer => 'bugzilla-admin@mozilla.org', - maxattachmentsize => '10240', - maxusermatches => '100', - mostfreqthreshold => '5', - mybugstemplate => 'buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW' . - '&bug_status=ASSIGNED&bug_status=REOPENED' . - '&emailassigned_to1=1&emailreporter1=1' . - '&emailtype1=exact&email1=%userid%' . - '&field0-0-0=bug_status&type0-0-0=notequals' . - '&value0-0-0=UNCONFIRMED&field0-0-1=reporter' . - '&type0-0-1=equals&value0-0-1=%userid%', - persona_verify_url => 'https://verifier.login.persona.org/verify', - persona_includejs_url => 'https://login.persona.org/include.js', - quip_list_entry_control => 'moderated', - restrict_comments_group => 'editbugs', - restrict_comments_enable_group => 'can_restrict_comments', - search_allow_no_criteria => 0, - strict_transport_security => 'include_subdomains', - timetrackinggroup => 'timetrackers', - upgrade_notification => 'disabled', - useclassification => 1, - usetargetmilestone => 1, - usestatuswhiteboard => 1, - usebugaliases => 1, - useqacontact => 1, - use_mailer_queue => 1, - user_info_class => 'Persona,CGI', -); - -my $params_modified; -foreach my $param (keys %set_params) { - my $value = $set_params{$param}; - next unless defined $value && Bugzilla->params->{$param} ne $value; - SetParam($param, $value); - $params_modified = 1; -} - -write_params() if $params_modified; - -########################################################################## -# Create flag types -########################################################################## -my @flagtypes = ( - { - name => 'review', - desc => 'The patch has passed review by a module owner or peer.', - is_requestable => 1, - is_requesteeble => 1, - is_multiplicable => 1, - grant_group => '', - target_type => 'a', - cc_list => '', - inclusions => [''] - }, - { - name => 'feedback', - desc => 'A particular person\'s input is requested for a patch, ' . - 'but that input does not amount to an official review.', - is_requestable => 1, - is_requesteeble => 1, - is_multiplicable => 1, - grant_group => '', - target_type => 'a', - cc_list => '', - inclusions => [''] - } -); - -print "creating flag types...\n"; -foreach my $flag (@flagtypes) { - next if new Bugzilla::FlagType({ name => $flag->{name} }); - my $grant_group_id = $flag->{grant_group} - ? Bugzilla::Group->new({ name => $flag->{grant_group} })->id - : undef; - my $request_group_id = $flag->{request_group} - ? Bugzilla::Group->new({ name => $flag->{request_group} })->id - : undef; - - $dbh->do('INSERT INTO flagtypes (name, description, cc_list, target_type, is_requestable, - is_requesteeble, is_multiplicable, grant_group_id, request_group_id) - VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)', - undef, ($flag->{name}, $flag->{desc}, $flag->{cc_list}, $flag->{target_type}, - $flag->{is_requestable}, $flag->{is_requesteeble}, $flag->{is_multiplicable}, - $grant_group_id, $request_group_id)); - - my $type_id = $dbh->bz_last_key('flagtypes', 'id'); - - foreach my $inclusion (@{$flag->{inclusions}}) { - my ($product, $component) = split(':', $inclusion); - my ($prod_id, $comp_id); - if ($product) { - my $prod_obj = Bugzilla::Product->new({ name => $product }); - $prod_id = $prod_obj->id; - if ($component) { - $comp_id = Bugzilla::Component->new({ name => $component, product => $prod_obj})->id; - } - } - $dbh->do('INSERT INTO flaginclusions (type_id, product_id, component_id) - VALUES (?, ?, ?)', - undef, ($type_id, $prod_id, $comp_id)); - } -} - -########################################################### -# Create bug status -########################################################### - -my @statuses = ( - { - value => undef, - transitions => [['UNCONFIRMED', 0], ['NEW', 0], ['ASSIGNED', 0]], - }, - { - value => 'UNCONFIRMED', - sortkey => 100, - isactive => 1, - isopen => 1, - transitions => [['NEW', 0], ['ASSIGNED', 0], ['RESOLVED', 0]], - }, - { - value => 'NEW', - sortkey => 200, - isactive => 1, - isopen => 1, - transitions => [['UNCONFIRMED', 0], ['ASSIGNED', 0], ['RESOLVED', 0]], - }, - { - value => 'ASSIGNED', - sortkey => 300, - isactive => 1, - isopen => 1, - transitions => [['UNCONFIRMED', 0], ['NEW', 0], ['RESOLVED', 0]], - }, - { - value => 'REOPENED', - sortkey => 400, - isactive => 1, - isopen => 1, - transitions => [['UNCONFIRMED', 0], ['NEW', 0], ['ASSIGNED', 0], ['RESOLVED', 0]], - }, - { - value => 'RESOLVED', - sortkey => 500, - isactive => 1, - isopen => 0, - transitions => [['UNCONFIRMED', 0], ['REOPENED', 0], ['VERIFIED', 0]], - }, - { - value => 'VERIFIED', - sortkey => 600, - isactive => 1, - isopen => 0, - transitions => [['UNCONFIRMED', 0], ['REOPENED', 0], ['RESOLVED', 0]], - }, - { - value => 'CLOSED', - sortkey => 700, - isactive => 1, - isopen => 0, - transitions => [['UNCONFIRMED', 0], ['REOPENED', 0], ['RESOLVED', 0]], - }, -); - -if (!$dbh->selectrow_array("SELECT 1 FROM bug_status WHERE value = 'ASSIGNED'")) { - $dbh->do('DELETE FROM bug_status'); - $dbh->do('DELETE FROM status_workflow'); - - print "creating status workflow...\n"; - - # One pass to add the status entries. - foreach my $status (@statuses) { - next if !$status->{value}; - $dbh->do('INSERT INTO bug_status (value, sortkey, isactive, is_open) VALUES (?, ?, ?, ?)', - undef, ( $status->{value}, $status->{sortkey}, $status->{isactive}, $status->{isopen} )); - } - - # Another pass to add the transitions. - foreach my $status (@statuses) { - my $old_id; - if ($status->{value}) { - my $from_status = new Bugzilla::Status({ name => $status->{value} }); - $old_id = $from_status->{id}; - } else { - $old_id = undef; - } - - foreach my $transition (@{$status->{transitions}}) { - my $to_status = new Bugzilla::Status({ name => $transition->[0] }); - - $dbh->do('INSERT INTO status_workflow (old_status, new_status, require_comment) VALUES (?, ?, ?)', - undef, ( $old_id, $to_status->{id}, $transition->[1] )); - } - } -} - -########################################################### -# Creating resolutions -########################################################### - -my @resolutions = ( - { - value => '', - sortkey => 100, - isactive => 1, - }, - { - value => 'FIXED', - sortkey => 200, - isactive => 1, - }, - { - value => 'INVALID', - sortkey => 300, - isactive => 1, - }, - { - value => 'WONTFIX', - sortkey => 400, - isactive => 1, - }, - { - value => 'DUPLICATE', - sortkey => 700, - isactive => 1, - }, - { - value => 'WORKSFORME', - sortkey => 800, - isactive => 1, - }, - { - value => 'EXPIRED', - sortkey => 900, - isactive => 1, - }, - { - value => 'MOVED', - sortkey => 1000, - isactive => 0, - }, - { - value => 'INCOMPLETE', - sortkey => 850, - isactive => 1, - }, - { - value => 'SUPPORT', - sortkey => 875, - isactive => 0, - }, -); - -if (!$dbh->selectrow_array("SELECT 1 FROM resolution WHERE value = 'INCOMPLETE'")) { - $dbh->do('DELETE FROM resolution'); - print "creating resolutions...\n"; - foreach my $resolution (@resolutions) { - next if !$resolution->{value}; - $dbh->do('INSERT INTO resolution (value, sortkey, isactive) VALUES (?, ?, ?)', - undef, ($resolution->{value}, $resolution->{sortkey}, $resolution->{isactive})); - } -} - -########################################################### -# Create Keywords -########################################################### - -my @keywords = ( - { - name => 'regression', - description => 'The problem was fixed, but then it came back (regressed) ' . - 'and this new bug was filed to track the regression.' - }, - { - name => 'relnote', - description => 'This bug need to be put on release notes for next ' . - 'milestone announcement.' - }, -); - -print "creating keywords...\n"; -foreach my $kw (@keywords) { - next if new Bugzilla::Keyword({ name => $kw->{name} }); - Bugzilla::Keyword->create($kw); -} - -print "installation and configuration complete!\n"; diff --git a/docker/install_deps.sh b/docker/install_deps.sh deleted file mode 100755 index a27344b08..000000000 --- a/docker/install_deps.sh +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/bash - -cd $BUGZILLA_ROOT - -# Install Perl dependencies -CPANM="cpanm --quiet --notest --skip-satisfied" - -# Force version due to problem with CentOS ImageMagick-devel -$CPANM Image::Magick@6.77 - -perl checksetup.pl --cpanfile -$CPANM --installdeps --with-recommends --with-all-features \ - --without-feature oracle --without-feature sqlite --without-feature pg . - -# These are not picked up by cpanm --with-all-features for some reason -$CPANM Template::Plugin::GD::Image -$CPANM MIME::Parser -$CPANM SOAP::Lite -$CPANM JSON::RPC -$CPANM Email::MIME::Attachment::Stripper -$CPANM TheSchwartz -$CPANM XMLRPC::Lite - -# For testing support -$CPANM File::Copy::Recursive -$CPANM Test::WWW::Selenium -$CPANM Pod::Coverage -$CPANM Pod::Checker - -# Remove CPAN build files to minimize disk usage -rm -rf /root/.cpanm diff --git a/docker/my.cnf b/docker/my.cnf deleted file mode 100644 index b7e035ce5..000000000 --- a/docker/my.cnf +++ /dev/null @@ -1,42 +0,0 @@ -[mysql] -max_allowed_packet=1G - -[mysqld] -user = bugzilla -default_storage_engine = InnoDB -socket = /var/lib/mysql/mysql.sock -pid_file = /var/lib/mysql/mysql.pid -key_buffer_size = 32M -myisam_recover = FORCE,BACKUP -max_allowed_packet = 1G -max_connect_errors = 1000000 -innodb = FORCE -datadir = /var/lib/mysql -character-set-server = utf8mb4 -collation-server = utf8mb4_general_ci - -tmp_table_size = 32M -max_heap_table_size = 32M -query_cache_type = 0 -query_cache_size = 0 -max_connections = 500 -thread_cache_size = 50 -#open_files_limit = 65535 -table_definition_cache = 1024 -table_open_cache = 2048 - -innodb_flush_method = O_DIRECT -innodb_log_files_in_group = 2 -innodb_log_file_size = 256M -innodb_flush_log_at_trx_commit = 2 -innodb_file_per_table = 1 -innodb_buffer_pool_size = 1G -innodb_flush_neighbors = 0 -innodb_flush_log_at_trx_commit = 2 - -log_error = /var/lib/mysql/mysql-error.log -log_queries_not_using_indexes = 0 -slow_query_log = 0 -slow_query_log_file = /var/lib/mysql/mysql-slow.log -general_log = 0 -general_log_file = /var/lib/mysql/bmo_query.log diff --git a/docker/my_config.sh b/docker/my_config.sh deleted file mode 100755 index e35e8dd90..000000000 --- a/docker/my_config.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -# Add any custom setup instructions here diff --git a/docker/rpm_list b/docker/rpm_list deleted file mode 100644 index 4a9a29e39..000000000 --- a/docker/rpm_list +++ /dev/null @@ -1,51 +0,0 @@ -ImageMagick-devel -asciidoc -aspell-devel -bzip2 -dblatex -dbus-x11 -docbook-style-dsssl -firefox -gcc -gcc-c++ -gd-devel -git -gmp-devel -graphviz -jade -java-1.7.0-openjdk -lynx -make -memcached -mod_perl -mod_perl-devel -mpfr-devel -mysql-community-devel -mysql-community-server -openssh -openssh-server -openssl-devel -passwd -patch -perl-App-cpanminus -perl-CPAN -perl-core -postfix -python-sphinx -sudo -supervisor -tar -texlive-cmap -texlive-cyrillic -texlive-framed -texlive-mdwtools -texlive-parskip -texlive-tex4ht -texlive-threeparttable -texlive-ucs -texlive-wrapfig -tigervnc-server-minimal -unzip -vim-enhanced -wget -xmlto diff --git a/docker/runtests.sh b/docker/runtests.sh deleted file mode 100755 index f554b9b6b..000000000 --- a/docker/runtests.sh +++ /dev/null @@ -1,108 +0,0 @@ -#!/bin/bash -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. - -if [ -z "$TEST_SUITE" ]; then - TEST_SUITE=sanity -fi - -set -e - -# Output to log file as well as STDOUT/STDERR -exec > >(tee /runtests.log) 2>&1 - -echo "== Retrieving Bugzilla code" -echo "Checking out $GITHUB_BASE_GIT $GITHUB_BASE_BRANCH ..." -mv $BUGZILLA_ROOT "${BUGZILLA_ROOT}.back" -git clone $GITHUB_BASE_GIT --branch $GITHUB_BASE_BRANCH $BUGZILLA_ROOT -cd $BUGZILLA_ROOT -if [ "$GITHUB_BASE_REV" != "" ]; then - echo "Switching to revision $GITHUB_BASE_REV ..." - git checkout -q $GITHUB_BASE_REV -fi - -echo -e "\n== Checking dependencies for changes" -/install_deps.sh - -if [ "$TEST_SUITE" = "sanity" ]; then - cd $BUGZILLA_ROOT - /buildbot_step "Sanity" prove -f -v t/*.t - exit $? -fi - -if [ "$TEST_SUITE" = "docs" ]; then - export JADE_PUB=/usr/share/sgml - export LDP_HOME=/usr/share/sgml/docbook/dsssl-stylesheets-1.79/dtds/decls - cd $BUGZILLA_ROOT/docs - /buildbot_step "Documentation" perl makedocs.pl --with-pdf - exit $? -fi - -echo -e "\n== Starting database" -/usr/bin/mysqld_safe & -sleep 3 - -echo -e "\n== Starting memcached" -/usr/bin/memcached -u memcached -d -sleep 3 - -echo -e "\n== Updating configuration" -mysql -u root mysql -e "CREATE DATABASE bugs_test CHARACTER SET = 'utf8';" -sed -e "s?%DB%?$BUGS_DB_DRIVER?g" --in-place $BUGZILLA_ROOT/qa/config/checksetup_answers.txt -sed -e "s?%DB_NAME%?bugs_test?g" --in-place $BUGZILLA_ROOT/qa/config/checksetup_answers.txt -sed -e "s?%USER%?$BUGZILLA_USER?g" --in-place $BUGZILLA_ROOT/qa/config/checksetup_answers.txt -echo "\$answer{'memcached_servers'} = 'localhost:11211';" >> $BUGZILLA_ROOT/qa/config/checksetup_answers.txt - -if [ "$TEST_SUITE" == "checksetup" ]; then - cd $BUGZILLA_ROOT/qa - /buildbot_step "Checksetup" ./test_checksetup.pl config/config-checksetup-$BUGS_DB_DRIVER - exit $? -fi - -echo -e "\n== Running checksetup" -cd $BUGZILLA_ROOT -./checksetup.pl qa/config/checksetup_answers.txt -./checksetup.pl qa/config/checksetup_answers.txt - -echo -e "\n== Generating bmo data" -perl /generate_bmo_data.pl - -echo -e "\n== Generating test data" -cd $BUGZILLA_ROOT/qa/config -perl generate_test_data.pl - -echo -e "\n== Starting web server" -sed -e "s?^#Perl?Perl?" --in-place /etc/httpd/conf.d/bugzilla.conf -/usr/sbin/httpd & -sleep 3 - -if [ "$TEST_SUITE" = "selenium" ]; then - export DISPLAY=:0 - - # Setup dbus for Firefox - dbus-uuidgen > /var/lib/dbus/machine-id - - echo -e "\n== Starting virtual frame buffer and vnc server" - Xvnc $DISPLAY -screen 0 1280x1024x16 -ac -SecurityTypes=None \ - -extension RANDR 2>&1 | tee /xvnc.log & - sleep 5 - - echo -e "\n== Starting Selenium server" - java -jar /selenium-server.jar -log /selenium.log > /dev/null 2>&1 & - sleep 5 - - # Set NO_TESTS=1 if just want selenium services - # but no tests actually executed. - [ $NO_TESTS ] && exit 0 - - cd $BUGZILLA_ROOT/qa/t - /buildbot_step "Selenium" prove -f -v -I$BUGZILLA_ROOT/lib test_*.t - exit $? -fi - -if [ "$TEST_SUITE" = "webservices" ]; then - cd $BUGZILLA_ROOT/qa/t - /buildbot_step "Webservices" prove -f -v -I$BUGZILLA_ROOT/lib webservice_*.t - exit $? -fi diff --git a/docker/scripts/bugzilla_config.sh b/docker/scripts/bugzilla_config.sh new file mode 100755 index 000000000..d1ca0db0e --- /dev/null +++ b/docker/scripts/bugzilla_config.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +cd $BUGZILLA_ROOT + +# Start and initialize database +/usr/bin/mysqld_safe & +sleep 5 +mysql -u root mysql -e "GRANT ALL PRIVILEGES ON *.* TO bugs@localhost IDENTIFIED BY 'bugs'; FLUSH PRIVILEGES;" +mysql -u root mysql -e "CREATE DATABASE bugs CHARACTER SET = 'utf8';" + +# Setup default Bugzilla database +perl checksetup.pl /files/checksetup_answers.txt +perl checksetup.pl /files/checksetup_answers.txt +perl /scripts/generate_bmo_data.pl + +# Shutdown database +mysqladmin -u root shutdown diff --git a/docker/scripts/buildbot_step b/docker/scripts/buildbot_step new file mode 100644 index 000000000..a567351b8 --- /dev/null +++ b/docker/scripts/buildbot_step @@ -0,0 +1,63 @@ +#! /bin/bash -e + +buildbot_step_help() { + echo "Run a command and wrap it in buildbot step format" + echo " $0 - [bash args...]" +} + +bb_time() { + # Parser dies if this is longer then 6 chars long. + nano=$(date +%N | cut -c1-6) + echo "$(date '+%Y-%m-%d %H:%M:%S.')$nano" +} + +bb_echo() { + echo "========= $1 =========" +} + +bb_line() { + local type=$1 # Finished/Started + local step=$2 # Name of step + local code=$3 # Exit code + local duration=$4 # Elapsed time in seconds + local time=$(bb_time) + + bb_echo "$type $step (results: $code, elapsed: $duration secs) (at $time)" +} + +# Intentionally the full name of this executable so sourcing this file also +# works as expected... +buildbot_step() { + local step=$1 + local command=${@:2} + local start_time=$(date +%s) + local exit_code=0 + + bb_line "Started" "$step" 0 0 + if eval "$command"; + then + exit_code=$? + else + exit_code=$? + fi + + local end_time=$(date +%s) + local duration=$(($end_time-$start_time)) + + bb_line "Finished" "$step" $exit_code $duration + return $exit_code +} + + +# When this script is not being sourced invoke command directly. +if [ "$(basename $0)" == "buildbot_step" ]; +then + if [ $# -lt 2 ]; + then + buildbot_step_help + exit 1 + fi + buildbot_step "$@" + exit $? +fi + diff --git a/docker/scripts/generate_bmo_data.pl b/docker/scripts/generate_bmo_data.pl new file mode 100755 index 000000000..178d8353e --- /dev/null +++ b/docker/scripts/generate_bmo_data.pl @@ -0,0 +1,707 @@ +#!/usr/bin/perl -w +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +use strict; +use warnings; + +use lib '.'; + +use Bugzilla; +use Bugzilla::User; +use Bugzilla::Install; +use Bugzilla::Milestone; +use Bugzilla::Product; +use Bugzilla::Component; +use Bugzilla::Group; +use Bugzilla::Version; +use Bugzilla::Constants; +use Bugzilla::Keyword; +use Bugzilla::Config qw(:admin); +use Bugzilla::User::Setting; +use Bugzilla::Status; + +my $dbh = Bugzilla->dbh; + +# set Bugzilla usage mode to USAGE_MODE_CMDLINE +Bugzilla->usage_mode(USAGE_MODE_CMDLINE); + +Bugzilla->set_user(Bugzilla::User->new({ name => 'admin@mozilla.test' })); + +########################################################################## +# Set Default User Preferences +########################################################################## + +my %user_prefs = ( + post_bug_submit_action => 'nothing', + bugmail_new_prefix => 'on', + comment_box_position => 'after_comments', + comment_sort_order => 'oldest_to_newest', + csv_colsepchar => ',', + display_quips => 'off', + email_format => 'text_only', + headers_in_body => 'off', + inline_history => 'on', + lang => 'en', + orange_factor => 'off', + per_bug_queries => 'off', + possible_duplicates => 'on', + post_bug_submit_action => 'same_bug', + product_chooser => 'pretty_product_chooser', + quicksearch_fulltext => 'off', + quote_replies => 'quoted_reply', + requestee_cc => 'on', + request_nagging => 'on', + show_gravatars => 'On', + show_my_gravatar => 'On', + skin => 'Mozilla', + state_addselfcc => 'cc_unless_role', + timezone => 'local', + zoom_textareas => 'off', +); + +foreach my $pref (keys %user_prefs) { + my $value = $user_prefs{$pref}; + Bugzilla::User::Setting::set_default($pref, $value, 1); +} + +############################################################ +# OS, Platform, Priority +############################################################ + +my @priorities = qw( + -- + P1 + P2 + P3 + P4 + P5 +); + +if (!$dbh->selectrow_array("SELECT 1 FROM priority WHERE value = 'P1'")) { + $dbh->do("DELETE FROM priority"); + my $count = 100; + foreach my $priority (@priorities) { + $dbh->do("INSERT INTO priority (value, sortkey) VALUES (?, ?)", + undef, ($priority, $count+100)); + } +} + +my @platforms = qw( + All + ARM + x86 + x86_64 + Unspecified + Other +); + +if (!$dbh->selectrow_array("SELECT 1 FROM rep_platform WHERE value = 'ARM'")) { + $dbh->do("DELETE FROM rep_platform"); + my $count = 100; + foreach my $platform (@platforms) { + $dbh->do("INSERT INTO rep_platform (value, sortkey) VALUES (?, ?)", + undef, ($platform, $count+100)); + } +} + +my @oses= ( + 'All', + 'Windows', + 'Windows XP', + 'Windows Server 2008', + 'Windows Vista', + 'Windows 7', + 'Windows 8', + 'Windows 8.1', + 'Windows 10', + 'Windows Phone', + 'Mac OS X', + 'Linux', + 'Gonk (Firefox OS)', + 'Android', + 'iOS', + 'iOS 7', + 'iOS 8', + 'BSDI', + 'FreeBSD', + 'NetBSD', + 'OpenBSD', + 'Unspecified', + 'Other' +); + +if (!$dbh->selectrow_array("SELECT 1 FROM op_sys WHERE value = 'AIX'")) { + $dbh->do("DELETE FROM op_sys"); + my $count = 100; + foreach my $os (@oses) { + $dbh->do("INSERT INTO op_sys (value, sortkey) VALUES (?, ?)", + undef, ($os, $count+100)); + } +} + +########################################################################## +# Create Users +########################################################################## +# First of all, remove the default .* regexp for the editbugs group. +my $group = new Bugzilla::Group({ name => 'editbugs' }); +$group->set_user_regexp(''); +$group->update(); + +my @users = ( + { + login => 'nobody@mozilla.org', + realname => 'Nobody; OK to take it and work on it', + password => '*' + }, +); + +print "creating user accounts...\n"; +foreach my $user (@users) { + if (is_available_username($user->{login})) { + Bugzilla::User->create( + { login_name => $user->{login}, + realname => $user->{realname}, + cryptpassword => $user->{password}, + } + ); + if ($user->{admin}) { + Bugzilla::Install::make_admin($user->{login}); + } + } +} + +########################################################################## +# Create Classifications +########################################################################## +my @classifications = ( + { + name => "Client Software", + description => "End User Products developed by mozilla.org contributors" + }, + { + name => "Components", + description => "Standalone components that can be used by other products. " . + "Core, Directory, NSPR, NSS and Toolkit are used by Gecko " . + "(which is in turn used by Firefox, Thunderbird, SeaMonkey, " . + "Fennec, and others)", + }, + { + name => "Server Software", + description => "Web Server software developed by mozilla.org contributors " . + "to aid the development of mozilla.org products" + }, + { + name => "Other", + description => "Everything else - websites, Labs, important things which aren't code" + }, + { + name => "Graveyard", + description => "Old, retired products" + }, +); + +print "creating classifications...\n"; +for my $class (@classifications) { + my $new_class = Bugzilla::Classification->new({ name => $class->{name} }); + if (!$new_class) { + $dbh->do('INSERT INTO classifications (name, description) VALUES (?, ?)', + undef, ( $class->{name}, $class->{description} )); + } +} + +########################################################################## +# Create Some Products +########################################################################## +my @products = ( + { + classification => 'Client Software', + product_name => 'Firefox', + description => 'For bugs in Firefox Desktop, the Mozilla Foundations ' . + 'web browser. For Firefox user interface issues in ' . + 'menus, developer tools, bookmarks, location bar, and ' . + 'preferences. Many Firefox bugs will either be filed ' . + 'here or in the Core product.' . + '(more info)', + versions => [ + '34 Branch', + '35 Branch', + '36 Branch', + '37 Branch', + 'Trunk', + 'unspecified' + ], + milestones => [ + 'Firefox 36', + '---', + 'Firefox 37', + 'Firefox 38', + 'Firefox 39', + 'Future' + ], + defaultmilestone => '---', + components => [ + { + name => 'General', + description => 'For bugs in Firefox which do not fit into ' . + 'other more specific Firefox components', + initialowner => 'nobody@mozilla.org', + initialqaowner => '', + initial_cc => [], + watch_user => 'general@firefox.bugs' + } + ], + }, +); + +my $default_op_sys_id + = $dbh->selectrow_array("SELECT id FROM op_sys WHERE value = 'Unspecified'"); +my $default_platform_id + = $dbh->selectrow_array("SELECT id FROM rep_platform WHERE value = 'Unspecified'"); + +print "creating products...\n"; +for my $product (@products) { + my $new_product = + Bugzilla::Product->new({ name => $product->{product_name} }); + if (!$new_product) { + my $class_id = 1; + if ($product->{classification}) { + $class_id = Bugzilla::Classification->new({ name => $product->{classification} })->id; + } + $dbh->do('INSERT INTO products (name, description, classification_id, + default_op_sys_id, default_platform_id) + VALUES (?, ?, ?, ?, ?)', + undef, ( $product->{product_name}, $product->{description}, + $class_id, $default_op_sys_id, $default_platform_id )); + + $new_product + = new Bugzilla::Product( { name => $product->{product_name} } ); + + $dbh->do( 'INSERT INTO milestones (product_id, value) VALUES (?, ?)', + undef, ( $new_product->id, $product->{defaultmilestone} ) ); + + # Now clear the internal list of accessible products. + delete Bugzilla->user->{selectable_products}; + + foreach my $component (@{ $product->{components} }) { + if (!Bugzilla::User->new({ name => $component->{watch_user} })) { + Bugzilla::User->create({ + login_name => $component->{watch_user}, + cryptpassword => '*', + }); + } + Bugzilla->input_params({ watch_user => $component->{watch_user} }); + Bugzilla::Component->create({ + name => $component->{name}, + product => $new_product, + description => $component->{description}, + initialowner => $component->{initialowner}, + initialqacontact => $component->{initialqacontact} || '', + initial_cc => $component->{initial_cc} || [], + }); + } + } + + foreach my $version (@{ $product->{versions} }) { + if (!new Bugzilla::Version({ name => $version, + product => $new_product })) + { + Bugzilla::Version->create({value => $version, product => $new_product}); + } + } + + foreach my $milestone (@{ $product->{milestones} }) { + if (!new Bugzilla::Milestone({ name => $milestone, + product => $new_product })) + { + $dbh->do('INSERT INTO milestones (product_id, value) VALUES (?,?)', + undef, $new_product->id, $milestone); + } + } +} + +########################################################################## +# Create Groups +########################################################################## +my @groups = ( + { + name => 'core-security-release', + description => 'Release-track Client Security Bug', + no_admin => 1, + bug_group => 1, + all_products => 1, + }, + { + name => 'can_edit_comments', + description => 'Members of this group will be able to edit comments', + no_admin => 0, + bug_group => 0, + all_products => 0, + }, + { + name => 'can_restrict_comments', + description => 'Members of this group will be able to restrict comments on bugs', + no_admin => 0, + all_products => 0, + bug_group => 0, + }, + { + name => 'timetrackers', + description => 'Time Trackers', + no_admin => 1, + all_products => 0, + bug_group => 0, + }, +); + +print "creating groups...\n"; +foreach my $group (@groups) { + my $name = $group->{name}; + my $desc = $group->{desc}; + my $bug_group = exists $group->{bug_group} ? $group->{bug_group} : 1; + my $no_admin = exists $group->{no_admin} ? $group->{no_admin} : 0; + + if (!Bugzilla::Group->new({ name => $name })) { + my $new_group; + if (exists $group->{no_admin} && $group->{no_admin}) { + $dbh->do('INSERT INTO groups (name, description, isbuggroup, isactive) + VALUES (?, ?, 1, 1)', + undef, ($group->{name}, $group->{description})); + $new_group = Bugzilla::Group->new({ name => $group->{name} }); + } + else { + $new_group + = Bugzilla::Group->create({ name => $group->{name}, + description => $group->{description}, + isbuggroup => $group->{bug_group} }); + } + + if (exists $group->{all_products} && $group->{all_products}) { + $dbh->do('INSERT INTO group_control_map + (group_id, product_id, entry, membercontrol, othercontrol, canedit) + SELECT ?, products.id, 0, ?, ?, 0 FROM products', + undef, ( $new_group->id, CONTROLMAPSHOWN, CONTROLMAPSHOWN ) ); + } + } +} + +# Update default security group settings for new products +my $default_security_group = Bugzilla::Group->new({ name => 'core-security' }); +if ($default_security_group) { + $dbh->do('UPDATE products SET security_group_id = ? WHERE security_group_id IS NULL', + undef, $default_security_group->id); +} + +########################################################################## +# Set Parameters +########################################################################## + +my %set_params = ( + allowbugdeletion => 1, + allowuserdeletion => 0, + allow_attachment_deletion => 1, + bonsai_url => 'http://bonsai.mozilla.org', + collapsed_comment_tags => 'obsolete,spam,typo,me-too,advocacy,off-topic,offtopic,abuse,abusive', + confirmuniqueusermatch => 0, + maxusermatches => '100', + debug_group => 'editbugs', + defaultpriority => '--', # FIXME: add priority + defaultquery => 'resolution=---&emailassigned_to1=1&emailassigned_to2=1' . + '&emailreporter2=1&emailqa_contact2=1&emailtype1=exact' . + '&emailtype2=exact&order=Importance&keywords_type=allwords' . + '&long_desc_type=substring', + defaultseverity => 'normal', + edit_comments_group => 'can_edit_comments', + insidergroup => 'core-security-release', + last_visit_keep_days => '28', + lxr_url => 'http://mxr.mozilla.org/mozilla', + lxr_root => 'mozilla/', + mail_delivery_method => 'Test', + mailfrom => '"Bugzilla@Mozilla" ', + maintainer => 'bugzilla-admin@mozilla.org', + maxattachmentsize => '10240', + maxusermatches => '100', + mostfreqthreshold => '5', + mybugstemplate => 'buglist.cgi?bug_status=UNCONFIRMED&bug_status=NEW' . + '&bug_status=ASSIGNED&bug_status=REOPENED' . + '&emailassigned_to1=1&emailreporter1=1' . + '&emailtype1=exact&email1=%userid%' . + '&field0-0-0=bug_status&type0-0-0=notequals' . + '&value0-0-0=UNCONFIRMED&field0-0-1=reporter' . + '&type0-0-1=equals&value0-0-1=%userid%', + persona_verify_url => 'https://verifier.login.persona.org/verify', + persona_includejs_url => 'https://login.persona.org/include.js', + quip_list_entry_control => 'moderated', + restrict_comments_group => 'editbugs', + restrict_comments_enable_group => 'can_restrict_comments', + search_allow_no_criteria => 0, + strict_transport_security => 'include_subdomains', + timetrackinggroup => 'timetrackers', + upgrade_notification => 'disabled', + useclassification => 1, + usetargetmilestone => 1, + usestatuswhiteboard => 1, + usebugaliases => 1, + useqacontact => 1, + use_mailer_queue => 1, + user_info_class => 'Persona,CGI', +); + +my $params_modified; +foreach my $param (keys %set_params) { + my $value = $set_params{$param}; + next unless defined $value && Bugzilla->params->{$param} ne $value; + SetParam($param, $value); + $params_modified = 1; +} + +write_params() if $params_modified; + +########################################################################## +# Create flag types +########################################################################## +my @flagtypes = ( + { + name => 'review', + desc => 'The patch has passed review by a module owner or peer.', + is_requestable => 1, + is_requesteeble => 1, + is_multiplicable => 1, + grant_group => '', + target_type => 'a', + cc_list => '', + inclusions => [''] + }, + { + name => 'feedback', + desc => 'A particular person\'s input is requested for a patch, ' . + 'but that input does not amount to an official review.', + is_requestable => 1, + is_requesteeble => 1, + is_multiplicable => 1, + grant_group => '', + target_type => 'a', + cc_list => '', + inclusions => [''] + } +); + +print "creating flag types...\n"; +foreach my $flag (@flagtypes) { + next if new Bugzilla::FlagType({ name => $flag->{name} }); + my $grant_group_id = $flag->{grant_group} + ? Bugzilla::Group->new({ name => $flag->{grant_group} })->id + : undef; + my $request_group_id = $flag->{request_group} + ? Bugzilla::Group->new({ name => $flag->{request_group} })->id + : undef; + + $dbh->do('INSERT INTO flagtypes (name, description, cc_list, target_type, is_requestable, + is_requesteeble, is_multiplicable, grant_group_id, request_group_id) + VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)', + undef, ($flag->{name}, $flag->{desc}, $flag->{cc_list}, $flag->{target_type}, + $flag->{is_requestable}, $flag->{is_requesteeble}, $flag->{is_multiplicable}, + $grant_group_id, $request_group_id)); + + my $type_id = $dbh->bz_last_key('flagtypes', 'id'); + + foreach my $inclusion (@{$flag->{inclusions}}) { + my ($product, $component) = split(':', $inclusion); + my ($prod_id, $comp_id); + if ($product) { + my $prod_obj = Bugzilla::Product->new({ name => $product }); + $prod_id = $prod_obj->id; + if ($component) { + $comp_id = Bugzilla::Component->new({ name => $component, product => $prod_obj})->id; + } + } + $dbh->do('INSERT INTO flaginclusions (type_id, product_id, component_id) + VALUES (?, ?, ?)', + undef, ($type_id, $prod_id, $comp_id)); + } +} + +########################################################### +# Create bug status +########################################################### + +my @statuses = ( + { + value => undef, + transitions => [['UNCONFIRMED', 0], ['NEW', 0], ['ASSIGNED', 0]], + }, + { + value => 'UNCONFIRMED', + sortkey => 100, + isactive => 1, + isopen => 1, + transitions => [['NEW', 0], ['ASSIGNED', 0], ['RESOLVED', 0]], + }, + { + value => 'NEW', + sortkey => 200, + isactive => 1, + isopen => 1, + transitions => [['UNCONFIRMED', 0], ['ASSIGNED', 0], ['RESOLVED', 0]], + }, + { + value => 'ASSIGNED', + sortkey => 300, + isactive => 1, + isopen => 1, + transitions => [['UNCONFIRMED', 0], ['NEW', 0], ['RESOLVED', 0]], + }, + { + value => 'REOPENED', + sortkey => 400, + isactive => 1, + isopen => 1, + transitions => [['UNCONFIRMED', 0], ['NEW', 0], ['ASSIGNED', 0], ['RESOLVED', 0]], + }, + { + value => 'RESOLVED', + sortkey => 500, + isactive => 1, + isopen => 0, + transitions => [['UNCONFIRMED', 0], ['REOPENED', 0], ['VERIFIED', 0]], + }, + { + value => 'VERIFIED', + sortkey => 600, + isactive => 1, + isopen => 0, + transitions => [['UNCONFIRMED', 0], ['REOPENED', 0], ['RESOLVED', 0]], + }, + { + value => 'CLOSED', + sortkey => 700, + isactive => 1, + isopen => 0, + transitions => [['UNCONFIRMED', 0], ['REOPENED', 0], ['RESOLVED', 0]], + }, +); + +if (!$dbh->selectrow_array("SELECT 1 FROM bug_status WHERE value = 'ASSIGNED'")) { + $dbh->do('DELETE FROM bug_status'); + $dbh->do('DELETE FROM status_workflow'); + + print "creating status workflow...\n"; + + # One pass to add the status entries. + foreach my $status (@statuses) { + next if !$status->{value}; + $dbh->do('INSERT INTO bug_status (value, sortkey, isactive, is_open) VALUES (?, ?, ?, ?)', + undef, ( $status->{value}, $status->{sortkey}, $status->{isactive}, $status->{isopen} )); + } + + # Another pass to add the transitions. + foreach my $status (@statuses) { + my $old_id; + if ($status->{value}) { + my $from_status = new Bugzilla::Status({ name => $status->{value} }); + $old_id = $from_status->{id}; + } else { + $old_id = undef; + } + + foreach my $transition (@{$status->{transitions}}) { + my $to_status = new Bugzilla::Status({ name => $transition->[0] }); + + $dbh->do('INSERT INTO status_workflow (old_status, new_status, require_comment) VALUES (?, ?, ?)', + undef, ( $old_id, $to_status->{id}, $transition->[1] )); + } + } +} + +########################################################### +# Creating resolutions +########################################################### + +my @resolutions = ( + { + value => '', + sortkey => 100, + isactive => 1, + }, + { + value => 'FIXED', + sortkey => 200, + isactive => 1, + }, + { + value => 'INVALID', + sortkey => 300, + isactive => 1, + }, + { + value => 'WONTFIX', + sortkey => 400, + isactive => 1, + }, + { + value => 'DUPLICATE', + sortkey => 700, + isactive => 1, + }, + { + value => 'WORKSFORME', + sortkey => 800, + isactive => 1, + }, + { + value => 'EXPIRED', + sortkey => 900, + isactive => 1, + }, + { + value => 'MOVED', + sortkey => 1000, + isactive => 0, + }, + { + value => 'INCOMPLETE', + sortkey => 850, + isactive => 1, + }, + { + value => 'SUPPORT', + sortkey => 875, + isactive => 0, + }, +); + +if (!$dbh->selectrow_array("SELECT 1 FROM resolution WHERE value = 'INCOMPLETE'")) { + $dbh->do('DELETE FROM resolution'); + print "creating resolutions...\n"; + foreach my $resolution (@resolutions) { + next if !$resolution->{value}; + $dbh->do('INSERT INTO resolution (value, sortkey, isactive) VALUES (?, ?, ?)', + undef, ($resolution->{value}, $resolution->{sortkey}, $resolution->{isactive})); + } +} + +########################################################### +# Create Keywords +########################################################### + +my @keywords = ( + { + name => 'regression', + description => 'The problem was fixed, but then it came back (regressed) ' . + 'and this new bug was filed to track the regression.' + }, + { + name => 'relnote', + description => 'This bug need to be put on release notes for next ' . + 'milestone announcement.' + }, +); + +print "creating keywords...\n"; +foreach my $kw (@keywords) { + next if new Bugzilla::Keyword({ name => $kw->{name} }); + Bugzilla::Keyword->create($kw); +} + +print "installation and configuration complete!\n"; diff --git a/docker/scripts/install_deps.sh b/docker/scripts/install_deps.sh new file mode 100755 index 000000000..232bfea10 --- /dev/null +++ b/docker/scripts/install_deps.sh @@ -0,0 +1,24 @@ +#!/bin/bash + +cd $BUGZILLA_ROOT + +# Install Perl dependencies +CPANM="cpanm --quiet --notest --skip-satisfied" + +perl checksetup.pl --cpanfile +$CPANM --installdeps --with-recommends --with-all-features \ + --without-feature oracle --without-feature sqlite --without-feature pg . + +# These are not picked up by cpanm --with-all-features for some reason +$CPANM XMLRPC::Lite + +# For testing support +$CPANM File::Copy::Recursive +$CPANM Test::WWW::Selenium +$CPANM Pod::Coverage +$CPANM Pod::Checker +$CPANM Test::LWP::UserAgent +$CPANM Test::MockObject + +# Remove CPAN build files to minimize disk usage +rm -rf ~/.cpanm diff --git a/docker/scripts/my_config.sh b/docker/scripts/my_config.sh new file mode 100755 index 000000000..e35e8dd90 --- /dev/null +++ b/docker/scripts/my_config.sh @@ -0,0 +1,2 @@ +#!/bin/bash +# Add any custom setup instructions here diff --git a/docker/scripts/runtests.sh b/docker/scripts/runtests.sh new file mode 100755 index 000000000..a2b5773b8 --- /dev/null +++ b/docker/scripts/runtests.sh @@ -0,0 +1,96 @@ +#!/bin/bash +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +BUILDBOT=$BUGZILLA_ROOT/docker/scripts/buildbot_step + +if [ -z "$TEST_SUITE" ]; then + TEST_SUITE=sanity +fi + +set -e + +# Output to log file as well as STDOUT/STDERR +exec > >(tee /runtests.log) 2>&1 + +echo "== Retrieving Bugzilla code" +echo "Checking out $GITHUB_BASE_GIT $GITHUB_BASE_BRANCH ..." +mv $BUGZILLA_ROOT "${BUGZILLA_ROOT}.back" +git clone $GITHUB_BASE_GIT --branch $GITHUB_BASE_BRANCH $BUGZILLA_ROOT +cd $BUGZILLA_ROOT +if [ "$GITHUB_BASE_REV" != "" ]; then + echo "Switching to revision $GITHUB_BASE_REV ..." + git checkout -q $GITHUB_BASE_REV +fi + +echo -e "\n== Checking dependencies for changes" +$BUGZILLA_ROOT/docker/scripts/install_deps.sh + +if [ "$TEST_SUITE" = "sanity" ]; then + $BUILDBOT "Sanity" prove -f -v t/*.t + exit $? +fi + +if [ "$TEST_SUITE" = "docs" ]; then + export JADE_PUB=/usr/share/sgml + export LDP_HOME=/usr/share/sgml/docbook/dsssl-stylesheets-1.79/dtds/decls + cd $BUGZILLA_ROOT/docs + $BUILDBOT "Documentation" perl makedocs.pl --with-pdf + exit $? +fi + +echo -e "\n== Starting database" +/usr/bin/mysqld_safe & +sleep 3 +mysql -u root mysql -e "CREATE DATABASE bugs_test CHARACTER SET = 'utf8';" + +echo -e "\n== Starting memcached" +/usr/bin/memcached -u memcached -d +sleep 3 + +echo -e "\n== Running checksetup" +perl checksetup.pl $BUGZILLA_ROOT/qa/config/checksetup_answers.txt +perl checksetup.pl $BUGZILLA_ROOT/qa/config/checksetup_answers.txt + +echo -e "\n== Generating bmo data" +perl $BUGZILLA_ROOT/docker/scripts/generate_bmo_data.pl + +echo -e "\n== Generating test data" +cd $BUGZILLA_ROOT/qa/config +perl generate_test_data.pl + +echo -e "\n== Starting web server" +sed -e "s?^#Perl?Perl?" --in-place /etc/httpd/conf.d/bugzilla.conf +/usr/sbin/httpd & +sleep 3 + +if [ "$TEST_SUITE" = "selenium" ]; then + export DISPLAY=:0 + + # Setup dbus for Firefox + dbus-uuidgen > /var/lib/dbus/machine-id + + echo -e "\n== Starting virtual frame buffer and vnc server" + Xvnc $DISPLAY -screen 0 1280x1024x16 -ac -SecurityTypes=None \ + -extension RANDR 2>&1 | tee /xvnc.log & + sleep 5 + + echo -e "\n== Starting Selenium server" + java -jar /selenium-server.jar -log /selenium.log > /dev/null 2>&1 & + sleep 5 + + # Set NO_TESTS=1 if just want selenium services + # but no tests actually executed. + [ $NO_TESTS ] && exit 0 + + cd $BUGZILLA_ROOT/qa/t + $BUILDBOT "Selenium" prove -f -v -I$BUGZILLA_ROOT/lib test_*.t + exit $? +fi + +if [ "$TEST_SUITE" = "webservices" ]; then + cd $BUGZILLA_ROOT/qa/t + $BUILDBOT "Webservices" prove -f -v -I$BUGZILLA_ROOT/lib webservice_*.t + exit $? +fi diff --git a/docker/scripts/start.sh b/docker/scripts/start.sh new file mode 100755 index 000000000..077870166 --- /dev/null +++ b/docker/scripts/start.sh @@ -0,0 +1,8 @@ +docker run -d \ + --name dkl_bugzilla_1 \ + --hostname dkl_bugzilla_1 \ + --publish 80:80 \ + --publish 2222:22 \ + --volume /home/dkl/devel:/home/bugzilla/devel \ + --volume /home/dkl/data/bzdev/mysql:/var/lib/mysql \ + dkl_bugzilla diff --git a/docker/sudoers b/docker/sudoers deleted file mode 100644 index afd139090..000000000 --- a/docker/sudoers +++ /dev/null @@ -1,9 +0,0 @@ -Defaults env_reset -Defaults env_keep = "COLORS DISPLAY HOSTNAME HISTSIZE INPUTRC KDEDIR LS_COLORS" -Defaults env_keep += "MAIL PS1 PS2 QTDIR USERNAME LANG LC_ADDRESS LC_CTYPE" -Defaults env_keep += "LC_COLLATE LC_IDENTIFICATION LC_MEASUREMENT LC_MESSAGES" -Defaults env_keep += "LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER LC_TELEPHONE" -Defaults env_keep += "LC_TIME LC_ALL LANGUAGE LINGUAS _XKB_CHARSET XAUTHORITY" -Defaults secure_path = /sbin:/bin:/usr/sbin:/usr/bin -root ALL=(ALL) ALL -%wheel ALL=(ALL) NOPASSWD: ALL diff --git a/docker/supervisord.conf b/docker/supervisord.conf deleted file mode 100644 index b3007daf3..000000000 --- a/docker/supervisord.conf +++ /dev/null @@ -1,28 +0,0 @@ -[supervisord] -nodaemon=true -logfile=/var/log/supervisor/supervisord.log -logfile_maxbytes=50MB -logfile_backups=10 -loglevel=debug -pidfile=/var/run/supervisord.pid -minfds=1024 -minprocs=200 - -[program:sshd] -command=/usr/sbin/sshd -D - -[program:httpd] -command=/usr/sbin/httpd -DFOREGROUND - -[program:mysqld] -command=/usr/bin/mysqld_safe - -[program:postfix] -command = /usr/sbin/postfix start -startsecs = 0 -autorestart = false - -[program:memcached] -command=/usr/bin/memcached -u memcached -stderr_logfile=/var/log/supervisor/memcached.log -stdout_logfile=/var/log/supervisor/memcached.log -- cgit v1.2.3-24-g4f1b