1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: Apache-2.0
15 "git.arvados.org/arvados.git/sdk/go/arvados"
16 "git.arvados.org/arvados.git/sdk/go/arvadostest"
20 // Gocheck boilerplate
21 func Test(t *testing.T) {
25 var _ = Suite(&ServerRequiredSuite{})
26 var _ = Suite(&UnitSuite{})
27 var _ = Suite(&MockArvadosServerSuite{})
29 // Tests that require the Keep server running
30 type ServerRequiredSuite struct{}
32 func (s *ServerRequiredSuite) SetUpSuite(c *C) {
33 arvadostest.StartKeep(2, false)
37 func (s *ServerRequiredSuite) TearDownSuite(c *C) {
38 arvadostest.StopKeep(2)
41 func (s *ServerRequiredSuite) SetUpTest(c *C) {
42 arvadostest.ResetEnv()
45 func (s *ServerRequiredSuite) TestMakeArvadosClientSecure(c *C) {
46 os.Setenv("ARVADOS_API_HOST_INSECURE", "")
47 ac, err := MakeArvadosClient()
48 c.Assert(err, Equals, nil)
49 c.Check(ac.ApiServer, Equals, os.Getenv("ARVADOS_API_HOST"))
50 c.Check(ac.ApiToken, Equals, os.Getenv("ARVADOS_API_TOKEN"))
51 c.Check(ac.ApiInsecure, Equals, false)
54 func (s *ServerRequiredSuite) TestMakeArvadosClientInsecure(c *C) {
55 os.Setenv("ARVADOS_API_HOST_INSECURE", "true")
56 ac, err := MakeArvadosClient()
57 c.Assert(err, Equals, nil)
58 c.Check(ac.ApiInsecure, Equals, true)
59 c.Check(ac.ApiServer, Equals, os.Getenv("ARVADOS_API_HOST"))
60 c.Check(ac.ApiToken, Equals, os.Getenv("ARVADOS_API_TOKEN"))
61 c.Check(ac.Client.Transport.(*http.Transport).TLSClientConfig.InsecureSkipVerify, Equals, true)
64 func (s *ServerRequiredSuite) TestGetInvalidUUID(c *C) {
65 arv, err := MakeArvadosClient()
69 err = arv.Get("collections", "", nil, &getback)
70 c.Assert(err, Equals, ErrInvalidArgument)
71 c.Assert(len(getback), Equals, 0)
73 err = arv.Get("collections", "zebra-moose-unicorn", nil, &getback)
74 c.Assert(err, Equals, ErrInvalidArgument)
75 c.Assert(len(getback), Equals, 0)
77 err = arv.Get("collections", "acbd18db4cc2f85cedef654fccc4a4d8", nil, &getback)
78 c.Assert(err, Equals, ErrInvalidArgument)
79 c.Assert(len(getback), Equals, 0)
82 func (s *ServerRequiredSuite) TestGetValidUUID(c *C) {
83 arv, err := MakeArvadosClient()
87 err = arv.Get("collections", "zzzzz-4zz18-abcdeabcdeabcde", nil, &getback)
88 c.Assert(err, FitsTypeOf, APIServerError{})
89 c.Assert(err.(APIServerError).HttpStatusCode, Equals, http.StatusNotFound)
90 c.Assert(len(getback), Equals, 0)
92 err = arv.Get("collections", "acbd18db4cc2f85cedef654fccc4a4d8+3", nil, &getback)
93 c.Assert(err, FitsTypeOf, APIServerError{})
94 c.Assert(err.(APIServerError).HttpStatusCode, Equals, http.StatusNotFound)
95 c.Assert(len(getback), Equals, 0)
98 func (s *ServerRequiredSuite) TestInvalidResourceType(c *C) {
99 arv, err := MakeArvadosClient()
102 getback := make(Dict)
103 err = arv.Get("unicorns", "zzzzz-zebra-unicorn7unicorn", nil, &getback)
104 c.Assert(err, FitsTypeOf, APIServerError{})
105 c.Assert(err.(APIServerError).HttpStatusCode, Equals, http.StatusNotFound)
106 c.Assert(len(getback), Equals, 0)
108 err = arv.Update("unicorns", "zzzzz-zebra-unicorn7unicorn", nil, &getback)
109 c.Assert(err, FitsTypeOf, APIServerError{})
110 c.Assert(err.(APIServerError).HttpStatusCode, Equals, http.StatusNotFound)
111 c.Assert(len(getback), Equals, 0)
113 err = arv.List("unicorns", nil, &getback)
114 c.Assert(err, FitsTypeOf, APIServerError{})
115 c.Assert(err.(APIServerError).HttpStatusCode, Equals, http.StatusNotFound)
116 c.Assert(len(getback), Equals, 0)
119 func (s *ServerRequiredSuite) TestErrorResponse(c *C) {
120 arv, _ := MakeArvadosClient()
122 getback := make(Dict)
125 err := arv.Create("logs",
126 Dict{"log": Dict{"bogus_attr": "foo"}},
128 c.Assert(err, ErrorMatches, "arvados API server error: .*")
129 c.Assert(err, ErrorMatches, ".*unknown attribute(: | ')bogus_attr.*")
130 c.Assert(err, FitsTypeOf, APIServerError{})
131 c.Assert(err.(APIServerError).HttpStatusCode, Equals, 422)
135 err := arv.Create("bogus",
136 Dict{"bogus": Dict{}},
138 c.Assert(err, ErrorMatches, "arvados API server error: .*")
139 c.Assert(err, ErrorMatches, ".*Path not found.*")
140 c.Assert(err, FitsTypeOf, APIServerError{})
141 c.Assert(err.(APIServerError).HttpStatusCode, Equals, 404)
145 func (s *ServerRequiredSuite) TestAPIDiscovery_Get_defaultCollectionReplication(c *C) {
146 arv, err := MakeArvadosClient()
148 value, err := arv.Discovery("defaultCollectionReplication")
150 c.Assert(value, NotNil)
153 func (s *ServerRequiredSuite) TestAPIDiscovery_Get_noSuchParameter(c *C) {
154 arv, err := MakeArvadosClient()
156 value, err := arv.Discovery("noSuchParameter")
157 c.Assert(err, NotNil)
158 c.Assert(value, IsNil)
161 func (s *ServerRequiredSuite) TestCreateLarge(c *C) {
162 arv, err := MakeArvadosClient()
165 txt := arvados.SignLocator("d41d8cd98f00b204e9800998ecf8427e+0", arv.ApiToken, time.Now().Add(time.Minute), time.Minute, []byte(arvadostest.SystemRootToken))
166 // Ensure our request body is bigger than the Go http server's
167 // default max size, 10 MB.
168 for len(txt) < 12000000 {
169 txt = txt + " " + txt
171 txt = ". " + txt + " 0:0:foo\n"
174 err = arv.Create("collections", Dict{
175 "ensure_unique_name": true,
179 "manifest_text": txt,
183 c.Check(resp["portable_data_hash"], Not(Equals), "")
184 c.Check(resp["portable_data_hash"], Not(Equals), "d41d8cd98f00b204e9800998ecf8427e+0")
187 type UnitSuite struct{}
189 func (s *UnitSuite) TestUUIDMatch(c *C) {
190 c.Assert(UUIDMatch("zzzzz-tpzed-000000000000000"), Equals, true)
191 c.Assert(UUIDMatch("zzzzz-zebra-000000000000000"), Equals, true)
192 c.Assert(UUIDMatch("00000-00000-zzzzzzzzzzzzzzz"), Equals, true)
193 c.Assert(UUIDMatch("ZEBRA-HORSE-AFRICANELEPHANT"), Equals, false)
194 c.Assert(UUIDMatch(" zzzzz-tpzed-000000000000000"), Equals, false)
195 c.Assert(UUIDMatch("d41d8cd98f00b204e9800998ecf8427e"), Equals, false)
196 c.Assert(UUIDMatch("d41d8cd98f00b204e9800998ecf8427e+0"), Equals, false)
197 c.Assert(UUIDMatch(""), Equals, false)
200 func (s *UnitSuite) TestPDHMatch(c *C) {
201 c.Assert(PDHMatch("zzzzz-tpzed-000000000000000"), Equals, false)
202 c.Assert(PDHMatch("d41d8cd98f00b204e9800998ecf8427e"), Equals, false)
203 c.Assert(PDHMatch("d41d8cd98f00b204e9800998ecf8427e+0"), Equals, true)
204 c.Assert(PDHMatch("d41d8cd98f00b204e9800998ecf8427e+12345"), Equals, true)
205 c.Assert(PDHMatch("d41d8cd98f00b204e9800998ecf8427e 12345"), Equals, false)
206 c.Assert(PDHMatch("D41D8CD98F00B204E9800998ECF8427E+12345"), Equals, false)
207 c.Assert(PDHMatch("d41d8cd98f00b204e9800998ecf8427e+12345 "), Equals, false)
208 c.Assert(PDHMatch("d41d8cd98f00b204e9800998ecf8427e+abcdef"), Equals, false)
209 c.Assert(PDHMatch("da39a3ee5e6b4b0d3255bfef95601890afd80709"), Equals, false)
210 c.Assert(PDHMatch("da39a3ee5e6b4b0d3255bfef95601890afd80709+0"), Equals, false)
211 c.Assert(PDHMatch("d41d8cd98f00b204e9800998ecf8427+12345"), Equals, false)
212 c.Assert(PDHMatch("d41d8cd98f00b204e9800998ecf8427e+12345\n"), Equals, false)
213 c.Assert(PDHMatch("+12345"), Equals, false)
214 c.Assert(PDHMatch(""), Equals, false)
217 // Tests that use mock arvados server
218 type MockArvadosServerSuite struct{}
220 func (s *MockArvadosServerSuite) SetUpSuite(c *C) {
224 func (s *MockArvadosServerSuite) SetUpTest(c *C) {
225 arvadostest.ResetEnv()
228 type APIServer struct {
229 listener net.Listener
233 func RunFakeArvadosServer(st http.Handler) (api APIServer, err error) {
234 api.listener, err = net.ListenTCP("tcp", &net.TCPAddr{Port: 0})
238 api.url = api.listener.Addr().String()
239 go http.Serve(api.listener, st)
243 type APIStub struct {
248 responseBody []string
251 func (h *APIStub) ServeHTTP(resp http.ResponseWriter, req *http.Request) {
252 if req.URL.Path == "/redirect-loop" {
253 http.Redirect(resp, req, "/redirect-loop", http.StatusFound)
256 if h.respStatus[h.retryAttempts] < 0 {
257 // Fail the client's Do() by starting a redirect loop
258 http.Redirect(resp, req, "/redirect-loop", http.StatusFound)
260 resp.WriteHeader(h.respStatus[h.retryAttempts])
261 resp.Write([]byte(h.responseBody[h.retryAttempts]))
266 func (s *MockArvadosServerSuite) TestWithRetries(c *C) {
267 for _, stub := range []APIStub{
269 "get", 0, 200, []int{200, 500}, []string{`{"ok":"ok"}`, ``},
272 "create", 0, 200, []int{200, 500}, []string{`{"ok":"ok"}`, ``},
275 "get", 0, 500, []int{500, 500, 500, 200}, []string{``, ``, ``, `{"ok":"ok"}`},
278 "create", 0, 500, []int{500, 500, 500, 200}, []string{``, ``, ``, `{"ok":"ok"}`},
281 "update", 0, 500, []int{500, 500, 500, 200}, []string{``, ``, ``, `{"ok":"ok"}`},
284 "delete", 0, 500, []int{500, 500, 500, 200}, []string{``, ``, ``, `{"ok":"ok"}`},
287 "get", 0, 502, []int{500, 500, 502, 200}, []string{``, ``, ``, `{"ok":"ok"}`},
290 "create", 0, 502, []int{500, 500, 502, 200}, []string{``, ``, ``, `{"ok":"ok"}`},
293 "get", 0, 200, []int{500, 500, 200}, []string{``, ``, `{"ok":"ok"}`},
296 "create", 0, 200, []int{500, 500, 200}, []string{``, ``, `{"ok":"ok"}`},
299 "delete", 0, 200, []int{500, 500, 200}, []string{``, ``, `{"ok":"ok"}`},
302 "update", 0, 200, []int{500, 500, 200}, []string{``, ``, `{"ok":"ok"}`},
305 "get", 0, 401, []int{401, 200}, []string{``, `{"ok":"ok"}`},
308 "create", 0, 401, []int{401, 200}, []string{``, `{"ok":"ok"}`},
311 "get", 0, 404, []int{404, 200}, []string{``, `{"ok":"ok"}`},
314 "get", 0, 401, []int{500, 401, 200}, []string{``, ``, `{"ok":"ok"}`},
317 // Response code -1 simulates an HTTP/network error
318 // (i.e., Do() returns an error; there is no HTTP
319 // response status code).
321 // Succeed on second retry
323 "get", 0, 200, []int{-1, -1, 200}, []string{``, ``, `{"ok":"ok"}`},
325 // "POST" is not safe to retry: fail after one error
327 "create", 0, -1, []int{-1, 200}, []string{``, `{"ok":"ok"}`},
330 api, err := RunFakeArvadosServer(&stub)
333 defer api.listener.Close()
335 arv := ArvadosClient{
340 Client: &http.Client{Transport: &http.Transport{}},
343 getback := make(Dict)
346 err = arv.Get("collections", "zzzzz-4zz18-znfnqtbbv4spc3w", nil, &getback)
348 err = arv.Create("collections",
349 Dict{"collection": Dict{"name": "testing"}},
352 err = arv.Update("collections", "zzzzz-4zz18-znfnqtbbv4spc3w",
353 Dict{"collection": Dict{"name": "testing"}},
356 err = arv.Delete("pipeline_templates", "zzzzz-4zz18-znfnqtbbv4spc3w", nil, &getback)
359 switch stub.expected {
362 c.Check(getback["ok"], Equals, "ok")
365 c.Check(err, ErrorMatches, `.*stopped after \d+ redirects`)
368 c.Check(err, ErrorMatches, fmt.Sprintf("arvados API server error: %d.*", stub.expected))
369 c.Check(err.(APIServerError).HttpStatusCode, Equals, stub.expected)