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
|
package server
import (
"fmt"
"os/exec"
"path/filepath"
"srcd.works/go-git.v4/plumbing/transport"
. "gopkg.in/check.v1"
)
type LoaderSuite struct {
RepoPath string
}
var _ = Suite(&LoaderSuite{})
func (s *LoaderSuite) SetUpSuite(c *C) {
if err := exec.Command("git", "--version").Run(); err != nil {
c.Skip("git command not found")
}
dir := c.MkDir()
s.RepoPath = filepath.Join(dir, "repo.git")
c.Assert(exec.Command("git", "init", "--bare", s.RepoPath).Run(), IsNil)
}
func (s *LoaderSuite) endpoint(c *C, url string) transport.Endpoint {
ep, err := transport.NewEndpoint(url)
c.Assert(err, IsNil)
return ep
}
func (s *LoaderSuite) TestLoadNonExistent(c *C) {
sto, err := DefaultLoader.Load(s.endpoint(c, "file:///does-not-exist"))
c.Assert(err, Equals, transport.ErrRepositoryNotFound)
c.Assert(sto, IsNil)
}
func (s *LoaderSuite) TestLoadNonExistentIgnoreHost(c *C) {
sto, err := DefaultLoader.Load(s.endpoint(c, "https://github.com/does-not-exist"))
c.Assert(err, Equals, transport.ErrRepositoryNotFound)
c.Assert(sto, IsNil)
}
func (s *LoaderSuite) TestLoad(c *C) {
sto, err := DefaultLoader.Load(s.endpoint(c, fmt.Sprintf("file://%s", s.RepoPath)))
c.Assert(err, IsNil)
c.Assert(sto, NotNil)
}
func (s *LoaderSuite) TestLoadIgnoreHost(c *C) {
sto, err := DefaultLoader.Load(s.endpoint(c, fmt.Sprintf("file://%s", s.RepoPath)))
c.Assert(err, IsNil)
c.Assert(sto, NotNil)
}
|