summaryrefslogtreecommitdiff
path: root/yarns/700-blob-service.yarn
diff options
context:
space:
mode:
Diffstat (limited to 'yarns/700-blob-service.yarn')
-rw-r--r--yarns/700-blob-service.yarn52
1 files changed, 52 insertions, 0 deletions
diff --git a/yarns/700-blob-service.yarn b/yarns/700-blob-service.yarn
new file mode 100644
index 0000000..1fd0c06
--- /dev/null
+++ b/yarns/700-blob-service.yarn
@@ -0,0 +1,52 @@
+<!--
+
+Copyright 2017 Lars Wirzenius
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU Affero General Public License for more details.
+
+You should have received a copy of the GNU Affero General Public License
+along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+-->
+
+# Blob service
+
+This scenario tests the blob service API to store and retrieve blobs.
+At this stage the blob service is the simplest possible; so simple, in
+fact, it will certainly change in the future.
+
+ SCENARIO blob service
+
+Set up the blob service.
+
+ GIVEN an RSA key pair for token signing
+ AND blob service config uses blobs at the blob directory
+ AND an access token for user with scopes
+ ... uapi_blobs_id_put
+ ... uapi_blobs_id_get
+ AND a running blob service
+
+Try to get a non-existent blob. It should result in an error.
+
+ WHEN user retrieves /blobs/cake from blob service
+ THEN result has status code 404
+
+Create and store a blob, retrieve it and verify we get it back intack.
+
+ WHEN user creates a blob named cake with random data
+ AND user sends blob cake to blob service as /blobs/cake
+ THEN result has status code 200
+
+ WHEN user retrieves /blobs/cake from blob service
+ THEN result has status code 200
+ AND body is the same as the blob cake
+
+ FINALLY stop blob service