123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367 |
- package git // import "github.com/docker/docker/builder/remotecontext/git"
- import (
- "fmt"
- "net/http"
- "net/http/httptest"
- "net/url"
- "os"
- "os/exec"
- "path/filepath"
- "runtime"
- "strings"
- "testing"
- "github.com/google/go-cmp/cmp"
- "gotest.tools/v3/assert"
- is "gotest.tools/v3/assert/cmp"
- )
- func TestParseRemoteURL(t *testing.T) {
- tests := []struct {
- doc string
- url string
- expected gitRepo
- }{
- {
- doc: "git scheme uppercase, no url-fragment",
- url: "GIT://github.com/user/repo.git",
- expected: gitRepo{
- remote: "git://github.com/user/repo.git",
- ref: "master",
- },
- },
- {
- doc: "git scheme, no url-fragment",
- url: "git://github.com/user/repo.git",
- expected: gitRepo{
- remote: "git://github.com/user/repo.git",
- ref: "master",
- },
- },
- {
- doc: "git scheme, with url-fragment",
- url: "git://github.com/user/repo.git#mybranch:mydir/mysubdir/",
- expected: gitRepo{
- remote: "git://github.com/user/repo.git",
- ref: "mybranch",
- subdir: "mydir/mysubdir/",
- },
- },
- {
- doc: "https scheme, no url-fragment",
- url: "https://github.com/user/repo.git",
- expected: gitRepo{
- remote: "https://github.com/user/repo.git",
- ref: "master",
- },
- },
- {
- doc: "https scheme, with url-fragment",
- url: "https://github.com/user/repo.git#mybranch:mydir/mysubdir/",
- expected: gitRepo{
- remote: "https://github.com/user/repo.git",
- ref: "mybranch",
- subdir: "mydir/mysubdir/",
- },
- },
- {
- doc: "git@, no url-fragment",
- url: "git@github.com:user/repo.git",
- expected: gitRepo{
- remote: "git@github.com:user/repo.git",
- ref: "master",
- },
- },
- {
- doc: "git@, with url-fragment",
- url: "git@github.com:user/repo.git#mybranch:mydir/mysubdir/",
- expected: gitRepo{
- remote: "git@github.com:user/repo.git",
- ref: "mybranch",
- subdir: "mydir/mysubdir/",
- },
- },
- {
- doc: "ssh, no url-fragment",
- url: "ssh://github.com/user/repo.git",
- expected: gitRepo{
- remote: "ssh://github.com/user/repo.git",
- ref: "master",
- },
- },
- {
- doc: "ssh, with url-fragment",
- url: "ssh://github.com/user/repo.git#mybranch:mydir/mysubdir/",
- expected: gitRepo{
- remote: "ssh://github.com/user/repo.git",
- ref: "mybranch",
- subdir: "mydir/mysubdir/",
- },
- },
- {
- doc: "ssh, with url-fragment and user",
- url: "ssh://foo%40barcorp.com@github.com/user/repo.git#mybranch:mydir/mysubdir/",
- expected: gitRepo{
- remote: "ssh://foo%40barcorp.com@github.com/user/repo.git",
- ref: "mybranch",
- subdir: "mydir/mysubdir/",
- },
- },
- }
- for _, tc := range tests {
- tc := tc
- t.Run(tc.doc, func(t *testing.T) {
- repo, err := parseRemoteURL(tc.url)
- assert.NilError(t, err)
- assert.Check(t, is.DeepEqual(tc.expected, repo, cmp.AllowUnexported(gitRepo{})))
- })
- }
- }
- func TestCloneArgsSmartHttp(t *testing.T) {
- mux := http.NewServeMux()
- server := httptest.NewServer(mux)
- serverURL, _ := url.Parse(server.URL)
- serverURL.Path = "/repo.git"
- mux.HandleFunc("/repo.git/info/refs", func(w http.ResponseWriter, r *http.Request) {
- q := r.URL.Query().Get("service")
- w.Header().Set("Content-Type", fmt.Sprintf("application/x-%s-advertisement", q))
- })
- args := fetchArgs(serverURL.String(), "master")
- exp := []string{"fetch", "--depth", "1", "origin", "--", "master"}
- assert.Check(t, is.DeepEqual(exp, args))
- }
- func TestCloneArgsDumbHttp(t *testing.T) {
- mux := http.NewServeMux()
- server := httptest.NewServer(mux)
- serverURL, _ := url.Parse(server.URL)
- serverURL.Path = "/repo.git"
- mux.HandleFunc("/repo.git/info/refs", func(w http.ResponseWriter, r *http.Request) {
- w.Header().Set("Content-Type", "text/plain")
- })
- args := fetchArgs(serverURL.String(), "master")
- exp := []string{"fetch", "origin", "--", "master"}
- assert.Check(t, is.DeepEqual(exp, args))
- }
- func TestCloneArgsGit(t *testing.T) {
- args := fetchArgs("git://github.com/docker/docker", "master")
- exp := []string{"fetch", "--depth", "1", "origin", "--", "master"}
- assert.Check(t, is.DeepEqual(exp, args))
- }
- func gitGetConfig(name string) string {
- b, err := git([]string{"config", "--get", name}...)
- if err != nil {
- // since we are interested in empty or non empty string,
- // we can safely ignore the err here.
- return ""
- }
- return strings.TrimSpace(string(b))
- }
- func TestCheckoutGit(t *testing.T) {
- root, err := os.MkdirTemp("", "docker-build-git-checkout")
- assert.NilError(t, err)
- defer os.RemoveAll(root)
- autocrlf := gitGetConfig("core.autocrlf")
- if !(autocrlf == "true" || autocrlf == "false" ||
- autocrlf == "input" || autocrlf == "") {
- t.Logf("unknown core.autocrlf value: \"%s\"", autocrlf)
- }
- eol := "\n"
- if autocrlf == "true" {
- eol = "\r\n"
- }
- gitDir := filepath.Join(root, "repo")
- _, err = git("init", gitDir)
- assert.NilError(t, err)
- _, err = gitWithinDir(gitDir, "config", "user.email", "test@docker.com")
- assert.NilError(t, err)
- _, err = gitWithinDir(gitDir, "config", "user.name", "Docker test")
- assert.NilError(t, err)
- err = os.WriteFile(filepath.Join(gitDir, "Dockerfile"), []byte("FROM scratch"), 0644)
- assert.NilError(t, err)
- subDir := filepath.Join(gitDir, "subdir")
- assert.NilError(t, os.Mkdir(subDir, 0755))
- err = os.WriteFile(filepath.Join(subDir, "Dockerfile"), []byte("FROM scratch\nEXPOSE 5000"), 0644)
- assert.NilError(t, err)
- if runtime.GOOS != "windows" {
- if err = os.Symlink("../subdir", filepath.Join(gitDir, "parentlink")); err != nil {
- t.Fatal(err)
- }
- if err = os.Symlink("/subdir", filepath.Join(gitDir, "absolutelink")); err != nil {
- t.Fatal(err)
- }
- }
- _, err = gitWithinDir(gitDir, "add", "-A")
- assert.NilError(t, err)
- _, err = gitWithinDir(gitDir, "commit", "-am", "First commit")
- assert.NilError(t, err)
- _, err = gitWithinDir(gitDir, "checkout", "-b", "test")
- assert.NilError(t, err)
- err = os.WriteFile(filepath.Join(gitDir, "Dockerfile"), []byte("FROM scratch\nEXPOSE 3000"), 0644)
- assert.NilError(t, err)
- err = os.WriteFile(filepath.Join(subDir, "Dockerfile"), []byte("FROM busybox\nEXPOSE 5000"), 0644)
- assert.NilError(t, err)
- _, err = gitWithinDir(gitDir, "add", "-A")
- assert.NilError(t, err)
- _, err = gitWithinDir(gitDir, "commit", "-am", "Branch commit")
- assert.NilError(t, err)
- _, err = gitWithinDir(gitDir, "checkout", "master")
- assert.NilError(t, err)
- // set up submodule
- subrepoDir := filepath.Join(root, "subrepo")
- _, err = git("init", subrepoDir)
- assert.NilError(t, err)
- _, err = gitWithinDir(subrepoDir, "config", "user.email", "test@docker.com")
- assert.NilError(t, err)
- _, err = gitWithinDir(subrepoDir, "config", "user.name", "Docker test")
- assert.NilError(t, err)
- err = os.WriteFile(filepath.Join(subrepoDir, "subfile"), []byte("subcontents"), 0644)
- assert.NilError(t, err)
- _, err = gitWithinDir(subrepoDir, "add", "-A")
- assert.NilError(t, err)
- _, err = gitWithinDir(subrepoDir, "commit", "-am", "Subrepo initial")
- assert.NilError(t, err)
- cmd := exec.Command("git", "submodule", "add", subrepoDir, "sub") // this command doesn't work with --work-tree
- cmd.Dir = gitDir
- assert.NilError(t, cmd.Run())
- _, err = gitWithinDir(gitDir, "add", "-A")
- assert.NilError(t, err)
- _, err = gitWithinDir(gitDir, "commit", "-am", "With submodule")
- assert.NilError(t, err)
- type singleCase struct {
- frag string
- exp string
- fail bool
- submodule bool
- }
- cases := []singleCase{
- {"", "FROM scratch", false, true},
- {"master", "FROM scratch", false, true},
- {":subdir", "FROM scratch" + eol + "EXPOSE 5000", false, false},
- {":nosubdir", "", true, false}, // missing directory error
- {":Dockerfile", "", true, false}, // not a directory error
- {"master:nosubdir", "", true, false},
- {"master:subdir", "FROM scratch" + eol + "EXPOSE 5000", false, false},
- {"master:../subdir", "", true, false},
- {"test", "FROM scratch" + eol + "EXPOSE 3000", false, false},
- {"test:", "FROM scratch" + eol + "EXPOSE 3000", false, false},
- {"test:subdir", "FROM busybox" + eol + "EXPOSE 5000", false, false},
- }
- if runtime.GOOS != "windows" {
- // Windows GIT (2.7.1 x64) does not support parentlink/absolutelink. Sample output below
- // git --work-tree .\repo --git-dir .\repo\.git add -A
- // error: readlink("absolutelink"): Function not implemented
- // error: unable to index file absolutelink
- // fatal: adding files failed
- cases = append(cases, singleCase{frag: "master:absolutelink", exp: "FROM scratch" + eol + "EXPOSE 5000", fail: false})
- cases = append(cases, singleCase{frag: "master:parentlink", exp: "FROM scratch" + eol + "EXPOSE 5000", fail: false})
- }
- for _, c := range cases {
- ref, subdir := getRefAndSubdir(c.frag)
- r, err := cloneGitRepo(gitRepo{remote: gitDir, ref: ref, subdir: subdir})
- if c.fail {
- assert.Check(t, is.ErrorContains(err, ""))
- continue
- }
- assert.NilError(t, err)
- defer os.RemoveAll(r)
- if c.submodule {
- b, err := os.ReadFile(filepath.Join(r, "sub/subfile"))
- assert.NilError(t, err)
- assert.Check(t, is.Equal("subcontents", string(b)))
- } else {
- _, err := os.Stat(filepath.Join(r, "sub/subfile"))
- assert.Assert(t, is.ErrorContains(err, ""))
- assert.Assert(t, os.IsNotExist(err))
- }
- b, err := os.ReadFile(filepath.Join(r, "Dockerfile"))
- assert.NilError(t, err)
- assert.Check(t, is.Equal(c.exp, string(b)))
- }
- }
- func TestValidGitTransport(t *testing.T) {
- gitUrls := []string{
- "git://github.com/docker/docker",
- "git@github.com:docker/docker.git",
- "git@bitbucket.org:atlassianlabs/atlassian-docker.git",
- "https://github.com/docker/docker.git",
- "http://github.com/docker/docker.git",
- "http://github.com/docker/docker.git#branch",
- "http://github.com/docker/docker.git#:dir",
- }
- incompleteGitUrls := []string{
- "github.com/docker/docker",
- }
- for _, url := range gitUrls {
- if !isGitTransport(url) {
- t.Fatalf("%q should be detected as valid Git prefix", url)
- }
- }
- for _, url := range incompleteGitUrls {
- if isGitTransport(url) {
- t.Fatalf("%q should not be detected as valid Git prefix", url)
- }
- }
- }
- func TestGitInvalidRef(t *testing.T) {
- gitUrls := []string{
- "git://github.com/moby/moby#--foo bar",
- "git@github.com/moby/moby#--upload-pack=sleep;:",
- "git@g.com:a/b.git#-B",
- "git@g.com:a/b.git#with space",
- }
- for _, url := range gitUrls {
- _, err := Clone(url)
- assert.Assert(t, err != nil)
- assert.Check(t, is.Contains(strings.ToLower(err.Error()), "invalid refspec"))
- }
- }
|