#!/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 use strict; use lib "."; use Bugzilla; use Bugzilla::Constants; use Bugzilla::Error; use Bugzilla::Util; use Bugzilla::User; use Bugzilla::Testopia::Util; use Bugzilla::Testopia::TestCase; use JSON; use vars qw($vars); require "globals.pl"; Bugzilla->login(LOGIN_REQUIRED); my $cgi = Bugzilla->cgi; my $template = Bugzilla->template; print $cgi->header; push @{$::vars->{'style_urls'}}, 'testopia/css/default.css'; my $action = $cgi->param('action') || ''; my @plan_id = $cgi->param('plan_id'); unless ($plan_id[0]){ $vars->{'product'} = Bugzilla::Testopia::Product->new({'name' => $cgi->param('product')}) if ($cgi->param('product')); $vars->{'bug_id'} = $cgi->param('bug'); $vars->{'form_action'} = 'tr_new_case.cgi'; $template->process("testopia/plan/choose.html.tmpl", $vars) || ThrowTemplateError($template->error()); exit; } my %seen; my @plans; my @plan_ids; my @categories; foreach my $entry (@plan_id){ foreach my $id (split(/[\s,]+/, $entry)){ detaint_natural($id); validate_test_id($id, 'plan'); $seen{$id} = 1; } } foreach my $id (keys %seen){ my $plan = Bugzilla::Testopia::TestPlan->new($id); ThrowUserError("testopia-create-denied", {'object' => 'Test Case', 'plan' => $plan}) unless $plan->canedit; push @plan_ids, $id; push @plans, $plan; push @categories, @{$plan->product->categories}; } ThrowUserError('testopia-create-category', {'plan' => $plans[0] }) if scalar @categories < 1; if ($action eq 'Add'){ my $alias = $cgi->param('alias')|| ''; my $category = $cgi->param('category'); my $status = $cgi->param('status'); my $priority = $cgi->param('priority'); my $isautomated = $cgi->param("isautomated"); my $script = $cgi->param("script")|| ''; my $arguments = $cgi->param("arguments")|| ''; my $summary = $cgi->param("summary")|| ''; my $requirement = $cgi->param("requirement")|| ''; my $tcaction = $cgi->param("tcaction") || ''; my $tceffect = $cgi->param("tceffect") || ''; my $tcsetup = $cgi->param("tcsetup") || ''; my $tcbreakdown = $cgi->param("tcbreakdown") || ''; my $tcdependson = $cgi->param("tcdependson")|| ''; my $tcblocks = $cgi->param("tcblocks")|| ''; my $tester = $cgi->param("tester") || ''; my $est_time = $cgi->param("estimated_time") || ''; my @comps = $cgi->param("components"); if ($tester){ $tester = login_to_id(trim($cgi->param('tester'))) || ThrowUserError("invalid_username", { name => $cgi->param('tester') }); } ThrowUserError('testopia-missing-required-field', {'field' => 'summary'}) if $summary eq ''; detaint_natural($status); detaint_natural($category); detaint_natural($priority); detaint_natural($isautomated); $est_time =~ m/(\d+)[:\s](\d+)[:\s](\d+)/; ThrowUserError('testopia-format-error', {'field' => 'Estimated Time' }) unless ($1 < 24 && $2 < 60 && $3 < 60); $est_time = "$1:$2:$3"; # All inserts are done with placeholders so this is OK trick_taint($alias); trick_taint($script); trick_taint($arguments); trick_taint($summary); trick_taint($requirement); trick_taint($tcaction); trick_taint($tceffect); trick_taint($tcdependson); trick_taint($tcsetup); trick_taint($tcbreakdown); trick_taint($tcblocks); validate_selection($category, 'category_id', 'test_case_categories'); validate_selection($status, 'case_status_id', 'test_case_status'); my @components; foreach my $id (@comps){ detaint_natural($id); validate_selection($id, 'id', 'components'); push @components, $id; } my @runs; foreach my $runid (split(/[\s,]+/, $cgi->param('addruns'))){ validate_test_id($runid, 'run'); push @runs, Bugzilla::Testopia::TestRun->new($runid); } my $case = Bugzilla::Testopia::TestCase->new({ 'alias' => $alias || undef, 'case_status_id' => $status, 'category_id' => $category, 'priority_id' => $priority, 'isautomated' => $isautomated, 'estimated_time' => $est_time, 'script' => $script, 'arguments' => $arguments, 'summary' => $summary, 'requirement' => $requirement, 'default_tester_id' => $tester, 'author_id' => Bugzilla->user->id, 'action' => $tcaction, 'effect' => $tceffect, 'setup' => $tcsetup, 'breakdown' => $tcbreakdown, 'dependson' => $tcdependson, 'blocks' => $tcblocks, 'plans' => \@plans, }); # Check for valid ids or aliases in dependecy fields foreach my $field ("dependson", "blocks") { if ($case->{$field}) { my @validvalues; foreach my $id (split(/[\s,]+/, $case->{$field})) { next unless $id; Bugzilla::Testopia::Util::validate_test_id($id, 'case'); push(@validvalues, $id); } $case->{$field} = join(",", @validvalues); } } ThrowUserError('testiopia-alias-exists', {'alias' => $alias}) if $case->check_alias($alias); ThrowUserError('testiopia-invalid-data', {'field' => 'isautomated', 'value' => $isautomated }) if ($isautomated !~ /^[01]$/); my $case_id = $case->store; $case = Bugzilla::Testopia::TestCase->new($case_id); $case->add_component($_) foreach (@components); if ($cgi->param('addtags')){ foreach my $name (split(/,/, $cgi->param('addtags'))){ trick_taint($name); my $tag = Bugzilla::Testopia::TestTag->new({'tag_name' => $name}); my $tag_id = $tag->store; $case->add_tag($tag_id); } } foreach my $run (@runs){ $run->add_case_run($case->id); } $vars->{'action'} = "Commit"; $vars->{'form_action'} = "tr_show_case.cgi"; $vars->{'case'} = $case; $vars->{'tr_message'} = "Case $case_id Created. Add another"; $vars->{'backlink'} = $case; $template->process("testopia/case/show.html.tmpl", $vars) || ThrowTemplateError($template->error()); } #################### ### Display Form ### #################### else { my $bug; my $summary; my $text; if( $cgi->param('bug')){ $bug = Bugzilla::Bug->new($cgi->param('bug'),Bugzilla->user->id); my $bug_id = $bug->bug_id; my $description = ${$bug->GetComments}[0]; my $short_desc = $bug->short_desc; $summary = Param('bug-to-test-case-summary'); my $action = Param('bug-to-test-case-action'); my $effect = Param('bug-to-test-case-results'); $summary =~ s/%id%/$bug_id/g; $summary =~ s/%summary%/$short_desc/g; $action =~ s/%id%/$bug_id<\/a>/g; $action =~ s/%description%/$description/g; $effect =~ s/%id%/$bug_id<\/a>/g; $text = {'action' => $action, 'effect' => $effect}; } else { $text = {'action' => Param('new-case-action-template'), 'effect' => Param('new-case-results-template')}; } my $case = Bugzilla::Testopia::TestCase->new( {'case_id' => 0, 'plans' => \@plans, 'category' => {'name' => 'Default'}, 'summary' => $summary, 'text' => $text, }); my @comps; foreach my $comp (@{$case->get_selectable_components(1)}){ push @comps, $comp->default_qa_contact->login; } $vars->{'case'} = $case; $vars->{'components'} = objToJson(\@comps); $vars->{'action'} = "Add"; $vars->{'form_action'} = "tr_new_case.cgi"; $template->process("testopia/case/add.html.tmpl", $vars) || ThrowTemplateError($template->error()); }