summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-11-03 18:18:43 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-11-03 18:18:43 (GMT)
commit4103bc09a4326a4ffd8d2dbc60a01d256d18b1f7 (patch)
treea5d8a116d3ebb5ec2a42bf6f55a6156bd168fd62 /Lib
parent33d144aa36ee8afb2f9a8c0b081e6f24591106ab (diff)
downloadcpython-4103bc09a4326a4ffd8d2dbc60a01d256d18b1f7.zip
cpython-4103bc09a4326a4ffd8d2dbc60a01d256d18b1f7.tar.gz
cpython-4103bc09a4326a4ffd8d2dbc60a01d256d18b1f7.tar.bz2
Issue #10281: nntplib now returns None for absent fields in the OVER/XOVER
response, instead of raising an exception.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/nntplib.py7
-rw-r--r--Lib/test/test_nntplib.py27
2 files changed, 30 insertions, 4 deletions
diff --git a/Lib/nntplib.py b/Lib/nntplib.py
index b067d6b..fde339a 100644
--- a/Lib/nntplib.py
+++ b/Lib/nntplib.py
@@ -205,11 +205,12 @@ def _parse_overview(lines, fmt, data_process_func=None):
is_metadata = field_name.startswith(':')
if i >= n_defaults and not is_metadata:
# Non-default header names are included in full in the response
- h = field_name + ":"
- if token[:len(h)].lower() != h:
+ # (unless the field is totally empty)
+ h = field_name + ": "
+ if token and token[:len(h)].lower() != h:
raise NNTPDataError("OVER/XOVER response doesn't include "
"names of additional headers")
- token = token[len(h):].lstrip(" ")
+ token = token[len(h):] if token else None
fields[fmt[i]] = token
overview.append((article_number, fields))
return overview
diff --git a/Lib/test/test_nntplib.py b/Lib/test/test_nntplib.py
index e62b240..8da901f1 100644
--- a/Lib/test/test_nntplib.py
+++ b/Lib/test/test_nntplib.py
@@ -457,7 +457,7 @@ class NNTPv1Handler:
"\tThu, 22 Jul 2010 09:14:14 -0400"
"\t<A29863FA-F388-40C3-AA25-0FD06B09B5BF@gmail.com>"
"\t\t6683\t16"
- "\tXref: news.gmane.org gmane.comp.python.authors:58"
+ "\t"
"\n"
# An UTF-8 overview line from fr.comp.lang.python
"59\tRe: Message d'erreur incompréhensible (par moi)"
@@ -824,6 +824,8 @@ class NNTPv1v2TestsMixin:
":lines": "16",
"xref": "news.gmane.org gmane.comp.python.authors:57"
})
+ art_num, over = overviews[1]
+ self.assertEqual(over["xref"], None)
art_num, over = overviews[2]
self.assertEqual(over["subject"],
"Re: Message d'erreur incompréhensible (par moi)")
@@ -1028,6 +1030,29 @@ class MiscTests(unittest.TestCase):
':lines': '17',
'xref': 'news.example.com misc.test:3000363',
})
+ # Second example; here the "Xref" field is totally absent (including
+ # the header name) and comes out as None
+ lines = [
+ '3000234\tI am just a test article\t"Demo User" '
+ '<nobody@example.com>\t6 Oct 1998 04:38:40 -0500\t'
+ '<45223423@example.com>\t<45454@example.net>\t1234\t'
+ '17\t\t',
+ ]
+ overview = nntplib._parse_overview(lines, fmt)
+ (art_num, fields), = overview
+ self.assertEqual(fields['xref'], None)
+ # Third example; the "Xref" is an empty string, while "references"
+ # is a single space.
+ lines = [
+ '3000234\tI am just a test article\t"Demo User" '
+ '<nobody@example.com>\t6 Oct 1998 04:38:40 -0500\t'
+ '<45223423@example.com>\t \t1234\t'
+ '17\tXref: \t',
+ ]
+ overview = nntplib._parse_overview(lines, fmt)
+ (art_num, fields), = overview
+ self.assertEqual(fields['references'], ' ')
+ self.assertEqual(fields['xref'], '')
def test_parse_datetime(self):
def gives(a, b, *c):