gecko-dev/webtools/testopia/tr_list_runs.cgi

140 строки
4.9 KiB
Perl
Executable File

#!/usr/bin/perl -wT
# -*- Mode: perl; indent-tabs-mode: nil -*-
#
# The contents of this file are subject to the Mozilla Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/MPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is the Bugzilla Test Runner System.
#
# The Initial Developer of the Original Code is Maciej Maczynski.
# Portions created by Maciej Maczynski are Copyright (C) 2001
# Maciej Maczynski. All Rights Reserved.
#
# Contributor(s): Greg Hendricks <ghendricks@novell.com>
use strict;
use lib ".";
use Bugzilla;
use Bugzilla::Config;
use Bugzilla::Error;
use Bugzilla::Constants;
use Bugzilla::Util;
use Bugzilla::Testopia::Util;
use Bugzilla::Testopia::Search;
use Bugzilla::Testopia::Table;
use Bugzilla::Testopia::TestRun;
use vars qw($vars $template);
require "globals.pl";
my $dbh = Bugzilla->dbh;
my $cgi = Bugzilla->cgi;
my $template = Bugzilla->template;
Bugzilla->login();
print $cgi->header;
my $action = $cgi->param('action') || '';
if ($action eq 'Commit'){
Bugzilla->login(LOGIN_REQUIRED);
# Get the list of checked items. This way we don't have to cycle through
# every test case, only the ones that are checked.
my $reg = qr/r_([\d]+)/;
my @runs;
foreach my $r ($cgi->param()){
push @runs, Bugzilla::Testopia::TestRun->new($1) if $r =~ $reg;
}
ThrowUserError('testopia-none-selected', {'object' => 'run'}) if (scalar @runs < 1);
foreach my $run (@runs){
ThowUserError('insufficient-perms') unless $run->canedit;
my $manager = DBNameToIdAndCheck(trim($cgi->param('manager'))) if $cgi->param('manager');
my $status;
if ($cgi->param('run_status')){
if ($cgi->param('run_status') == -1){
$status = $run->stop_date;
}
else {
$status = get_time_stamp();
}
}
my $enviro = $cgi->param('environment') == -1 ? $run->environment->id : $cgi->param('environment');
my $build = $cgi->param('build') == -1 ? $run->build->id : $cgi->param('build');
detaint_natural($status);
validate_test_id($enviro, 'environment');
validate_test_id($build, 'build');
my %newvalues = (
'manager_id' => $manager || $run->manager->id,
'stop_date' => $status,
'environment_id' => $enviro,
'build_id' => $build
);
$run->update(\%newvalues);
if ($cgi->param('addtags')){
foreach my $name (split(/[\s,]+/, $cgi->param('addtags'))){
trick_taint($name);
my $tag = Bugzilla::Testopia::TestTag->new({'tag_name' => $name});
my $tag_id = $tag->store;
$run->add_tag($tag_id);
}
}
}
my $run = Bugzilla::Testopia::TestRun->new({ 'run_id' => 0 });
$vars->{'run'} = $run;
$vars->{'title'} = "Update Susccessful";
$vars->{'tr_message'} = scalar @runs . " Test Runs Updated";
$vars->{'current_tab'} = 'run';
$vars->{'env_list'} = get_environments();
$vars->{'build_list'} = get_all_builds();
$template->process("testopia/search/advanced.html.tmpl", $vars)
|| ThrowTemplateError($template->error());
exit;
}
else {
$cgi->param('current_tab', 'run');
my $search = Bugzilla::Testopia::Search->new($cgi);
my $table = Bugzilla::Testopia::Table->new('run', 'tr_list_runs.cgi', $cgi, undef, $search->query);
if ($table->list_count > 0){
my $plan_id = $table->list->[0]->plan->product_id;
foreach my $run (@{$table->list}){
if ($run->plan->product_id != $plan_id){
$vars->{'multiprod'} = 1;
last;
}
}
if (!$vars->{'multiprod'}) {
my $p = $table->list->[0]->plan;
my $build_list = $p->builds;
unshift @{$build_list}, {'id' => -1, 'name' => "--Do Not Change--"};
$vars->{'build_list'} = $build_list;
}
}
my $r = Bugzilla::Testopia::TestRun->new({'run_id' => 0 });
my $env_list = $r->environments;
my $status_list = $r->get_status_list;
unshift @{$env_list}, {'id' => -1, 'name' => "--Do Not Change--"};
unshift @{$status_list}, {'id' => -1, 'name' => "--Do Not Change--"};
$vars->{'env_list'} = $env_list;
$vars->{'status_list'} = $status_list;
$vars->{'fullwidth'} = 1; #novellonly
$vars->{'dotweak'} = UserInGroup('runtests');
$vars->{'table'} = $table;
$template->process("testopia/run/list.html.tmpl", $vars)
|| ThrowTemplateError($template->error());
}