]> git.donarmstrong.com Git - debbugs.git/blob - t/08_pkgreport.t
abstract out create config in tests
[debbugs.git] / t / 08_pkgreport.t
1 # -*- mode: cperl;-*-
2
3
4 use Test::More tests => 3;
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
26 my %config;
27 eval {
28      %config = create_debbugs_configuration();
29 };
30 if ($@) {
31      BAIL_OUT($@);
32 }
33
34 # create a bug
35 send_message(to=>'submit@bugs.something',
36              headers => [To   => 'submit@bugs.something',
37                          From => 'foo@bugs.something',
38                          Subject => 'Submitting a bug',
39                         ],
40              body => <<EOF) or fail('Unable to send message');
41 Package: foo
42 Severity: normal
43
44 This is a silly bug
45 EOF
46
47
48 # test bugreport.cgi
49
50 # start up an HTTP::Server::Simple
51 my $pkgreport_cgi_handler = sub {
52      # I do not understand why this is necessary.
53      $ENV{DEBBUGS_CONFIG_FILE} = "$config{config_dir}/debbugs_config";
54      # We cd here because pkgreport uses require ./common.pl
55      my $content = qx(cd cgi; perl -I.. -T pkgreport.cgi);
56      # Strip off the Content-Type: stuff
57      $content =~ s/^\s*Content-Type:[^\n]+\n*//si;
58      print $content;
59 };
60
61 my $port = 11342;
62
63 ok(DebbugsTest::HTTPServer::fork_and_create_webserver($pkgreport_cgi_handler,$port),
64    'forked HTTP::Server::Simple successfully');
65
66
67 my $mech = Test::WWW::Mechanize->new(autocheck => 1);
68
69 $mech->get_ok('http://localhost:'.$port.'/?pkg=foo');
70
71 # I'd like to use $mech->title_ok(), but I'm not sure why it doesn't
72 # work.
73 ok($mech->content()=~ qr/package foo/i,
74    'Package title seems ok',
75   );
76
77 # Test more stuff here