]> git.donarmstrong.com Git - debbugs.git/blob - t/07_bugreport.t
remove extraneous debugging print statement
[debbugs.git] / t / 07_bugreport.t
1 # -*- mode: cperl;-*-
2
3
4 use Test::More tests => 19;
5
6 use warnings;
7 use strict;
8
9 # Here, we're going to shoot messages through a set of things that can
10 # happen.
11
12 # First, we're going to send mesages to receive.
13 # To do so, we'll first send a message to submit,
14 # then send messages to the newly created bugnumber.
15
16 use IO::File;
17 use File::Temp qw(tempdir);
18 use Cwd qw(getcwd);
19 use Debbugs::MIME qw(create_mime_message);
20 use File::Basename qw(dirname basename);
21 use Test::WWW::Mechanize;
22 use HTTP::Status qw(RC_NOT_MODIFIED);
23 # The test functions are placed here to make things easier
24 use lib qw(t/lib);
25 use DebbugsTest qw(:all);
26
27 my %config = create_debbugs_configuration();
28
29
30 # create a bug
31 send_message(to=>'submit@bugs.something',
32              headers => [To   => 'submit@bugs.something',
33                          From => 'foo@bugs.something',
34                          Subject => 'Submitting a bug',
35                         ],
36              body => <<EOF) or fail('Unable to send message');
37 Package: foo
38 Severity: normal
39
40 This is a silly bug which contains an unescaped From line.
41
42 From line
43 EOF
44
45
46 # test bugreport.cgi
47
48 # start up an HTTP::Server::Simple
49 my $bugreport_cgi_handler = sub {
50     # I do not understand why this is necessary.
51     $ENV{DEBBUGS_CONFIG_FILE} = "$config{config_dir}/debbugs_config";
52     my $fh;
53     open($fh,'-|',-e './cgi/version.cgi'? 'perl -Ilib -T ./cgi/bugreport.cgi' : 'perl -Ilib -T ../cgi/bugreport.cgi');
54     my $headers;
55     my $status = 200;
56     while (<$fh>) {
57         if (/^\s*$/ and $status) {
58             print "HTTP/1.1 $status OK\n";
59             print $headers;
60             $status = 0;
61             print $_;
62         } elsif ($status) {
63             $headers .= $_;
64             if (/^Status:\s*(\d+)/i) {
65                 $status = $1;
66             }
67         } else {
68             print $_;
69         }
70     }
71 };
72
73 my $port = 11342;
74
75 ok(DebbugsTest::HTTPServer::fork_and_create_webserver($bugreport_cgi_handler,$port),
76    'forked HTTP::Server::Simple successfully');
77
78 my $mech = Test::WWW::Mechanize->new();
79
80 $mech->get_ok('http://localhost:'.$port.'/?bug=1',
81               'Page received ok');
82 ok($mech->content() =~ qr/\<title\>\#1.+Submitting a bug/i,
83    'Title of bug is submitting a bug');
84 my $etag = $mech->response->header('Etag');
85 $mech->get('http://localhost:'.$port.'/?bug=1',
86            'If-None-Match' => $etag);
87 is($mech->res->code, RC_NOT_MODIFIED,
88    'Not modified when the same ETag sent for bug');
89
90 $mech->get_ok('http://localhost:'.$port.'/?bug=1;mbox=yes',
91               'Page received ok');
92 ok($mech->content() =~ qr/Subject: Submitting a bug/i,
93    'Subject of bug maibox is right');
94 ok($mech->content() =~ qr/^From /m,
95    'Starts with a From appropriately');
96 ok($mech->content() =~ qr/^(>F|=46)rom line/m,
97    'From line escaped appropriately');
98
99 $mech->get_ok('http://localhost:'.$port.'/?bug=1;mboxmaint=yes',
100               'Page received ok');
101 ok($mech->content() !~ qr/[\x01\x02\x03\x05\x06\x07]/i,
102    'No unescaped states');
103 $etag = $mech->response->header('Etag');
104 $mech->get('http://localhost:'.$port.'/?bug=1;mboxmaint=yes',
105            'If-None-Match' => $etag);
106 is($mech->res->code, RC_NOT_MODIFIED,
107    'Not modified when the same ETag sent for bug maintmbox');
108
109 # now test the output of some control commands
110 my @control_commands =
111      (
112       reassign_foo => {command => 'reassign',
113                        value   => 'bar',
114                        regex => qr{<strong>bug reassigned from package &#39;<a href="pkgreport\.cgi\?package=foo">foo</a>&#39; to &#39;<a href="pkgreport\.cgi\?package=bar">bar</a>},
115                       },
116       forwarded_foo      => {command => 'forwarded',
117                              value   => 'https://foo.invalid/bugs?id=1',
118                              regex   => qr{<strong>Set bug forwarded-to-address to &#39;<a href="https://foo\.invalid/bugs\?id=1">https://foo\.invalid/bugs\?id=1</a>&#39;\.},
119                             },
120       forwarded_foo_2    => {command => 'forwarded',
121                              value   => 'https://foo.example/bugs?id=1',
122                              regex   => qr{<strong>Changed bug forwarded-to-address to &#39;<a href="https://foo\.example/bugs\?id=1">https://foo\.example/bugs\?id=1</a>&#39; from &#39;<a href="https://foo\.invalid/bugs\?id=1">https://foo\.invalid/bugs\?id=1</a>&#39;\.},
123                             },
124       clone        => {command => 'clone',
125                        value   => '-1',
126                        regex   => qr{<strong>Bug <a href="bugreport.cgi\?bug=1">1</a> cloned as bug <a href="bugreport.cgi\?bug=2">2</a>},
127                       },
128      );
129
130 while (my ($command,$control_command) = splice(@control_commands,0,2)) {
131   # just check to see that control doesn't explode
132   $control_command->{value} = " $control_command->{value}" if length $control_command->{value}
133     and $control_command->{value} !~ /^\s/;
134   send_message(to => 'control@bugs.something',
135                headers => [To   => 'control@bugs.something',
136                            From => 'foo@bugs.something',
137                            Subject => "Munging a bug with $command",
138                           ],
139                body => <<EOF) or fail 'message to control@bugs.something failed';
140 debug 10
141 $control_command->{command} 1$control_command->{value}
142 thanks
143 EOF
144                                   ;
145   # Now test that the output has changed accordingly
146   $mech->get_ok('http://localhost:'.$port.'/?bug=1',
147                 'Page received ok');
148   like($mech->content(), $control_command->{regex},
149        'Page matches regex');
150 }
151
152 # Other tests for bugs in the page should be added here eventually
153