Browse Source

Merge branch 'development' into migration_overrides

Stefano Cossu 7 years ago
parent
commit
7281545f4b
4 changed files with 25 additions and 3 deletions
  1. 1 1
      .github/issue_template.md
  2. 1 1
      docs/contributing.rst
  3. 3 1
      lakesuperior/endpoints/ldp.py
  4. 20 0
      tests/endpoints/test_ldp.py

+ 1 - 1
.github/issue_template.md

@@ -1,4 +1,4 @@
-### Environemnt
+### Environment
 
 Operating system: 
 

+ 1 - 1
docs/contributing.rst

@@ -23,7 +23,7 @@ To set up the software for developing code, documentation, or tests::
     source bin/activate
     git clone https://github.com/scossu/lakesuperior.git app
     cd app
-    python setup.py develop
+    pip install -e .
 
 This will allow to alter the code without having to recompile it after changes.
 

+ 3 - 1
lakesuperior/endpoints/ldp.py

@@ -251,7 +251,7 @@ def post_resource(parent_uid):
     hdr = {'Location' : uri}
 
     if mimetype and not is_rdf:
-        hdr['Link'] = '<{0}/fcr:metadata>; rel="describedby"; anchor="<{0}>"'\
+        hdr['Link'] = '<{0}/fcr:metadata>; rel="describedby"; anchor="{0}"'\
                 .format(uri)
 
     out_headers.update(hdr)
@@ -312,6 +312,8 @@ def put_resource(uid):
 
 
 @ldp.route('/<path:uid>', methods=['PATCH'], strict_slashes=False)
+@ldp.route('/', defaults={'uid': '/'}, methods=['PATCH'],
+        strict_slashes=False)
 def patch_resource(uid, is_metadata=False):
     """
     https://www.w3.org/TR/ldp/#ldpr-HTTP_PATCH

+ 20 - 0
tests/endpoints/test_ldp.py

@@ -298,6 +298,26 @@ class TestLdp:
         assert self.client.post('/ldp/post_409').status_code == 409
 
 
+    def test_patch_root(self):
+        '''
+        Test patching root node.
+        '''
+        path = '/ldp/'
+        self.client.get(path)
+        uri = g.webroot + '/'
+
+        with open('tests/data/sparql_update/simple_insert.sparql') as data:
+            resp = self.client.patch(path,
+                    data=data,
+                    headers={'content-type' : 'application/sparql-update'})
+
+        assert resp.status_code == 204
+
+        resp = self.client.get(path)
+        gr = Graph().parse(data=resp.data, format='text/turtle')
+        assert gr[ URIRef(uri) : nsc['dc'].title : Literal('Hello') ]
+
+
     def test_patch(self):
         '''
         Test patching a resource.