1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
# -*- sh -*-
#
# volume-related tests
#
## create volume
t GET libpod/info 200
volumepath=$(jq -r ".store.volumePath" <<<"$output")
t POST libpod/volumes/create name=foo1 201 \
.Name=foo1 \
.Driver=local \
.Mountpoint=$volumepath/foo1/_data \
.CreatedAt~[0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}.* \
.Labels={} \
.Options={}
t POST libpod/volumes/create 201
t POST libpod/volumes/create \
Name=foo2 \
Label='{"testlabel":"testonly"}' \
Options='{"type":"tmpfs","o":"nodev,noexec"}}' \
201 \
.Name=foo2 \
.Labels.testlabel=testonly \
.Options.type=tmpfs \
.Options.o=nodev,noexec
t POST libpod/volumes/create \
Name=foo3 \
Label='{"testlabel":""}' \
Options='{"type":"tmpfs","o":"nodev,noexec"}}' \
201 \
.Name=foo3 \
.Labels.testlabel="" \
.Options.type=tmpfs \
.Options.o=nodev,noexec
t POST libpod/volumes/create \
Name=foo4 \
Label='{"testlabel1":"testonly"}' \
Options='{"type":"tmpfs","o":"nodev,noexec"}}' \
201 \
.Name=foo4 \
.Labels.testlabel1=testonly \
.Options.type=tmpfs \
.Options.o=nodev,noexec
# Negative test
# We have created a volume named "foo1"
t POST libpod/volumes/create name=foo1 500 \
.cause="volume already exists" \
.message~.* \
.response=500
## list volume
t GET libpod/volumes/json 200 \
.[0].Name~.* \
.[0].Mountpoint~.* \
.[0].CreatedAt~[0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}.*
t GET libpod/volumes/json?filters='{"name":["foo1"]}' 200 \
length=1 \
.[0].Name=foo1
t GET libpod/volumes/json?filters='{"name":%20["foo1",%20"foo2"]}' 200 \
length=2 \
.[0].Name=foo1 \
.[1].Name=foo2
t GET libpod/volumes/json?filters='{"name":["nonexistent"]}' 200 length=0
t GET libpod/volumes/json?filters='{"label":["testlabel"]}' 200 length=2
t GET libpod/volumes/json?filters='{"label":["testlabel=testonly"]}' 200 length=1
t GET libpod/volumes/json?filters='{"label":["testlabel1=testonly"]}' 200 length=1
## inspect volume
t GET libpod/volumes/foo1/json 200 \
.Name=foo1 \
.Mountpoint=$volumepath/foo1/_data \
.CreatedAt~[0-9]\\{4\\}-[0-9]\\{2\\}-[0-9]\\{2\\}.*
t GET libpod/volumes/nonexistent/json 404 \
.cause="no such volume" \
.message~.* \
.response=404
## Remove volumes
t DELETE libpod/volumes/foo1 204
#After remove foo1 volume, this volume should not exist
t GET libpod/volumes/foo1/json 404
# Negative test
t DELETE libpod/volumes/foo1 404 \
.cause="no such volume" \
.message~.* \
.response=404
## Prune volumes with label matching 'testlabel1=testonly'
t POST libpod/volumes/prune?filters='{"label":["testlabel1=testonly"]}' 200
t GET libpod/volumes/json?filters='{"label":["testlabel1=testonly"]}' 200 length=0
## Prune volumes with label matching 'testlabel'
t POST libpod/volumes/prune?filters='{"label":["testlabel"]}' 200
t GET libpod/volumes/json?filters='{"label":["testlabel"]}' 200 length=0
## Prune volumes
t POST libpod/volumes/prune 200
#After prune volumes, there should be no volume existing
t GET libpod/volumes/json 200 length=0
# vim: filetype=sh
|