Skip to content

Commit 0e23a42

Browse files
committed
Added Exception for URI too long (414). Related to #124
1 parent b1047fb commit 0e23a42

File tree

3 files changed

+38
-6
lines changed

3 files changed

+38
-6
lines changed

SPARQLWrapper/SPARQLExceptions.py

+13-4
Original file line numberDiff line numberDiff line change
@@ -28,31 +28,40 @@ def __init__(self, response=None):
2828

2929
class EndPointInternalError(SPARQLWrapperException):
3030
"""
31-
Exception type for 500 Internal Server Error responses.
31+
Exception type for 500 Internal Server Error responses. Usually HTTP response status code 500.
3232
"""
3333

3434
msg = "endpoint returned code 500 and response"
3535

3636

3737
class QueryBadFormed(SPARQLWrapperException):
3838
"""
39-
Query Bad Formed exception
39+
Query Bad Formed exception. Usually HTTP response status code 400.
4040
"""
4141

4242
msg = "a bad request has been sent to the endpoint, probably the sparql query is bad formed"
4343

4444

4545
class EndPointNotFound(SPARQLWrapperException):
4646
"""
47-
End Point Not Found exception
47+
End Point Not Found exception. Usually HTTP response status code 404.
4848
"""
4949

5050
msg = "it was impossible to connect with the endpoint in that address, check if it is correct"
5151

5252
class Unauthorized(SPARQLWrapperException):
5353
"""
54-
Access is denied due to invalid credentials (unauthorized).
54+
Access is denied due to invalid credentials (unauthorized). Usually HTTP response status code 401.
5555
@since: 1.8.2
5656
"""
5757

5858
msg = "access is denied due to invalid credentials (unauthorized). Check the credentials"
59+
60+
class URITooLong(SPARQLWrapperException):
61+
"""
62+
The URI requested by the client is longer than the server is willing to interpret. Usually HTTP response status code 414.
63+
@since: 1.8.3
64+
"""
65+
66+
msg = "the URI requested by the client is longer than the server is willing to interpret. Check if the request was sent using GET method instead of POST method."
67+

SPARQLWrapper/Wrapper.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
import json
5353
from KeyCaseInsensitiveDict import KeyCaseInsensitiveDict
54-
from SPARQLExceptions import QueryBadFormed, EndPointNotFound, EndPointInternalError, Unauthorized
54+
from SPARQLExceptions import QueryBadFormed, EndPointNotFound, EndPointInternalError, Unauthorized, URITooLong
5555
from SPARQLWrapper import __agent__
5656

5757
# From <https://www.w3.org/TR/sparql11-protocol/#query-success>
@@ -868,6 +868,7 @@ def _query(self):
868868
@raise QueryBadFormed: If the C{HTTP return code} is C{400}.
869869
@raise Unauthorized: If the C{HTTP return code} is C{401}.
870870
@raise EndPointNotFound: If the C{HTTP return code} is C{404}.
871+
@raise URITooLong: If the C{HTTP return code} is C{414}.
871872
@raise EndPointInternalError: If the C{HTTP return code} is C{500}.
872873
"""
873874
request = self._createRequest()
@@ -885,6 +886,8 @@ def _query(self):
885886
raise EndPointNotFound(e.read())
886887
elif e.code == 401:
887888
raise Unauthorized(e.read())
889+
elif e.code == 414:
890+
raise URITooLong(e.read())
888891
elif e.code == 500:
889892
raise EndPointInternalError(e.read())
890893
else:

test/wrapper_test.py

+21-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
from SPARQLWrapper import XML, GET, POST, JSON, JSONLD, N3, TURTLE, RDF, SELECT, INSERT, RDFXML, CSV, TSV
3838
from SPARQLWrapper import URLENCODED, POSTDIRECTLY
3939
from SPARQLWrapper import BASIC, DIGEST
40-
from SPARQLWrapper.Wrapper import QueryResult, QueryBadFormed, EndPointNotFound, EndPointInternalError
40+
from SPARQLWrapper.Wrapper import QueryResult, QueryBadFormed, EndPointNotFound, EndPointInternalError, Unauthorized, URITooLong
4141

4242

4343
class FakeResult(object):
@@ -498,6 +498,16 @@ def testQuery(self):
498498
except:
499499
self.fail('got wrong exception')
500500

501+
_victim.urlopener = urlopener_error_generator(401)
502+
try:
503+
self.wrapper.query()
504+
self.fail('should have raised exception')
505+
except Unauthorized as e:
506+
# TODO: check exception-format
507+
pass
508+
except:
509+
self.fail('got wrong exception')
510+
501511
_victim.urlopener = urlopener_error_generator(404)
502512
try:
503513
self.wrapper.query()
@@ -508,6 +518,16 @@ def testQuery(self):
508518
except:
509519
self.fail('got wrong exception')
510520

521+
_victim.urlopener = urlopener_error_generator(414)
522+
try:
523+
self.wrapper.query()
524+
self.fail('should have raised exception')
525+
except URITooLong as e:
526+
# TODO: check exception-format
527+
pass
528+
except:
529+
self.fail('got wrong exception')
530+
511531
_victim.urlopener = urlopener_error_generator(500)
512532
try:
513533
self.wrapper.query()

0 commit comments

Comments
 (0)