diff options
author | Robin Houston <robin@lenny.robin> | 2011-09-07 20:52:44 +0100 |
---|---|---|
committer | Robin Houston <robin@lenny.robin> | 2011-09-07 20:52:44 +0100 |
commit | b9c785535a020c0bc1b871bca48cee71aa2143d9 (patch) | |
tree | ff32928cb69636bf8f3fab790817751722cc9796 /spec/script | |
parent | 5f4a2e316da8e9415b81b9fe1d8d5effe354803b (diff) |
Detect multipart/report bounce messages
Add support for multipart/report bounce messages to script/handle-mail-replies.
Also add a spec test for this script.
Diffstat (limited to 'spec/script')
-rw-r--r-- | spec/script/handle-mail-replies_spec.rb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/spec/script/handle-mail-replies_spec.rb b/spec/script/handle-mail-replies_spec.rb new file mode 100644 index 000000000..856476c3f --- /dev/null +++ b/spec/script/handle-mail-replies_spec.rb @@ -0,0 +1,33 @@ +require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') +require "external_command" + +def mail_reply_test(email_filename) + Dir.chdir RAILS_ROOT do + xc = ExternalCommand.new("script/handle-mail-replies", "--test") + xc.run(load_file_fixture(email_filename)) + + xc.err.should == "" + return xc + end +end + +describe "When filtering" do + it "should detect an Exim bounce" do + r = mail_reply_test("track-response-exim-bounce.email") + r.status.should == 1 + r.out.should == "user@example.com\n" + end + + it "should pass on a non-bounce message" do + r = mail_reply_test("incoming-request-bad-uuencoding.email") + r.status.should == 0 + r.out.should == "" + end + + it "should detect a multipart bounce" do + r = mail_reply_test("track-response-multipart-report.email") + r.status.should == 1 + r.out.should == "FailedUser@example.com\n" + end +end + |