Bläddra i källkod

Test PATCH method.

Stefano Cossu 7 år sedan
förälder
incheckning
349a53a439

+ 0 - 0
tests/data/update_algebra_tests/delete+insert+where.sparql → tests/data/sparql_update/delete+insert+where.sparql


+ 0 - 0
tests/data/update_algebra_tests/delete_variable_where.sparql → tests/data/sparql_update/delete_variable_where.sparql


+ 0 - 0
tests/data/update_algebra_tests/delete_variable_where_variable.sparql → tests/data/sparql_update/delete_variable_where_variable.sparql


+ 0 - 0
tests/data/update_algebra_tests/multiline_clause.sparql → tests/data/sparql_update/multiline_clause.sparql


+ 0 - 0
tests/data/update_algebra_tests/simple_delete.sparql → tests/data/sparql_update/simple_delete.sparql


+ 0 - 0
tests/data/update_algebra_tests/simple_insert.sparql → tests/data/sparql_update/simple_insert.sparql


+ 0 - 0
tests/data/update_algebra_tests/union_where.sparql → tests/data/sparql_update/union_where.sparql


+ 1 - 1
tests/data/update_algebra_tests/variable_subjects.sparql → tests/data/sparql_update/variable_subjects.sparql

@@ -7,5 +7,5 @@ INSERT {
   ?s dc:title "Ciao" .
 }
 WHERE {
-  ?s dc:title ?t .
+  ?s dc:title "Hello" .
 }

+ 36 - 11
tests/endpoints/test_ldp.py

@@ -37,15 +37,6 @@ class TestLdp:
         #assert ldp_resp.data == rest_resp.data
 
 
-    def test_post_resource(self, client):
-        '''
-        Check response headers for a POST operation with empty payload.
-        '''
-        res = self.client.post('/ldp/')
-        assert res.status_code == 201
-        assert 'Location' in res.headers
-
-
     def test_put_empty_resource(self, random_uuid):
         '''
         Check response headers for a PUT operation with empty payload.
@@ -94,6 +85,15 @@ class TestLdp:
         assert sha1(resp.data).hexdigest() == rnd_img['hash']
 
 
+    def test_post_resource(self, client):
+        '''
+        Check response headers for a POST operation with empty payload.
+        '''
+        res = self.client.post('/ldp/')
+        assert res.status_code == 201
+        assert 'Location' in res.headers
+
+
     def test_post_slug(self):
         '''
         Verify that a POST with slug results in the expected URI only if the
@@ -129,6 +129,33 @@ class TestLdp:
         assert self.client.post('/ldp/post_409').status_code == 409
 
 
+    def test_patch(self):
+        '''
+        Test patching a resource.
+        '''
+        path = '/ldp/test_patch01'
+        self.client.put(path)
+
+        uri = Toolbox().base_url + '/test_patch01'
+
+        self.client.patch(path,
+                data=open('tests/data/sparql_update/simple_insert.sparql'),
+                headers={'content-type' : 'application/sparql-update'})
+
+        resp = self.client.get(path)
+        g = Graph().parse(data=resp.data, format='text/turtle')
+        print('Triples after first PATCH: {}'.format(set(g)))
+        assert g[ URIRef(uri) : nsc['dc'].title : Literal('Hello') ]
+
+        self.client.patch(path,
+                data=open('tests/data/sparql_update/delete+insert+where.sparql'),
+                headers={'content-type' : 'application/sparql-update'})
+
+        resp = self.client.get(path)
+        g = Graph().parse(data=resp.data, format='text/turtle')
+        assert g[ URIRef(uri) : nsc['dc'].title : Literal('Ciao') ]
+
+
     def test_delete(self):
         create_resp = self.client.put('/ldp/test_delete01')
         delete_resp = self.client.delete('/ldp/test_delete01')
@@ -153,8 +180,6 @@ class TestLdp:
 
 
 
-
-
 @pytest.mark.usefixtures('client_class')
 @pytest.mark.usefixtures('db')
 class TestPrefHeader: