| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | New tests for the content filtering MimeDel handler module. | bwarsaw | 2002-04-14 | 1 | -7/+179 | |
| | | ||||||
| * | Added a test of the SINAEMAIL bouncer | bwarsaw | 2002-04-11 | 1 | -0/+2 | |
| | | ||||||
| * | Weird bounce format from something called SINAEMAIL (sina.com) | bwarsaw | 2002-04-11 | 1 | -0/+128 | |
| | | ||||||
| * | Added a bunch of new Yahoo test cases. | bwarsaw | 2002-04-11 | 1 | -1/+23 | |
| | | ||||||
| * | A bunch of new Yahoo bounce examples, courtesy of David Abrahams. | bwarsaw | 2002-04-11 | 8 | -0/+909 | |
| | | | | | SF patch # 538983 | |||||
| * | Updates to what there is of the unit test suite. Lots of tests don't | bwarsaw | 2002-04-11 | 2 | -224/+31 | |
| | | | | | | make sense any more, many needed changing, etc. I really should run these more often (and add to them!) | |||||
| * | Added lockfile test. | bwarsaw | 2002-03-13 | 1 | -2/+2 | |
| | | ||||||
| * | A unit test for LockFile. Fairly dumb, but it makes sure the recently | bwarsaw | 2002-03-13 | 1 | -0/+45 | |
| | | | | | fixed "two-instance lock file trample" bug is tested. | |||||
| * | A functional test, throwing messages at Mailman as fast as you can | bwarsaw | 2002-03-13 | 1 | -0/+60 | |
| | | | | | (with a dumb throttle). | |||||
| * | DATA: Add a test of the HotPop bounce | bwarsaw | 2002-02-28 | 1 | -1/+2 | |
| | | ||||||
| * | intermediate | bwarsaw | 2002-02-28 | 1 | -0/+181 | |
| | | ||||||
| * | test_remove_member_clears(): New test to make sure that removing a | bwarsaw | 2002-02-09 | 1 | -1/+45 | |
| | | | | | | | | member clears the bounce and delivery status information for a member. test_bounce_info(): Make sure that the case invariants are upheld. | |||||
| * | A nimda example. | bwarsaw | 2002-01-26 | 1 | -0/+1050 | |
| | | ||||||
| * | Add another DSN test. | bwarsaw | 2001-12-31 | 1 | -0/+1 | |
| | | ||||||
| * | test_basic_option(), test_set_digests(), | bwarsaw | 2001-12-19 | 1 | -19/+24 | |
| | | | | | | | | | | | | test_set_dont_receive_own_posts(), test_disable_mime(), test_conceal_subscription(), test_suppress_password_reminder(), test_receive_nonmatching_topics(): Remove DisableDelivery tests -- they're obsolete. test_set_disable_delivery(): Convert to the new MemberAdaptor APIs. test_delivery_status_time(): New test. | |||||
| * | test_implicit_sender_and_errors_to(): The sender is now the -bounces | bwarsaw | 2001-12-19 | 1 | -4/+8 | |
| | | | | | | | | | | address instead of the -admin address. Update the test. test_list_headers(): Hack around for PUBLIC_ARCHIVE_URL. test_list_headers_with_description(): Remove a test that we do elsewhere and is just problematic to do here. | |||||
| * | A bounce message that kill's Mailman 2.0.6's DSN.py | bwarsaw | 2001-11-06 | 1 | -0/+89 | |
| | | ||||||
| * | TestHold: Get rid of tests for the old sender moderation variables | bwarsaw | 2001-10-20 | 1 | -108/+53 | |
| | | | | | | (posters, member_only_posts, etc.). Added some tests for the new Reply-To: munging behavior. | |||||
| * | TestModerate: Add a placehold for a more comprehensive test of this | bwarsaw | 2001-10-15 | 1 | -0/+7 | |
| | | | | | handler module. | |||||
| * | Oops this one didn't get checked in. | bwarsaw | 2001-10-12 | 1 | -0/+120 | |
| | | ||||||
| * | test_user_notification(): The List-Archive: field url no longer ends | bwarsaw | 2001-10-12 | 1 | -1/+1 | |
| | | | | | in a slash. | |||||
| * | MODULES: Add test_runners.py, but remove test_message.py. This one | bwarsaw | 2001-10-12 | 1 | -2/+6 | |
| | | | | | | | | | can't be run automatically because it requires that the qrunner/mailmanctl be started. But we can't run the other tests if mailmanctl is running because it'll attempt to deliver stuff out of the queues and the other tests deliberately check various files in the queue. | |||||
| * | Fleshed out the ToDigest tests a little bit (still incomplete). | bwarsaw | 2001-10-11 | 1 | -3/+78 | |
| | | ||||||
| * | test_urgent_reject(): Test that a RejectMessage is raised, not a | bwarsaw | 2001-10-09 | 1 | -2/+112 | |
| | | | | | | | RejectUrgentMessage. TestTagger: many tests of the Tagger handler. | |||||
| * | Added a bunch of new tests for bounce formats from Exim, Yahoo, | bwarsaw | 2001-10-09 | 1 | -0/+26 | |
| | | | | | | | | | Postfix/DSN, and Netscape. test_caiwireless(), test_microsoft(): I lost my samples of these bounce formats, so added some really trivial (and mostly useless) tests of these MTAs. | |||||
| * | Some more sample bounces | bwarsaw | 2001-10-09 | 4 | -0/+359 | |
| | | ||||||
| * | New tests for the Message class (Mailman's not mimelib's), the | bwarsaw | 2001-10-09 | 3 | -0/+466 | |
| | | | | | SafeDict class and the SecurityManager class. | |||||
| * | MODULES: Added message, safedict, and security_mgr tests. | bwarsaw | 2001-10-09 | 1 | -1/+2 | |
| | | ||||||
| * | Move the actual tests out of here and into test_message.py; this file | bwarsaw | 2001-10-09 | 1 | -71/+7 | |
| | | | | | | | | | | | only contains the base class. Get SMTPPORT out of mm_cfg.py since they must match (it has to set up a server listening on the same port that SMTPDirect will try to connect to as a client). tearDown(): Need this to close the server and call the base class tearDown(), so that the port will be available for each subsequent test. | |||||
| * | Don't set host_name and web_page_url in the individual tests, since | bwarsaw | 2001-10-05 | 1 | -26/+7 | |
| | | | | | | | | | that's done in TestBase now. Also, comment out the assertions about received_time. Clock skew apparently makes this too unreliable (we could do an interval test, but it's not worth it). | |||||
| * | TestBase.setUp(): set host_name and web_page_url attributes since | bwarsaw | 2001-10-05 | 1 | -0/+3 | |
| | | | | | | | we're almost always going to want these. Also .Save() the list so it's config.pck gets written out to disk (needed for the thru-smtp tests which open the list in a separate process). | |||||
| * | intermediate | bwarsaw | 2001-10-05 | 1 | -0/+139 | |
| | | ||||||
| * | Add a test of the Qmail detector. | bwarsaw | 2001-10-04 | 1 | -0/+2 | |
| | | ||||||
| * | A qmail bounce example | bwarsaw | 2001-10-04 | 1 | -0/+103 | |
| | | ||||||
| * | Standard .cvsignore and Makefile.in's for these test directories. | bwarsaw | 2001-10-01 | 4 | -0/+138 | |
| | | ||||||
| * | Many more unit tests, this time including a nearly complete coverage | bwarsaw | 2001-10-01 | 7 | -9/+2114 | |
| | | | | | | of the Mailman.Handlers modules (some handlers are not yet tested but those that are are complete). | |||||
| * | checkSMTP32Failure(): Test for SMTP.py failure when message has no | bwarsaw | 2001-09-10 | 1 | -6/+12 | |
| | | | | | X-Mailer: header. | |||||
| * | Recognize and test the low-hanging fruit of the MM2.0.x undetectable | bwarsaw | 2001-08-04 | 1 | -1/+10 | |
| | | | | | bounce messages I've collected. | |||||
| * | intermediate | bwarsaw | 2001-08-04 | 1 | -0/+121 | |
| | | ||||||
| * | intermediate | bwarsaw | 2001-08-04 | 1 | -0/+92 | |
| | | ||||||
| * | intermediate | bwarsaw | 2001-08-04 | 1 | -0/+122 | |
| | | ||||||
| * | intermediate | bwarsaw | 2001-08-04 | 1 | -0/+96 | |
| | | ||||||
| * | New bounce examples | bwarsaw | 2001-08-04 | 2 | -0/+300 | |
| | | ||||||
| * | intermediate | bwarsaw | 2001-08-04 | 1 | -0/+105 | |
| | | ||||||
| * | The start of a unit test suite. Yay! Only tests bounce detection so | bwarsaw | 2001-08-04 | 2 | -0/+123 | |
| | | | | | far. | |||||
| * | A bunch of new bounce examples. | bwarsaw | 2001-08-04 | 6 | -0/+1017 | |
| | | ||||||
| * | More bounce samples. debian_01.txt -> sendmail_01.txt | bwarsaw | 2001-02-28 | 6 | -0/+655 | |
| | | | | | bounce_01.txt is still unrecognized. | |||||
| * | oops, anonymize | bwarsaw | 2000-12-29 | 1 | -3/+3 | |
| | | ||||||
| * | This message has some very funky header values. | bwarsaw | 2000-12-29 | 1 | -0/+62 | |
| | | ||||||
| * | More bounce samples. | bwarsaw | 2000-12-28 | 6 | -0/+1036 | |
| | | ||||||
