Commit 1dd75a64 authored by Antoine Pitrou's avatar Antoine Pitrou

Backport test_nntplib fixes from default.

parent 62ba0428
...@@ -177,9 +177,12 @@ class NetworkedNNTPTestsMixin: ...@@ -177,9 +177,12 @@ class NetworkedNNTPTestsMixin:
self.assertTrue(resp.startswith("220 "), resp) self.assertTrue(resp.startswith("220 "), resp)
self.check_article_resp(resp, article, art_num) self.check_article_resp(resp, article, art_num)
# Tolerate running the tests from behind a NNTP virus checker # Tolerate running the tests from behind a NNTP virus checker
blacklist = lambda line: line.startswith(b'X-Antivirus')
filtered_head_lines = [line for line in head.lines
if not blacklist(line)]
filtered_lines = [line for line in article.lines filtered_lines = [line for line in article.lines
if not line.startswith(b'X-Antivirus')] if not blacklist(line)]
self.assertEqual(filtered_lines, head.lines + [b''] + body.lines) self.assertEqual(filtered_lines, filtered_head_lines + [b''] + body.lines)
def test_capabilities(self): def test_capabilities(self):
# The server under test implements NNTP version 2 and has a # The server under test implements NNTP version 2 and has a
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment