summaryrefslogtreecommitdiff
path: root/yarns/700-artifact-store.yarn
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2018-03-24 14:02:20 +0200
committerLars Wirzenius <liw@liw.fi>2018-03-24 19:06:20 +0200
commit78d9c80226c52bcd70e27e7ee2a3a7754f644b53 (patch)
tree407131ac41543d0950c9576a141de2a6cc693973 /yarns/700-artifact-store.yarn
parentd8bf5f405c48980d69a4f2cef8179fb605f0c743 (diff)
downloadick2-78d9c80226c52bcd70e27e7ee2a3a7754f644b53.tar.gz
Change: rename blob service to artifact store
Diffstat (limited to 'yarns/700-artifact-store.yarn')
-rw-r--r--yarns/700-artifact-store.yarn52
1 files changed, 52 insertions, 0 deletions
diff --git a/yarns/700-artifact-store.yarn b/yarns/700-artifact-store.yarn
new file mode 100644
index 0000000..2dcea2e
--- /dev/null
+++ b/yarns/700-artifact-store.yarn
@@ -0,0 +1,52 @@
+<!--
+
+Copyright 2017-2018 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/>.
+
+-->
+
+# Artifact store
+
+This scenario tests the artifact store API to store and retrieve
+blobs. At this stage the artifact store is the simplest possible; so
+simple, in fact, it will certainly change in the future.
+
+ SCENARIO artifact store
+
+Set up the artifact store.
+
+ GIVEN an RSA key pair for token signing
+ AND artifact store 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 artifact store
+
+Try to get a non-existent blob. It should result in an error.
+
+ WHEN user retrieves /blobs/cake from artifact store
+ 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 artifact store as /blobs/cake
+ THEN result has status code 200
+
+ WHEN user retrieves /blobs/cake from artifact store
+ THEN result has status code 200
+ AND body is the same as the blob cake
+
+ FINALLY stop artifact store