]> git.donarmstrong.com Git - debbugs.git/commitdiff
fix block 1 issue
authorDon Armstrong <don@donarmstrong.com>
Fri, 28 Aug 2009 23:24:06 +0000 (16:24 -0700)
committerDon Armstrong <don@donarmstrong.com>
Fri, 28 Aug 2009 23:24:06 +0000 (16:24 -0700)
Debbugs/Control.pm
debian/changelog
t/11_blocks.t [new file with mode: 0644]

index 27dadb8fd37431c800aa58c3a32571b9d5ec93c2..5534261bdfbffdc848137e506ccabdf5aee0179c 100644 (file)
@@ -319,10 +319,10 @@ sub set_blocks {
            join(', ',grep {$_ !~ /^\d+$/} make_list($param{block}));
     }
     my $mode = 'set';
-    if (exists $param{add}) {
+    if ($param{add}) {
        $mode = 'add';
     }
-    elsif (exists $param{remove}) {
+    elsif ($param{remove}) {
        $mode = 'remove';
     }
 
@@ -351,7 +351,7 @@ sub set_blocks {
            $ok_blockers{$blocker} = 1;
            my @merged_bugs;
            push @merged_bugs, make_list($data->{mergedwith});
-           $ok_blockers{@merged_bugs} = (1) x @merged_bugs if @merged_bugs;
+           @ok_blockers{@merged_bugs} = (1) x @merged_bugs if @merged_bugs;
        }
        else {
            $bad_blockers{$blocker} = 1;
index 44cf90bc3b510565f01e87246eb6265444c0e7e4..2fa786d01aee96991eb104f2d9062d410f57cb13 100644 (file)
@@ -1,3 +1,11 @@
+debbugs (2.4.2~exp1) experimental; urgency=low
+
+  * Allow (almost) exactly what RFC2822 allows in comments (closes:
+    #497144)
+  * Fix problem with non-existant /etc/debbugs/config
+
+ -- Don Armstrong <don@debian.org>  Wed, 26 Aug 2009 21:32:53 -0700
+
 debbugs (2.4.2~exp0) experimental; urgency=low
 
   [ Anthony Towns ]
diff --git a/t/11_blocks.t b/t/11_blocks.t
new file mode 100644 (file)
index 0000000..553fe25
--- /dev/null
@@ -0,0 +1,161 @@
+# -*- mode: cperl;-*-
+
+use Test::More tests => 14;
+
+use warnings;
+use strict;
+
+# Here, we're going to shoot messages through a set of things that can
+# happen.
+
+# First, we're going to send mesages to receive.
+# To do so, we'll first send a message to submit,
+# then send messages to the newly created bugnumber.
+
+use IO::File;
+use File::Temp qw(tempdir);
+use Cwd qw(getcwd);
+use Debbugs::MIME qw(create_mime_message);
+use File::Basename qw(dirname basename);
+# The test functions are placed here to make things easier
+use lib qw(t/lib);
+use DebbugsTest qw(:all);
+use Data::Dumper;
+
+# HTTP::Server:::Simple defines a SIG{CHLD} handler that breaks system; undef it here.
+$SIG{CHLD} = sub {};
+my %config;
+eval {
+     %config = create_debbugs_configuration(debug => exists $ENV{DEBUG}?$ENV{DEBUG}:0);
+};
+if ($@) {
+     BAIL_OUT($@);
+}
+
+my $sendmail_dir = $config{sendmail_dir};
+my $spool_dir = $config{spool_dir};
+my $config_dir = $config{config_dir};
+
+END{
+     if ($ENV{DEBUG}) {
+         diag("spool_dir:   $spool_dir\n");
+         diag("config_dir:   $config_dir\n");
+         diag("sendmail_dir: $sendmail_dir\n");
+     }
+}
+
+# We're going to use create mime message to create these messages, and
+# then just send them to receive.
+
+for my $bug (1..11) {
+    send_message(to=>'submit@bugs.something',
+                headers => [To   => 'submit@bugs.something',
+                            From => 'foo@bugs.something',
+                            Subject => 'Submiting a bug '.$bug,
+                           ],
+                body => <<EOF) or fail('Unable to send message');
+Package: foo
+Severity: normal
+
+This is a silly bug $bug
+EOF
+}
+
+# next, we check to see that (at least) the proper messages have been
+# sent out. 1) ack to submitter 2) mail to maintainer
+
+# This keeps track of the previous size of the sendmail directory
+my $SD_SIZE = 0;
+$SD_SIZE =
+    num_messages_sent($SD_SIZE,10,
+                     $sendmail_dir,
+                     'submit messages appear to have been sent out properly',
+                    );
+
+
+# now send a message to the bug
+
+send_message(to => '1@bugs.something',
+            headers => [To   => '1@bugs.something',
+                        From => 'foo@bugs.something',
+                        Subject => 'Sending a message to a bug',
+                       ],
+            body => <<EOF) or fail('sending message to 1@bugs.someting failed');
+Package: foo
+Severity: normal
+
+This is a silly bug
+EOF
+
+$SD_SIZE =
+    num_messages_sent($SD_SIZE,2,
+                     $sendmail_dir,
+                     '1@bugs.something messages appear to have been sent out properly');
+
+# just check to see that control doesn't explode
+send_message(to => 'control@bugs.something',
+            headers => [To   => 'control@bugs.something',
+                        From => 'foo@bugs.something',
+                        Subject => 'Munging a bug',
+                       ],
+            body => <<EOF) or fail 'message to control@bugs.something failed';
+block 10 with 2
+thanks
+EOF
+
+# now we need to check to make sure the control message was processed without errors
+ok(system('sh','-c','find '.$sendmail_dir.q( -type f | xargs grep -q "Subject: Processed: Munging a bug")) == 0,
+   'control@bugs.something message was parsed without errors');
+eval "use Debbugs::Status qw(read_bug writebug);";
+my $status = read_bug(bug=>10);
+ok($status->{blockedby} eq '2','bug 10 is blocked by 2 (and only 2)');
+$status = read_bug(bug=>2);
+ok($status->{blocks} eq '10','bug 2 blocks 10 (and only 10)');
+
+send_message(to => 'control@bugs.something',
+            headers => [To   => 'control@bugs.something',
+                        From => 'foo@bugs.something',
+                        Subject => 'Munging a bug',
+                       ],
+            body => <<EOF) or fail 'message to control@bugs.something failed';
+merge 3 4
+block 10 by 3
+thanks
+EOF
+ok(system('sh','-c','find '.$sendmail_dir.q( -type f | xargs grep -q "Subject: Processed: Munging a bug")) == 0,
+   'control@bugs.something message was parsed without errors');
+$status = read_bug(bug=>10);
+ok(is_deeply([sort split /\ /,$status->{blockedby}],[qw(2 3 4)]),'bug 10 is blocked by exactly 2, 3, and 4');
+send_message(to => 'control@bugs.something',
+            headers => [To   => 'control@bugs.something',
+                        From => 'foo@bugs.something',
+                        Subject => 'Munging a bug',
+                       ],
+            body => <<EOF) or fail 'message to control@bugs.something failed';
+unblock 10 with 2
+thanks
+EOF
+
+ok(system('sh','-c','find '.$sendmail_dir.q( -type f | xargs grep -q "Subject: Processed: Munging a bug")) == 0,
+   'control@bugs.something message was parsed without errors');
+
+$status = read_bug(bug=>10);
+ok(is_deeply([sort split /\ /,$status->{blockedby}],[qw(3 4)]),'bug 10 is blocked by exactly 3 and 4');
+$status = read_bug(bug=>3);
+ok($status->{blocks} eq '10','bug 3 blocks exactly 10');
+
+send_message(to => 'control@bugs.something',
+            headers => [To   => 'control@bugs.something',
+                        From => 'foo@bugs.something',
+                        Subject => 'Munging a bug',
+                       ],
+            body => <<EOF) or fail 'message to control@bugs.something failed';
+block 3 with 5
+thanks
+EOF
+ok(system('sh','-c','find '.$sendmail_dir.q( -type f | xargs grep -q "Subject: Processed: Munging a bug")) == 0,
+   'control@bugs.something message was parsed without errors');
+
+
+$status = read_bug(bug=>3);
+ok($status->{blockedby} eq '5','bug 3 is blocked by exactly 5');