1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
20 "git.curoverse.com/arvados.git/sdk/go/arvados"
21 "git.curoverse.com/arvados.git/sdk/go/arvadostest"
22 "git.curoverse.com/arvados.git/sdk/go/auth"
23 check "gopkg.in/check.v1"
26 var _ = check.Suite(&UnitSuite{})
28 type UnitSuite struct{}
30 func (s *UnitSuite) TestCORSPreflight(c *check.C) {
31 h := handler{Config: DefaultConfig()}
32 u := mustParseURL("http://keep-web.example/c=" + arvadostest.FooCollection + "/foo")
37 RequestURI: u.RequestURI(),
39 "Origin": {"https://workbench.example"},
40 "Access-Control-Request-Method": {"POST"},
44 // Check preflight for an allowed request
45 resp := httptest.NewRecorder()
46 h.ServeHTTP(resp, req)
47 c.Check(resp.Code, check.Equals, http.StatusOK)
48 c.Check(resp.Body.String(), check.Equals, "")
49 c.Check(resp.Header().Get("Access-Control-Allow-Origin"), check.Equals, "*")
50 c.Check(resp.Header().Get("Access-Control-Allow-Methods"), check.Equals, "COPY, DELETE, GET, LOCK, MKCOL, MOVE, OPTIONS, POST, PROPFIND, PROPPATCH, PUT, RMCOL, UNLOCK")
51 c.Check(resp.Header().Get("Access-Control-Allow-Headers"), check.Equals, "Authorization, Content-Type, Range, Depth, Destination, If, Lock-Token, Overwrite, Timeout")
53 // Check preflight for a disallowed request
54 resp = httptest.NewRecorder()
55 req.Header.Set("Access-Control-Request-Method", "MAKE-COFFEE")
56 h.ServeHTTP(resp, req)
57 c.Check(resp.Body.String(), check.Equals, "")
58 c.Check(resp.Code, check.Equals, http.StatusMethodNotAllowed)
61 func (s *UnitSuite) TestInvalidUUID(c *check.C) {
62 bogusID := strings.Replace(arvadostest.FooCollectionPDH, "+", "-", 1) + "-"
63 token := arvadostest.ActiveToken
64 for _, trial := range []string{
65 "http://keep-web/c=" + bogusID + "/foo",
66 "http://keep-web/c=" + bogusID + "/t=" + token + "/foo",
67 "http://keep-web/collections/download/" + bogusID + "/" + token + "/foo",
68 "http://keep-web/collections/" + bogusID + "/foo",
69 "http://" + bogusID + ".keep-web/" + bogusID + "/foo",
70 "http://" + bogusID + ".keep-web/t=" + token + "/" + bogusID + "/foo",
73 u := mustParseURL(trial)
78 RequestURI: u.RequestURI(),
80 resp := httptest.NewRecorder()
81 cfg := DefaultConfig()
82 cfg.AnonymousTokens = []string{arvadostest.AnonymousToken}
83 h := handler{Config: cfg}
84 h.ServeHTTP(resp, req)
85 c.Check(resp.Code, check.Equals, http.StatusNotFound)
89 func mustParseURL(s string) *url.URL {
90 r, err := url.Parse(s)
92 panic("parse URL: " + s)
97 func (s *IntegrationSuite) TestVhost404(c *check.C) {
98 for _, testURL := range []string{
99 arvadostest.NonexistentCollection + ".example.com/theperthcountyconspiracy",
100 arvadostest.NonexistentCollection + ".example.com/t=" + arvadostest.ActiveToken + "/theperthcountyconspiracy",
102 resp := httptest.NewRecorder()
103 u := mustParseURL(testURL)
104 req := &http.Request{
107 RequestURI: u.RequestURI(),
109 s.testServer.Handler.ServeHTTP(resp, req)
110 c.Check(resp.Code, check.Equals, http.StatusNotFound)
111 c.Check(resp.Body.String(), check.Equals, "")
115 // An authorizer modifies an HTTP request to make use of the given
116 // token -- by adding it to a header, cookie, query param, or whatever
117 // -- and returns the HTTP status code we should expect from keep-web if
118 // the token is invalid.
119 type authorizer func(*http.Request, string) int
121 func (s *IntegrationSuite) TestVhostViaAuthzHeader(c *check.C) {
122 s.doVhostRequests(c, authzViaAuthzHeader)
124 func authzViaAuthzHeader(r *http.Request, tok string) int {
125 r.Header.Add("Authorization", "OAuth2 "+tok)
126 return http.StatusUnauthorized
129 func (s *IntegrationSuite) TestVhostViaCookieValue(c *check.C) {
130 s.doVhostRequests(c, authzViaCookieValue)
132 func authzViaCookieValue(r *http.Request, tok string) int {
133 r.AddCookie(&http.Cookie{
134 Name: "arvados_api_token",
135 Value: auth.EncodeTokenCookie([]byte(tok)),
137 return http.StatusUnauthorized
140 func (s *IntegrationSuite) TestVhostViaPath(c *check.C) {
141 s.doVhostRequests(c, authzViaPath)
143 func authzViaPath(r *http.Request, tok string) int {
144 r.URL.Path = "/t=" + tok + r.URL.Path
145 return http.StatusNotFound
148 func (s *IntegrationSuite) TestVhostViaQueryString(c *check.C) {
149 s.doVhostRequests(c, authzViaQueryString)
151 func authzViaQueryString(r *http.Request, tok string) int {
152 r.URL.RawQuery = "api_token=" + tok
153 return http.StatusUnauthorized
156 func (s *IntegrationSuite) TestVhostViaPOST(c *check.C) {
157 s.doVhostRequests(c, authzViaPOST)
159 func authzViaPOST(r *http.Request, tok string) int {
161 r.Header.Add("Content-Type", "application/x-www-form-urlencoded")
162 r.Body = ioutil.NopCloser(strings.NewReader(
163 url.Values{"api_token": {tok}}.Encode()))
164 return http.StatusUnauthorized
167 func (s *IntegrationSuite) TestVhostViaXHRPOST(c *check.C) {
168 s.doVhostRequests(c, authzViaPOST)
170 func authzViaXHRPOST(r *http.Request, tok string) int {
172 r.Header.Add("Content-Type", "application/x-www-form-urlencoded")
173 r.Header.Add("Origin", "https://origin.example")
174 r.Body = ioutil.NopCloser(strings.NewReader(
177 "disposition": {"attachment"},
179 return http.StatusUnauthorized
182 // Try some combinations of {url, token} using the given authorization
183 // mechanism, and verify the result is correct.
184 func (s *IntegrationSuite) doVhostRequests(c *check.C, authz authorizer) {
185 for _, hostPath := range []string{
186 arvadostest.FooCollection + ".example.com/foo",
187 arvadostest.FooCollection + "--collections.example.com/foo",
188 arvadostest.FooCollection + "--collections.example.com/_/foo",
189 arvadostest.FooCollectionPDH + ".example.com/foo",
190 strings.Replace(arvadostest.FooCollectionPDH, "+", "-", -1) + "--collections.example.com/foo",
191 arvadostest.FooBarDirCollection + ".example.com/dir1/foo",
193 c.Log("doRequests: ", hostPath)
194 s.doVhostRequestsWithHostPath(c, authz, hostPath)
198 func (s *IntegrationSuite) doVhostRequestsWithHostPath(c *check.C, authz authorizer, hostPath string) {
199 for _, tok := range []string{
200 arvadostest.ActiveToken,
201 arvadostest.ActiveToken[:15],
202 arvadostest.SpectatorToken,
206 u := mustParseURL("http://" + hostPath)
207 req := &http.Request{
211 RequestURI: u.RequestURI(),
212 Header: http.Header{},
214 failCode := authz(req, tok)
215 req, resp := s.doReq(req)
216 code, body := resp.Code, resp.Body.String()
218 // If the initial request had a (non-empty) token
219 // showing in the query string, we should have been
220 // redirected in order to hide it in a cookie.
221 c.Check(req.URL.String(), check.Not(check.Matches), `.*api_token=.+`)
223 if tok == arvadostest.ActiveToken {
224 c.Check(code, check.Equals, http.StatusOK)
225 c.Check(body, check.Equals, "foo")
228 c.Check(code >= 400, check.Equals, true)
229 c.Check(code < 500, check.Equals, true)
230 if tok == arvadostest.SpectatorToken {
231 // Valid token never offers to retry
232 // with different credentials.
233 c.Check(code, check.Equals, http.StatusNotFound)
235 // Invalid token can ask to retry
236 // depending on the authz method.
237 c.Check(code, check.Equals, failCode)
239 c.Check(body, check.Equals, "")
244 func (s *IntegrationSuite) doReq(req *http.Request) (*http.Request, *httptest.ResponseRecorder) {
245 resp := httptest.NewRecorder()
246 s.testServer.Handler.ServeHTTP(resp, req)
247 if resp.Code != http.StatusSeeOther {
250 cookies := (&http.Response{Header: resp.Header()}).Cookies()
251 u, _ := req.URL.Parse(resp.Header().Get("Location"))
256 RequestURI: u.RequestURI(),
257 Header: http.Header{},
259 for _, c := range cookies {
265 func (s *IntegrationSuite) TestVhostRedirectQueryTokenToCookie(c *check.C) {
266 s.testVhostRedirectTokenToCookie(c, "GET",
267 arvadostest.FooCollection+".example.com/foo",
268 "?api_token="+arvadostest.ActiveToken,
276 func (s *IntegrationSuite) TestSingleOriginSecretLink(c *check.C) {
277 s.testVhostRedirectTokenToCookie(c, "GET",
278 "example.com/c="+arvadostest.FooCollection+"/t="+arvadostest.ActiveToken+"/foo",
287 // Bad token in URL is 404 Not Found because it doesn't make sense to
288 // retry the same URL with different authorization.
289 func (s *IntegrationSuite) TestSingleOriginSecretLinkBadToken(c *check.C) {
290 s.testVhostRedirectTokenToCookie(c, "GET",
291 "example.com/c="+arvadostest.FooCollection+"/t=bogus/foo",
300 // Bad token in a cookie (even if it got there via our own
301 // query-string-to-cookie redirect) is, in principle, retryable at the
302 // same URL so it's 401 Unauthorized.
303 func (s *IntegrationSuite) TestVhostRedirectQueryTokenToBogusCookie(c *check.C) {
304 s.testVhostRedirectTokenToCookie(c, "GET",
305 arvadostest.FooCollection+".example.com/foo",
306 "?api_token=thisisabogustoken",
309 http.StatusUnauthorized,
314 func (s *IntegrationSuite) TestVhostRedirectQueryTokenSingleOriginError(c *check.C) {
315 s.testVhostRedirectTokenToCookie(c, "GET",
316 "example.com/c="+arvadostest.FooCollection+"/foo",
317 "?api_token="+arvadostest.ActiveToken,
320 http.StatusBadRequest,
325 // If client requests an attachment by putting ?disposition=attachment
326 // in the query string, and gets redirected, the redirect target
327 // should respond with an attachment.
328 func (s *IntegrationSuite) TestVhostRedirectQueryTokenRequestAttachment(c *check.C) {
329 resp := s.testVhostRedirectTokenToCookie(c, "GET",
330 arvadostest.FooCollection+".example.com/foo",
331 "?disposition=attachment&api_token="+arvadostest.ActiveToken,
337 c.Check(resp.Header().Get("Content-Disposition"), check.Matches, "attachment(;.*)?")
340 func (s *IntegrationSuite) TestVhostRedirectQueryTokenSiteFS(c *check.C) {
341 s.testServer.Config.AttachmentOnlyHost = "download.example.com"
342 resp := s.testVhostRedirectTokenToCookie(c, "GET",
343 "download.example.com/by_id/"+arvadostest.FooCollection+"/foo",
344 "?api_token="+arvadostest.ActiveToken,
350 c.Check(resp.Header().Get("Content-Disposition"), check.Matches, "attachment(;.*)?")
353 func (s *IntegrationSuite) TestPastCollectionVersionFileAccess(c *check.C) {
354 s.testServer.Config.AttachmentOnlyHost = "download.example.com"
355 resp := s.testVhostRedirectTokenToCookie(c, "GET",
356 "download.example.com/c="+arvadostest.WazVersion1Collection+"/waz",
357 "?api_token="+arvadostest.ActiveToken,
363 c.Check(resp.Header().Get("Content-Disposition"), check.Matches, "attachment(;.*)?")
364 resp = s.testVhostRedirectTokenToCookie(c, "GET",
365 "download.example.com/by_id/"+arvadostest.WazVersion1Collection+"/waz",
366 "?api_token="+arvadostest.ActiveToken,
372 c.Check(resp.Header().Get("Content-Disposition"), check.Matches, "attachment(;.*)?")
375 func (s *IntegrationSuite) TestVhostRedirectQueryTokenTrustAllContent(c *check.C) {
376 s.testServer.Config.TrustAllContent = true
377 s.testVhostRedirectTokenToCookie(c, "GET",
378 "example.com/c="+arvadostest.FooCollection+"/foo",
379 "?api_token="+arvadostest.ActiveToken,
387 func (s *IntegrationSuite) TestVhostRedirectQueryTokenAttachmentOnlyHost(c *check.C) {
388 s.testServer.Config.AttachmentOnlyHost = "example.com:1234"
390 s.testVhostRedirectTokenToCookie(c, "GET",
391 "example.com/c="+arvadostest.FooCollection+"/foo",
392 "?api_token="+arvadostest.ActiveToken,
395 http.StatusBadRequest,
399 resp := s.testVhostRedirectTokenToCookie(c, "GET",
400 "example.com:1234/c="+arvadostest.FooCollection+"/foo",
401 "?api_token="+arvadostest.ActiveToken,
407 c.Check(resp.Header().Get("Content-Disposition"), check.Equals, "attachment")
410 func (s *IntegrationSuite) TestVhostRedirectPOSTFormTokenToCookie(c *check.C) {
411 s.testVhostRedirectTokenToCookie(c, "POST",
412 arvadostest.FooCollection+".example.com/foo",
414 "application/x-www-form-urlencoded",
415 url.Values{"api_token": {arvadostest.ActiveToken}}.Encode(),
421 func (s *IntegrationSuite) TestVhostRedirectPOSTFormTokenToCookie404(c *check.C) {
422 s.testVhostRedirectTokenToCookie(c, "POST",
423 arvadostest.FooCollection+".example.com/foo",
425 "application/x-www-form-urlencoded",
426 url.Values{"api_token": {arvadostest.SpectatorToken}}.Encode(),
432 func (s *IntegrationSuite) TestAnonymousTokenOK(c *check.C) {
433 s.testServer.Config.AnonymousTokens = []string{arvadostest.AnonymousToken}
434 s.testVhostRedirectTokenToCookie(c, "GET",
435 "example.com/c="+arvadostest.HelloWorldCollection+"/Hello%20world.txt",
444 func (s *IntegrationSuite) TestAnonymousTokenError(c *check.C) {
445 s.testServer.Config.AnonymousTokens = []string{"anonymousTokenConfiguredButInvalid"}
446 s.testVhostRedirectTokenToCookie(c, "GET",
447 "example.com/c="+arvadostest.HelloWorldCollection+"/Hello%20world.txt",
456 func (s *IntegrationSuite) TestSpecialCharsInPath(c *check.C) {
457 s.testServer.Config.AttachmentOnlyHost = "download.example.com"
459 client := s.testServer.Config.Client
460 client.AuthToken = arvadostest.ActiveToken
461 fs, err := (&arvados.Collection{}).FileSystem(&client, nil)
462 c.Assert(err, check.IsNil)
463 f, err := fs.OpenFile("https:\\\"odd' path chars", os.O_CREATE, 0777)
464 c.Assert(err, check.IsNil)
466 mtxt, err := fs.MarshalManifest(".")
467 c.Assert(err, check.IsNil)
468 coll := arvados.Collection{ManifestText: mtxt}
469 err = client.RequestAndDecode(&coll, "POST", "arvados/v1/collections", client.UpdateBody(coll), nil)
470 c.Assert(err, check.IsNil)
472 u, _ := url.Parse("http://download.example.com/c=" + coll.UUID + "/")
473 req := &http.Request{
477 RequestURI: u.RequestURI(),
479 "Authorization": {"Bearer " + client.AuthToken},
482 resp := httptest.NewRecorder()
483 s.testServer.Handler.ServeHTTP(resp, req)
484 c.Check(resp.Code, check.Equals, http.StatusOK)
485 c.Check(resp.Body.String(), check.Matches, `(?ms).*href="./https:%5c%22odd%27%20path%20chars"\S+https:\\"odd' path chars.*`)
488 // XHRs can't follow redirect-with-cookie so they rely on method=POST
489 // and disposition=attachment (telling us it's acceptable to respond
490 // with content instead of a redirect) and an Origin header that gets
491 // added automatically by the browser (telling us it's desirable to do
493 func (s *IntegrationSuite) TestXHRNoRedirect(c *check.C) {
494 u, _ := url.Parse("http://example.com/c=" + arvadostest.FooCollection + "/foo")
495 req := &http.Request{
499 RequestURI: u.RequestURI(),
501 "Origin": {"https://origin.example"},
502 "Content-Type": {"application/x-www-form-urlencoded"},
504 Body: ioutil.NopCloser(strings.NewReader(url.Values{
505 "api_token": {arvadostest.ActiveToken},
506 "disposition": {"attachment"},
509 resp := httptest.NewRecorder()
510 s.testServer.Handler.ServeHTTP(resp, req)
511 c.Check(resp.Code, check.Equals, http.StatusOK)
512 c.Check(resp.Body.String(), check.Equals, "foo")
513 c.Check(resp.Header().Get("Access-Control-Allow-Origin"), check.Equals, "*")
516 func (s *IntegrationSuite) testVhostRedirectTokenToCookie(c *check.C, method, hostPath, queryString, contentType, reqBody string, expectStatus int, expectRespBody string) *httptest.ResponseRecorder {
517 u, _ := url.Parse(`http://` + hostPath + queryString)
518 req := &http.Request{
522 RequestURI: u.RequestURI(),
523 Header: http.Header{"Content-Type": {contentType}},
524 Body: ioutil.NopCloser(strings.NewReader(reqBody)),
527 resp := httptest.NewRecorder()
529 c.Check(resp.Code, check.Equals, expectStatus)
530 c.Check(resp.Body.String(), check.Equals, expectRespBody)
533 s.testServer.Handler.ServeHTTP(resp, req)
534 if resp.Code != http.StatusSeeOther {
537 c.Check(resp.Body.String(), check.Matches, `.*href="http://`+regexp.QuoteMeta(html.EscapeString(hostPath))+`(\?[^"]*)?".*`)
538 cookies := (&http.Response{Header: resp.Header()}).Cookies()
540 u, _ = u.Parse(resp.Header().Get("Location"))
545 RequestURI: u.RequestURI(),
546 Header: http.Header{},
548 for _, c := range cookies {
552 resp = httptest.NewRecorder()
553 s.testServer.Handler.ServeHTTP(resp, req)
554 c.Check(resp.Header().Get("Location"), check.Equals, "")
558 func (s *IntegrationSuite) TestDirectoryListing(c *check.C) {
559 s.testServer.Config.AttachmentOnlyHost = "download.example.com"
560 authHeader := http.Header{
561 "Authorization": {"OAuth2 " + arvadostest.ActiveToken},
563 for _, trial := range []struct {
571 uri: strings.Replace(arvadostest.FooAndBarFilesInDirPDH, "+", "-", -1) + ".example.com/",
573 expect: []string{"dir1/foo", "dir1/bar"},
577 uri: strings.Replace(arvadostest.FooAndBarFilesInDirPDH, "+", "-", -1) + ".example.com/dir1/",
579 expect: []string{"foo", "bar"},
583 uri: "download.example.com/collections/" + arvadostest.FooAndBarFilesInDirUUID + "/",
585 expect: []string{"dir1/foo", "dir1/bar"},
589 uri: "download.example.com/users/active/foo_file_in_dir/",
591 expect: []string{"dir1/"},
595 uri: "download.example.com/users/active/foo_file_in_dir/dir1/",
597 expect: []string{"bar"},
601 uri: "download.example.com/",
603 expect: []string{"users/"},
607 uri: "download.example.com/users",
610 expect: []string{"active/"},
614 uri: "download.example.com/users/",
616 expect: []string{"active/"},
620 uri: "download.example.com/users/active",
622 redirect: "/users/active/",
623 expect: []string{"foo_file_in_dir/"},
627 uri: "download.example.com/users/active/",
629 expect: []string{"foo_file_in_dir/"},
633 uri: "collections.example.com/collections/download/" + arvadostest.FooAndBarFilesInDirUUID + "/" + arvadostest.ActiveToken + "/",
635 expect: []string{"dir1/foo", "dir1/bar"},
639 uri: "collections.example.com/c=" + arvadostest.FooAndBarFilesInDirUUID + "/t=" + arvadostest.ActiveToken + "/",
641 expect: []string{"dir1/foo", "dir1/bar"},
645 uri: "collections.example.com/c=" + arvadostest.FooAndBarFilesInDirUUID + "/t=" + arvadostest.ActiveToken,
647 expect: []string{"dir1/foo", "dir1/bar"},
651 uri: "download.example.com/c=" + arvadostest.FooAndBarFilesInDirUUID,
653 expect: []string{"dir1/foo", "dir1/bar"},
657 uri: "download.example.com/c=" + arvadostest.FooAndBarFilesInDirUUID + "/dir1",
659 redirect: "/c=" + arvadostest.FooAndBarFilesInDirUUID + "/dir1/",
660 expect: []string{"foo", "bar"},
664 uri: "download.example.com/c=" + arvadostest.FooAndBarFilesInDirUUID + "/_/dir1/",
666 expect: []string{"foo", "bar"},
670 uri: arvadostest.FooAndBarFilesInDirUUID + ".example.com/dir1?api_token=" + arvadostest.ActiveToken,
673 expect: []string{"foo", "bar"},
677 uri: "collections.example.com/c=" + arvadostest.FooAndBarFilesInDirUUID + "/theperthcountyconspiracydoesnotexist/",
682 uri: "download.example.com/c=" + arvadostest.WazVersion1Collection,
684 expect: []string{"waz"},
688 uri: "download.example.com/by_id/" + arvadostest.WazVersion1Collection,
690 expect: []string{"waz"},
694 c.Logf("HTML: %q => %q", trial.uri, trial.expect)
695 resp := httptest.NewRecorder()
696 u := mustParseURL("//" + trial.uri)
697 req := &http.Request{
701 RequestURI: u.RequestURI(),
702 Header: copyHeader(trial.header),
704 s.testServer.Handler.ServeHTTP(resp, req)
705 var cookies []*http.Cookie
706 for resp.Code == http.StatusSeeOther {
707 u, _ := req.URL.Parse(resp.Header().Get("Location"))
712 RequestURI: u.RequestURI(),
713 Header: copyHeader(trial.header),
715 cookies = append(cookies, (&http.Response{Header: resp.Header()}).Cookies()...)
716 for _, c := range cookies {
719 resp = httptest.NewRecorder()
720 s.testServer.Handler.ServeHTTP(resp, req)
722 if trial.redirect != "" {
723 c.Check(req.URL.Path, check.Equals, trial.redirect)
725 if trial.expect == nil {
726 c.Check(resp.Code, check.Equals, http.StatusNotFound)
728 c.Check(resp.Code, check.Equals, http.StatusOK)
729 for _, e := range trial.expect {
730 c.Check(resp.Body.String(), check.Matches, `(?ms).*href="./`+e+`".*`)
732 c.Check(resp.Body.String(), check.Matches, `(?ms).*--cut-dirs=`+fmt.Sprintf("%d", trial.cutDirs)+` .*`)
735 c.Logf("WebDAV: %q => %q", trial.uri, trial.expect)
740 RequestURI: u.RequestURI(),
741 Header: copyHeader(trial.header),
742 Body: ioutil.NopCloser(&bytes.Buffer{}),
744 resp = httptest.NewRecorder()
745 s.testServer.Handler.ServeHTTP(resp, req)
746 if trial.expect == nil {
747 c.Check(resp.Code, check.Equals, http.StatusNotFound)
749 c.Check(resp.Code, check.Equals, http.StatusOK)
756 RequestURI: u.RequestURI(),
757 Header: copyHeader(trial.header),
758 Body: ioutil.NopCloser(&bytes.Buffer{}),
760 resp = httptest.NewRecorder()
761 s.testServer.Handler.ServeHTTP(resp, req)
762 if trial.expect == nil {
763 c.Check(resp.Code, check.Equals, http.StatusNotFound)
765 c.Check(resp.Code, check.Equals, http.StatusMultiStatus)
766 for _, e := range trial.expect {
767 c.Check(resp.Body.String(), check.Matches, `(?ms).*<D:href>`+filepath.Join(u.Path, e)+`</D:href>.*`)
773 func (s *IntegrationSuite) TestDeleteLastFile(c *check.C) {
774 arv := arvados.NewClientFromEnv()
775 var newCollection arvados.Collection
776 err := arv.RequestAndDecode(&newCollection, "POST", "arvados/v1/collections", arv.UpdateBody(&arvados.Collection{
777 OwnerUUID: arvadostest.ActiveUserUUID,
778 ManifestText: ". acbd18db4cc2f85cedef654fccc4a4d8+3 0:3:foo.txt 0:3:bar.txt\n",
779 Name: "keep-web test collection",
780 }), map[string]bool{"ensure_unique_name": true})
781 c.Assert(err, check.IsNil)
782 defer arv.RequestAndDecode(&newCollection, "DELETE", "arvados/v1/collections/"+newCollection.UUID, nil, nil)
784 var updated arvados.Collection
785 for _, fnm := range []string{"foo.txt", "bar.txt"} {
786 s.testServer.Config.AttachmentOnlyHost = "example.com"
787 u, _ := url.Parse("http://example.com/c=" + newCollection.UUID + "/" + fnm)
788 req := &http.Request{
792 RequestURI: u.RequestURI(),
794 "Authorization": {"Bearer " + arvadostest.ActiveToken},
797 resp := httptest.NewRecorder()
798 s.testServer.Handler.ServeHTTP(resp, req)
799 c.Check(resp.Code, check.Equals, http.StatusNoContent)
801 updated = arvados.Collection{}
802 err = arv.RequestAndDecode(&updated, "GET", "arvados/v1/collections/"+newCollection.UUID, nil, nil)
803 c.Check(err, check.IsNil)
804 c.Check(updated.ManifestText, check.Not(check.Matches), `(?ms).*\Q`+fnm+`\E.*`)
805 c.Logf("updated manifest_text %q", updated.ManifestText)
807 c.Check(updated.ManifestText, check.Equals, "")
810 func (s *IntegrationSuite) TestHealthCheckPing(c *check.C) {
811 s.testServer.Config.ManagementToken = arvadostest.ManagementToken
812 authHeader := http.Header{
813 "Authorization": {"Bearer " + arvadostest.ManagementToken},
816 resp := httptest.NewRecorder()
817 u := mustParseURL("http://download.example.com/_health/ping")
818 req := &http.Request{
822 RequestURI: u.RequestURI(),
825 s.testServer.Handler.ServeHTTP(resp, req)
827 c.Check(resp.Code, check.Equals, http.StatusOK)
828 c.Check(resp.Body.String(), check.Matches, `{"health":"OK"}\n`)
831 func copyHeader(h http.Header) http.Header {
833 for k, v := range h {
834 hc[k] = append([]string(nil), v...)