mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
1cd77bce7e
- When clicking the "edit testcase" link, make the edit form automatically display in manage_testcases.cgi - Display markdown formatted text for testcase data in manage_testcases.cgi
82 lines
2.7 KiB
Perl
Executable File
82 lines
2.7 KiB
Perl
Executable File
#!/usr/bin/perl -w
|
|
# -*- mode: cperl; c-basic-offset: 8; indent-tabs-mode: nil; -*-
|
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
# Version: MPL 1.1
|
|
#
|
|
# 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 Litmus.
|
|
#
|
|
# The Initial Developer of the Original Code is
|
|
# the Mozilla Corporation.
|
|
# Portions created by the Initial Developer are Copyright (C) 2006
|
|
# the Initial Developer. All Rights Reserved.
|
|
#
|
|
# Contributor(s):
|
|
# Chris Cooper <ccooper@deadsquid.com>
|
|
# Zach Lipton <zach@zachlipton.com>
|
|
#
|
|
# ***** END LICENSE BLOCK *****
|
|
|
|
use strict;
|
|
|
|
use Litmus;
|
|
use Litmus::Auth;
|
|
use Litmus::Error;
|
|
use Text::Markdown;
|
|
use JSON;
|
|
|
|
use CGI;
|
|
use Date::Manip;
|
|
|
|
my $c = Litmus->cgi();
|
|
print $c->header('text/plain');
|
|
|
|
if ($c->param("testcase_id")) {
|
|
my $testcase_id = $c->param("testcase_id");
|
|
my $testcase = Litmus::DB::Testcase->retrieve($testcase_id);
|
|
my @testgroups = Litmus::DB::Testgroup->search_EnabledByTestcase($testcase_id);
|
|
my @subgroups = Litmus::DB::Subgroup->search_EnabledByTestcase($testcase_id);
|
|
$testcase->{'testgroups'} = \@testgroups;
|
|
$testcase->{'subgroups'} = \@subgroups;
|
|
my $json = JSON->new(skipinvalid => 1, convblessed => 1);
|
|
|
|
# apply markdown formatting to the steps and expected results:
|
|
$testcase->{'steps_formatted'} = Text::Markdown::markdown($testcase->steps());
|
|
$testcase->{'expected_results_formatted'} = Text::Markdown::markdown($testcase->expected_results());
|
|
|
|
my $js = $json->objToJson($testcase);
|
|
print $js;
|
|
} elsif ($c->param("subgroup_id")) {
|
|
my $subgroup_id = $c->param("subgroup_id");
|
|
my $subgroup = Litmus::DB::Subgroup->retrieve($subgroup_id);
|
|
my @testgroups = Litmus::DB::Testgroup->search_EnabledBySubgroup($subgroup_id);
|
|
my @testcases = Litmus::DB::Testcase->search_EnabledBySubgroup($subgroup_id);
|
|
$subgroup->{'testgroups'} = \@testgroups;
|
|
$subgroup->{'testcases'} = \@testcases;
|
|
my $json = JSON->new(skipinvalid => 1, convblessed => 1);
|
|
my $js = $json->objToJson($subgroup);
|
|
print $js;
|
|
} elsif ($c->param("testgroup_id")) {
|
|
my $testgroup_id = $c->param("testgroup_id");
|
|
my $testgroup = Litmus::DB::Testgroup->retrieve($testgroup_id);
|
|
my @subgroups = Litmus::DB::Subgroup->search_EnabledByTestgroup($testgroup_id);
|
|
$testgroup->{'subgroups'} = \@subgroups;
|
|
my $json = JSON->new(skipinvalid => 1, convblessed => 1);
|
|
my $js = $json->objToJson($testgroup);
|
|
print $js;
|
|
}
|
|
|
|
|
|
|
|
|