]> git.donarmstrong.com Git - debbugs.git/blob - t/07_bugreport.t
add the bugreport.cgi test script
[debbugs.git] / t / 07_bugreport.t
1 # -*- mode: cperl;-*-
2 # $Id: 05_mail.t,v 1.1 2005/08/17 21:46:17 don Exp $
3
4 use Test::More tests => 2;
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 # The test functions are placed here to make things easier
23 use lib qw(t/lib);
24 use DebbugsTest qw(:all);
25 use Data::Dumper;
26
27 my %config;
28 eval {
29      %config = create_debbugs_configuration(debug => exists $ENV{DEBUG}?$ENV{DEBUG}:0);
30 };
31 if ($@) {
32      BAIL_OUT($@);
33 }
34
35 # Output some debugging information if there's an error
36 END{
37      if ($ENV{DEBUG}) {
38           foreach my $key (keys %config) {
39                diag("$key: $config{$key}\n");
40           }
41      }
42 }
43
44 # create a bug
45 send_message(to=>'submit@bugs.something',
46              headers => [To   => 'submit@bugs.something',
47                          From => 'foo@bugs.something',
48                          Subject => 'Submiting a bug',
49                         ],
50              body => <<EOF) or fail('Unable to send message');
51 Package: foo
52 Severity: normal
53
54 This is a silly bug
55 EOF
56
57
58 # test bugreport.cgi
59
60 # start up an HTTP::Server::Simple
61 my $bugreport_cgi_handler = sub {
62      # I do not understand why this is necessary.
63      $ENV{DEBBUGS_CONFIG_FILE} = "$config{config_dir}/debbugs_config";
64      print qx(perl -I. -T cgi/bugreport.cgi);
65 };
66
67 my $port = 11342;
68
69 ok(DebbugsTest::HTTPServer::fork_and_create_webserver($bugreport_cgi_handler,$port),
70    'forked HTTP::Server::Simple successfully');
71
72
73 my $mech = Test::WWW::Mechanize->new();
74
75 $mech->get_ok('http://localhost:'.$port.'/?bug=1');