ソースを参照

A couple initial tests.

Stefano Cossu 7 年 前
コミット
e4fe82d5cd
2 ファイル変更52 行追加0 行削除
  1. 44 0
      tests/endpoints/test_ldp.py
  2. 8 0
      tests/test_toolbox.py

+ 44 - 0
tests/endpoints/test_ldp.py

@@ -0,0 +1,44 @@
+import pytest
+import uuid
+
+from flask import url_for
+
+
+@pytest.fixture(scope='module')
+def random_uuid():
+    return str(uuid.uuid4())
+
+
+def test_get_root_node(client, db):
+    assert client.get(url_for('ldp.get_resource')).status_code == 200
+
+
+def test_post_resource(client, db):
+    '''
+    Check response headers for a POST operation with empty payload.
+    '''
+    res = client.post('/ldp/')
+    assert res.status_code == 201
+    assert 'Location' in res.headers
+
+
+def test_put_empty_resource(client, db, random_uuid):
+    '''
+    Check response headers for a PUT operation with empty payload.
+    '''
+    res = client.put('/ldp/{}'.format(random_uuid))
+    assert res.status_code == 201
+
+
+def test_put_existing_resource(client, db, random_uuid):
+    '''
+    Trying to PUT an existing resource should:
+
+    - Return a 204 if the payload is empty
+    - Return a 204 if the payload is RDF, server-managed triples are included
+      and the 'Prefer' header is set to 'handling=lenient'
+    - Return a 409 (ServerManagedTermError) if the payload is RDF,
+      server-managed triples are included and handling is set to 'strict'
+    '''
+    assert client.get('/ldp/{}'.format(random_uuid)).status_code == 200
+    assert client.put('/ldp/{}'.format(random_uuid)).status_code == 204

+ 8 - 0
tests/test_toolbox.py

@@ -0,0 +1,8 @@
+import pytest
+
+from lakesuperior.toolbox import Toolbox
+
+def test_camelcase(client):
+    c = client.get('/ldp')
+    in_str = 'test_input_string'
+    assert Toolbox().camelcase(in_str) == 'TestInputString'