зеркало из https://github.com/mozilla/pjs.git
321 строка
13 KiB
Perl
Executable File
321 строка
13 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 Testopia System.
|
|
#
|
|
# The Initial Developer of the Original Code is Greg Hendricks.
|
|
# Portions created by Greg Hendricks are Copyright (C) 2006
|
|
# Novell. All Rights Reserved.
|
|
#
|
|
# Contributor(s): Greg Hendricks <ghendricks@novell.com>
|
|
|
|
use strict;
|
|
use lib ".";
|
|
|
|
use Bugzilla;
|
|
use Bugzilla::Constants;
|
|
use Bugzilla::Config;
|
|
use Bugzilla::Error;
|
|
use Bugzilla::Util;
|
|
use Bugzilla::Testopia::Util;
|
|
use Bugzilla::Testopia::Search;
|
|
use Bugzilla::Testopia::Table;
|
|
use Bugzilla::Testopia::TestRun;
|
|
|
|
use JSON;
|
|
|
|
use vars qw($vars);
|
|
|
|
Bugzilla->login(LOGIN_REQUIRED);
|
|
|
|
my $template = Bugzilla->template;
|
|
my $cgi = Bugzilla->cgi;
|
|
|
|
my $action = $cgi->param('action') || '';
|
|
my $term = trim($cgi->param('query')) || '';
|
|
|
|
push @{$::vars->{'style_urls'}}, 'testopia/css/default.css';
|
|
|
|
# Quicksearch allows a user to look up any of the major objects in Testopia
|
|
# using a simple prefix. For instance, e:linux will search for all environments
|
|
# with linux in the name or tr 33 will bring up Test Run 33.
|
|
# If only one is returned, we jump to the appropriate page, otherwise
|
|
# we display the list.
|
|
|
|
# If we have a term we are using this quicksearch
|
|
if ($term){
|
|
SWITCH: for ($term){
|
|
/^(tag)?[\s:-]+(.*)$/i && do{
|
|
my $text = trim($2);
|
|
print "Location: " . Bugzilla->params->{'urlbase'} . "tr_tags.cgi?tag=" . $text . "\n\n";
|
|
last SWITCH;
|
|
};
|
|
/^(plan|TP|p)?[\s:-]+(.*)$/i && do{
|
|
my $text = trim($2);
|
|
if ($text =~ /^\d+$/){
|
|
print "Location: " . Bugzilla->params->{'urlbase'} . "tr_show_plan.cgi?plan_id=" . $text . "\n\n";
|
|
}
|
|
else{
|
|
$cgi->param('current_tab', 'plan');
|
|
$cgi->param('name_type', 'anywordssubstr');
|
|
$cgi->param('name', $text);
|
|
|
|
my $search = Bugzilla::Testopia::Search->new($cgi);
|
|
my $table = Bugzilla::Testopia::Table->new('plan', 'tr_list_plans.cgi', $cgi, undef, $search->query);
|
|
if ($table->list_count == 1){
|
|
print "Location: " . Bugzilla->params->{'urlbase'} . "tr_show_plan.cgi?plan_id=" . ${$table->list}[0]->id . "\n\n";
|
|
}
|
|
else{
|
|
print "Location: " . Bugzilla->params->{'urlbase'} . "tr_list_plans.cgi?" . $table->get_query_part . "\n\n";
|
|
}
|
|
|
|
}
|
|
last SWITCH;
|
|
};
|
|
/^(run|TR|r)?[\s:-]+(.*)$/i && do{
|
|
my $text = trim($2);
|
|
if ($text =~ /^\d+$/){
|
|
print "Location: " . Bugzilla->params->{'urlbase'} . "tr_show_run.cgi?run_id=" . $text . "\n\n";
|
|
}
|
|
else{
|
|
$cgi->param('current_tab', 'run');
|
|
$cgi->param('summary_type', 'anywordssubstr');
|
|
$cgi->param('summary', $text);
|
|
|
|
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 == 1){
|
|
print "Location: " . Bugzilla->params->{'urlbase'} . "tr_show_run.cgi?run_id=" . ${$table->list}[0]->id . "\n\n";
|
|
}
|
|
else{
|
|
print "Location: " . Bugzilla->params->{'urlbase'} . "tr_list_runs.cgi?" . $table->get_query_part . "\n\n";
|
|
}
|
|
|
|
}
|
|
last SWITCH;
|
|
};
|
|
/^(environment|TE|e|env)?[\s:-]+(.*)$/i && do{
|
|
my $text = trim($2);
|
|
if ($text =~ /^\d+$/){
|
|
print "Location: " . Bugzilla->params->{'urlbase'} . "tr_show_environment.cgi?env_id=" . $text . "\n\n";
|
|
}
|
|
else{
|
|
$cgi->param('current_tab', 'environment');
|
|
$cgi->param('name_type', 'anywordssubstr');
|
|
$cgi->param('name', $text);
|
|
|
|
my $search = Bugzilla::Testopia::Search->new($cgi);
|
|
my $table = Bugzilla::Testopia::Table->new('environment', 'tr_list_runs.cgi', $cgi, undef, $search->query);
|
|
if ($table->list_count == 1){
|
|
print "Location: " . Bugzilla->params->{'urlbase'} . "tr_show_environment.cgi?env_id=" . ${$table->list}[0]->id . "\n\n";
|
|
}
|
|
else{
|
|
print "Location: " . Bugzilla->params->{'urlbase'} . "tr_list_environments.cgi?" . $table->get_query_part . "\n\n";
|
|
}
|
|
|
|
}
|
|
last SWITCH;
|
|
};
|
|
/^(caserun|TCR|cr)?[\s:-]+(.*)$/i && do{
|
|
my $text = trim($2);
|
|
if ($text =~ /^\d+$/){
|
|
print "Location: " . Bugzilla->params->{'urlbase'} . "tr_show_caserun.cgi?caserun_id=" . $text . "\n\n";
|
|
}
|
|
else{
|
|
$cgi->param('current_tab', 'case_run');
|
|
$cgi->param('notes_type', 'anywordssubstr');
|
|
$cgi->param('notes', $text);
|
|
|
|
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 == 1){
|
|
print "Location: " . Bugzilla->params->{'urlbase'} . "tr_show_caserun.cgi?caserun_id=" . ${$table->list}[0]->id . "\n\n";
|
|
}
|
|
else{
|
|
print "Location: " . Bugzilla->params->{'urlbase'} . "tr_list_caseruns.cgi?" . $table->get_query_part . "\n\n";
|
|
}
|
|
|
|
}
|
|
last SWITCH;
|
|
};
|
|
do{
|
|
$term =~ s/^(case|TC|c)?[\s:-]+(.*)$/$2/gi;
|
|
if ($term =~ /^\d+$/){
|
|
print "Location: " . Bugzilla->params->{'urlbase'} . "tr_show_case.cgi?case_id=" . $term . "\n\n";
|
|
}
|
|
else{
|
|
$cgi->param('current_tab', 'case');
|
|
$cgi->param('summary_type', 'anywordssubstr');
|
|
$cgi->param('summary', $term);
|
|
|
|
my $search = Bugzilla::Testopia::Search->new($cgi);
|
|
my $table = Bugzilla::Testopia::Table->new('case', 'tr_list_cases.cgi', $cgi, undef, $search->query);
|
|
if ($table->list_count == 1){
|
|
print "Location: " . Bugzilla->params->{'urlbase'} . "tr_show_case.cgi?case_id=" . ${$table->list}[0]->id . "\n\n";
|
|
}
|
|
else{
|
|
print "Location: " . Bugzilla->params->{'urlbase'} . "tr_list_cases.cgi?" . $table->get_query_part . "\n\n";
|
|
}
|
|
|
|
}
|
|
};
|
|
}
|
|
|
|
}
|
|
############
|
|
### Ajax ###
|
|
############
|
|
|
|
# This is where we lookup items typed into Dojo combo boxes
|
|
else{
|
|
print $cgi->header;
|
|
|
|
# Environment Lookup
|
|
if ($action eq 'getenv'){
|
|
Bugzilla->batch(1);
|
|
my $search = $cgi->param('search');
|
|
my $run_id = $cgi->param('run_id');
|
|
eval {
|
|
detaint_natural($run_id);
|
|
trick_taint($search);
|
|
validate_test_id($run_id, 'run');
|
|
};
|
|
exit if $@;
|
|
|
|
my $run = Bugzilla::Testopia::TestRun->new($run_id);
|
|
$search = "%$search%";
|
|
my $dbh = Bugzilla->dbh;
|
|
|
|
# The order of name and environment are important in the select statment.
|
|
# JSON will convert this to an array of arrays which Dojo will interpret
|
|
# as a select list in the ComboBox widget.
|
|
my $ref;
|
|
|
|
if ($run_id){
|
|
$ref = $dbh->selectall_arrayref(
|
|
"SELECT test_environments.name AS name, test_environments.environment_id
|
|
FROM test_environments
|
|
WHERE name like ? AND product_id = ? AND isactive = 1
|
|
UNION SELECT test_environments.name AS name, test_environments.environment_id
|
|
FROM test_case_runs
|
|
INNER JOIN test_environments ON test_case_runs.environment_id = test_environments.environment_id
|
|
WHERE name like ? AND test_case_runs.run_id = ?
|
|
AND isactive = 1
|
|
ORDER BY name",
|
|
undef, ($search, $run->plan->product_id,
|
|
$search, $run_id));
|
|
}
|
|
else{
|
|
$ref = $dbh->selectall_arrayref(
|
|
"SELECT name, environment_id
|
|
FROM test_environments
|
|
WHERE name like ? AND isactive = 1
|
|
ORDER BY name
|
|
LIMIT 20",
|
|
undef, ($search));
|
|
}
|
|
print objToJson($ref);
|
|
}
|
|
elsif ($action eq 'getuser'){
|
|
my $search = $cgi->param('search');
|
|
$search = "%$search%";
|
|
trick_taint($search);
|
|
my $dbh = Bugzilla->dbh;
|
|
|
|
my $query = "SELECT DISTINCT login_name, realname,";
|
|
if (Bugzilla->params->{'usevisibilitygroups'}) {
|
|
$query .= " COUNT(group_id) ";
|
|
} else {
|
|
$query .= " 1 ";
|
|
}
|
|
$query .= "FROM profiles ";
|
|
if (Bugzilla->params->{'usevisibilitygroups'}) {
|
|
$query .= "LEFT JOIN user_group_map " .
|
|
"ON user_group_map.user_id = userid AND isbless = 0 " .
|
|
"AND group_id IN(" .
|
|
join(', ', (-1, @{Bugzilla->user->visible_groups_inherited})) . ")";
|
|
}
|
|
$query .= " WHERE disabledtext = '' AND (login_name LIKE ? OR realname LIKE ?) ";
|
|
$query .= $dbh->sql_group_by('userid', 'login_name, realname');
|
|
$query .= " ORDER BY login_name LIMIT 20";
|
|
|
|
my $sth = $dbh->prepare($query);
|
|
$sth->execute($search,$search);
|
|
|
|
my @userlist;
|
|
while (my($login, $name, $visible) = $sth->fetchrow_array) {
|
|
if ($visible){
|
|
push @userlist, [
|
|
$name ? "$name <$login>" : $login, $login
|
|
];
|
|
}
|
|
}
|
|
|
|
print objToJson(\@userlist);
|
|
|
|
}
|
|
# Tag lookup
|
|
elsif ($action eq 'gettag'){
|
|
my $search = $cgi->param('search');
|
|
my @product_ids;
|
|
foreach my $id (split(",", $cgi->param('product_id'))){
|
|
push @product_ids, $id if detaint_natural($id);
|
|
}
|
|
my $product_ids = join(",". @product_ids);
|
|
|
|
trick_taint($search);
|
|
$search = "%$search%";
|
|
my $dbh = Bugzilla->dbh;
|
|
my $ref;
|
|
my $run_id = $cgi->param('run_id');
|
|
if ($product_ids){
|
|
$ref = $dbh->selectall_arrayref(
|
|
"SELECT tag_name, test_tags.tag_id
|
|
FROM test_tags
|
|
INNER JOIN test_case_tags ON test_tags.tag_id = test_case_tags.tag_id
|
|
INNER JOIN test_cases on test_cases.case_id = test_case_tags.case_id
|
|
INNER JOIN test_case_plans on test_case_plans.case_id = test_cases.case_id
|
|
INNER JOIN test_plans ON test_plans.plan_id = test_case_plans.plan_id
|
|
WHERE tag_name like ? AND test_plans.product_id IN ($product_ids)
|
|
UNION SELECT tag_name, test_tags.tag_id
|
|
FROM test_tags
|
|
INNER JOIN test_plan_tags ON test_plan_tags.tag_id = test_tags.tag_id
|
|
INNER JOIN test_plans ON test_plan_tags.plan_id = test_plans.plan_id
|
|
WHERE tag_name like ? AND test_plans.product_id IN ($product_ids)
|
|
UNION SELECT tag_name, test_tags.tag_id
|
|
FROM test_tags
|
|
INNER JOIN test_run_tags ON test_run_tags.tag_id = test_tags.tag_id
|
|
INNER JOIN test_runs ON test_runs.run_id = test_run_tags.run_id
|
|
INNER JOIN test_plans ON test_plans.plan_id = test_runs.plan_id
|
|
WHERE tag_name like ? AND test_plans.product_id IN ($product_ids)
|
|
ORDER BY tag_name",
|
|
undef, ($search,$search,$search));
|
|
}
|
|
else {
|
|
$ref = $dbh->selectall_arrayref(
|
|
"SELECT tag_name, tag_id
|
|
FROM test_tags
|
|
WHERE tag_name like ?
|
|
ORDER BY tag_name
|
|
LIMIT 20",
|
|
undef, $search);
|
|
}
|
|
print objToJson($ref);
|
|
}
|
|
|
|
# If neither is true above, display the quicksearch form and explaination.
|
|
else{
|
|
$template->process("testopia/quicksearch.html.tmpl", $vars) ||
|
|
ThrowTemplateError($template->error());
|
|
}
|
|
} |