summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@mozilla.com>2015-04-20 17:45:04 +0200
committerDavid Lawrence <dkl@mozilla.com>2015-04-20 17:45:55 +0200
commit4aa44c46edf93a9707fc693769f39e5aeda7f59b (patch)
tree259a8a6145c0f136aeffe22954d5f02fbfeccd52 /contrib
parent1cc7a1525eb67f3573b0232e2724fe6afd5ed7f3 (diff)
downloadbugzilla-4aa44c46edf93a9707fc693769f39e5aeda7f59b.tar.gz
bugzilla-4aa44c46edf93a9707fc693769f39e5aeda7f59b.tar.xz
BMO Docker image fixes to bring up to speed with recent extension changes
Diffstat (limited to 'contrib')
-rw-r--r--contrib/docker/Dockerfile2
-rwxr-xr-xcontrib/docker/generate_bmo_data.pl66
2 files changed, 18 insertions, 50 deletions
diff --git a/contrib/docker/Dockerfile b/contrib/docker/Dockerfile
index bf5caa286..7d4aa2a92 100644
--- a/contrib/docker/Dockerfile
+++ b/contrib/docker/Dockerfile
@@ -69,7 +69,7 @@ RUN $CPANM Email::MIME::Attachment::Stripper \
&& $CPANM JSON::RPC \
&& $CPANM MIME::Parser \
&& $CPANM Template::Plugin::GD::Image \
- && $CPANM Test::WWW::Selenium
+ && $CPANM Test::WWW::Selenium \
&& $CPANM TheSchwartz \
&& $CPANM XMLRPC::Lite
RUN cd $BUGZILLA_HOME \
diff --git a/contrib/docker/generate_bmo_data.pl b/contrib/docker/generate_bmo_data.pl
index 575729f1c..a99f48059 100755
--- a/contrib/docker/generate_bmo_data.pl
+++ b/contrib/docker/generate_bmo_data.pl
@@ -91,14 +91,9 @@ if (!$dbh->selectrow_array("SELECT 1 FROM priority WHERE value = 'P1'")) {
my @platforms = qw(
All
ARM
- DEC
- HP
- PowerPC
x86
x86_64
- SGI
- Sun
- XScale
+ Unspecified
Other
);
@@ -113,63 +108,28 @@ if (!$dbh->selectrow_array("SELECT 1 FROM rep_platform WHERE value = 'ARM'")) {
my @oses= (
'All',
- 'Windows 95',
- 'Windows 98',
- 'Windows ME',
- 'Windows NT',
- 'Windows 2000',
+ 'Windows',
'Windows XP',
- 'Windows Server 2003',
'Windows Server 2008',
'Windows Vista',
'Windows 7',
'Windows 8',
- 'Windows 8 Metro',
'Windows 8.1',
'Windows 10',
- 'Windows CE',
- 'Windows Mobile 6 Standard',
- 'Windows Mobile 6 Professional',
- 'Windows Phone 7',
- 'Windows Phone 7.5',
- 'Windows Phone 7.8',
- 'Windows Phone 8',
- 'Mac System 7',
- 'Mac System 7.5',
- 'Mac System 7.6.1',
- 'Mac System 8.0',
- 'Mac System 8.5',
- 'Mac System 8.6',
- 'Mac System 9.x',
+ 'Windows Phone',
'Mac OS X',
'Linux',
'Gonk (Firefox OS)',
'Android',
- 'Maemo',
- 'MeeGo',
- 'Mer',
- 'iOS 3',
- 'iOS 4',
- 'iOS 5',
- 'iOS 6',
+ 'iOS',
'iOS 7',
+ 'iOS 8',
'BSDI',
'FreeBSD',
'NetBSD',
'OpenBSD',
- 'AIX',
- 'BeOS',
- 'HP-UX',
- 'IRIX',
- 'Neutrino',
- 'OpenVMS',
- 'OS/2',
- 'OSF/1',
- 'SunOS',
- 'Solaris',
- 'OpenSolaris',
- 'Symbian',
- 'Other',
+ 'Unspecified',
+ 'Other'
);
if (!$dbh->selectrow_array("SELECT 1 FROM op_sys WHERE value = 'AIX'")) {
@@ -295,6 +255,11 @@ my @products = (
},
);
+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 =
@@ -304,8 +269,11 @@ for my $product (@products) {
if ($product->{classification}) {
$class_id = Bugzilla::Classification->new({ name => $product->{classification} })->id;
}
- $dbh->do('INSERT INTO products (name, description, classification_id) VALUES (?, ?, ?)',
- undef, ( $product->{product_name}, $product->{description}, $class_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} } );