11 "git.curoverse.com/arvados.git/sdk/go/arvadostest"
12 check "gopkg.in/check.v1"
15 var _ = check.Suite(&IntegrationSuite{})
18 spectatorToken = "zw2f4gwx8hw8cjre7yp6v1zylhrhn3m5gvjq73rtpwhmknrybu"
19 activeToken = "3kg6k6lzmp9kj5cpkcoxie963cmvjahbt2fod9zru30k1jqdmi"
20 anonymousToken = "4kg6k6lzmp9kj4cpkcoxie964cmvjahbt4fod9zru44k4jqdmi"
21 expiredToken = "2ym314ysp27sk7h943q6vtc378srb06se3pq6ghurylyf3pdmx"
24 // IntegrationSuite tests need an API server and an arv-git-httpd server
25 type IntegrationSuite struct {
31 func (s *IntegrationSuite) TestPathVariants(c *check.C) {
33 for _, repo := range []string{"active/foo.git", "active/foo/.git", "arvados.git", "arvados/.git"} {
34 err := s.runGit(c, spectatorToken, "fetch", repo)
35 c.Assert(err, check.Equals, nil)
39 func (s *IntegrationSuite) TestReadonly(c *check.C) {
40 err := s.runGit(c, spectatorToken, "fetch", "active/foo.git")
41 c.Assert(err, check.Equals, nil)
42 err = s.runGit(c, spectatorToken, "push", "active/foo.git", "master:newbranchfail")
43 c.Assert(err, check.ErrorMatches, `.*HTTP code = 403.*`)
44 _, err = os.Stat(s.tmpRepoRoot + "/zzzzz-s0uqq-382brsig8rp3666/.git/refs/heads/newbranchfail")
45 c.Assert(err, check.FitsTypeOf, &os.PathError{})
48 func (s *IntegrationSuite) TestReadwrite(c *check.C) {
49 err := s.runGit(c, activeToken, "fetch", "active/foo.git")
50 c.Assert(err, check.Equals, nil)
51 err = s.runGit(c, activeToken, "push", "active/foo.git", "master:newbranch")
52 c.Assert(err, check.Equals, nil)
53 _, err = os.Stat(s.tmpRepoRoot + "/zzzzz-s0uqq-382brsig8rp3666/.git/refs/heads/newbranch")
54 c.Assert(err, check.Equals, nil)
57 func (s *IntegrationSuite) TestNonexistent(c *check.C) {
58 err := s.runGit(c, spectatorToken, "fetch", "thisrepodoesnotexist.git")
59 c.Assert(err, check.ErrorMatches, `.* not found.*`)
62 func (s *IntegrationSuite) TestMissingGitdirReadableRepository(c *check.C) {
63 err := s.runGit(c, activeToken, "fetch", "active/foo2.git")
64 c.Assert(err, check.ErrorMatches, `.* not found.*`)
67 func (s *IntegrationSuite) TestNoPermission(c *check.C) {
68 for _, repo := range []string{"active/foo.git", "active/foo/.git"} {
69 err := s.runGit(c, anonymousToken, "fetch", repo)
70 c.Assert(err, check.ErrorMatches, `.* not found.*`)
74 func (s *IntegrationSuite) TestExpiredToken(c *check.C) {
75 for _, repo := range []string{"active/foo.git", "active/foo/.git"} {
76 err := s.runGit(c, expiredToken, "fetch", repo)
77 c.Assert(err, check.ErrorMatches, `.* 500 while accessing.*`)
81 func (s *IntegrationSuite) TestInvalidToken(c *check.C) {
82 for _, repo := range []string{"active/foo.git", "active/foo/.git"} {
83 err := s.runGit(c, "s3cr3tp@ssw0rd", "fetch", repo)
84 c.Assert(err, check.ErrorMatches, `.* requested URL returned error.*`)
88 func (s *IntegrationSuite) TestShortToken(c *check.C) {
89 for _, repo := range []string{"active/foo.git", "active/foo/.git"} {
90 err := s.runGit(c, "s3cr3t", "fetch", repo)
91 c.Assert(err, check.ErrorMatches, `.* 500 while accessing.*`)
95 func (s *IntegrationSuite) TestShortTokenBadReq(c *check.C) {
96 for _, repo := range []string{"bogus"} {
97 err := s.runGit(c, "s3cr3t", "fetch", repo)
98 c.Assert(err, check.ErrorMatches, `.* requested URL returned error.*`)
102 func (s *IntegrationSuite) SetUpSuite(c *check.C) {
103 arvadostest.StartAPI()
106 func (s *IntegrationSuite) SetUpTest(c *check.C) {
107 arvadostest.ResetEnv()
108 s.testServer = &server{}
110 s.tmpRepoRoot, err = ioutil.TempDir("", "arv-git-httpd")
111 c.Assert(err, check.Equals, nil)
112 s.tmpWorkdir, err = ioutil.TempDir("", "arv-git-httpd")
113 c.Assert(err, check.Equals, nil)
114 _, err = exec.Command("git", "init", s.tmpRepoRoot+"/zzzzz-s0uqq-382brsig8rp3666").Output()
115 c.Assert(err, check.Equals, nil)
116 _, err = exec.Command("sh", "-c", "cd "+s.tmpRepoRoot+"/zzzzz-s0uqq-382brsig8rp3666 && echo test >test && git add test && git -c user.name=Foo -c user.email=Foo commit -am 'foo: test'").CombinedOutput()
117 c.Assert(err, check.Equals, nil)
118 _, err = exec.Command("git", "init", s.tmpWorkdir).Output()
119 c.Assert(err, check.Equals, nil)
120 _, err = exec.Command("sh", "-c", "cd "+s.tmpWorkdir+" && echo work >work && git add work && git -c user.name=Foo -c user.email=Foo commit -am 'workdir: test'").CombinedOutput()
121 c.Assert(err, check.Equals, nil)
123 _, err = exec.Command("git", "config",
124 "--file", s.tmpWorkdir+"/.git/config",
125 "credential.http://"+s.testServer.Addr+"/.helper",
126 "!cred(){ cat >/dev/null; if [ \"$1\" = get ]; then echo password=$ARVADOS_API_TOKEN; fi; };cred").Output()
127 c.Assert(err, check.Equals, nil)
128 _, err = exec.Command("git", "config",
129 "--file", s.tmpWorkdir+"/.git/config",
130 "credential.http://"+s.testServer.Addr+"/.username",
132 c.Assert(err, check.Equals, nil)
136 GitCommand: "/usr/bin/git",
139 err = s.testServer.Start()
140 c.Assert(err, check.Equals, nil)
142 // Clear ARVADOS_API_TOKEN after starting up the server, to
143 // make sure arv-git-httpd doesn't use it.
144 os.Setenv("ARVADOS_API_TOKEN", "unused-token-placates-client-library")
147 func (s *IntegrationSuite) TearDownTest(c *check.C) {
149 if s.testServer != nil {
150 err = s.testServer.Close()
152 c.Check(err, check.Equals, nil)
153 if s.tmpRepoRoot != "" {
154 err = os.RemoveAll(s.tmpRepoRoot)
155 c.Check(err, check.Equals, nil)
157 if s.tmpWorkdir != "" {
158 err = os.RemoveAll(s.tmpWorkdir)
159 c.Check(err, check.Equals, nil)
163 func (s *IntegrationSuite) runGit(c *check.C, token, gitCmd, repo string, args ...string) error {
164 cwd, err := os.Getwd()
165 c.Assert(err, check.Equals, nil)
167 os.Chdir(s.tmpWorkdir)
169 gitargs := append([]string{
170 gitCmd, "http://" + s.testServer.Addr + "/" + repo,
172 cmd := exec.Command("git", gitargs...)
173 cmd.Env = append(os.Environ(), "ARVADOS_API_TOKEN="+token)
174 w, err := cmd.StdinPipe()
175 c.Assert(err, check.Equals, nil)
177 output, err := cmd.CombinedOutput()
178 c.Log("git ", gitargs, " => ", err)
179 c.Log(string(output))
180 if err != nil && len(output) > 0 {
181 // If messages appeared on stderr, they are more
182 // helpful than the err returned by CombinedOutput().
184 // Easier to match error strings without newlines:
185 err = errors.New(strings.Replace(string(output), "\n", " // ", -1))
190 // Make a bare arvados repo at {tmpRepoRoot}/arvados.git
191 func (s *IntegrationSuite) makeArvadosRepo(c *check.C) {
192 msg, err := exec.Command("git", "init", "--bare", s.tmpRepoRoot+"/zzzzz-s0uqq-arvadosrepo0123.git").CombinedOutput()
194 c.Assert(err, check.Equals, nil)
195 msg, err = exec.Command("git", "--git-dir", s.tmpRepoRoot+"/zzzzz-s0uqq-arvadosrepo0123.git", "fetch", "../../.git", "HEAD:master").CombinedOutput()
197 c.Assert(err, check.Equals, nil)
200 // Gocheck boilerplate
201 func Test(t *testing.T) {