You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

git_helper_for_declarative_test.go 5.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. // Copyright 2019 The Gitea Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package integrations
  5. import (
  6. "context"
  7. "fmt"
  8. "io/ioutil"
  9. "net"
  10. "net/http"
  11. "net/url"
  12. "os"
  13. "path"
  14. "path/filepath"
  15. "strings"
  16. "testing"
  17. "time"
  18. "code.gitea.io/gitea/modules/git"
  19. "code.gitea.io/gitea/modules/setting"
  20. "code.gitea.io/gitea/modules/ssh"
  21. "github.com/stretchr/testify/assert"
  22. "github.com/unknwon/com"
  23. )
  24. func withKeyFile(t *testing.T, keyname string, callback func(string)) {
  25. tmpDir, err := ioutil.TempDir("", "key-file")
  26. assert.NoError(t, err)
  27. defer os.RemoveAll(tmpDir)
  28. err = os.Chmod(tmpDir, 0700)
  29. assert.NoError(t, err)
  30. keyFile := filepath.Join(tmpDir, keyname)
  31. err = ssh.GenKeyPair(keyFile)
  32. assert.NoError(t, err)
  33. err = ioutil.WriteFile(path.Join(tmpDir, "ssh"), []byte("#!/bin/bash\n"+
  34. "ssh -o \"UserKnownHostsFile=/dev/null\" -o \"StrictHostKeyChecking=no\" -o \"IdentitiesOnly=yes\" -i \""+keyFile+"\" \"$@\""), 0700)
  35. assert.NoError(t, err)
  36. //Setup ssh wrapper
  37. os.Setenv("GIT_SSH", path.Join(tmpDir, "ssh"))
  38. os.Setenv("GIT_SSH_COMMAND",
  39. "ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o IdentitiesOnly=yes -i \""+keyFile+"\"")
  40. os.Setenv("GIT_SSH_VARIANT", "ssh")
  41. callback(keyFile)
  42. }
  43. func createSSHUrl(gitPath string, u *url.URL) *url.URL {
  44. u2 := *u
  45. u2.Scheme = "ssh"
  46. u2.User = url.User("git")
  47. u2.Host = fmt.Sprintf("%s:%d", setting.SSH.ListenHost, setting.SSH.ListenPort)
  48. u2.Path = gitPath
  49. return &u2
  50. }
  51. func allowLFSFilters() []string {
  52. // Now here we should explicitly allow lfs filters to run
  53. filteredLFSGlobalArgs := make([]string, len(git.GlobalCommandArgs))
  54. j := 0
  55. for _, arg := range git.GlobalCommandArgs {
  56. if strings.Contains(arg, "lfs") {
  57. j--
  58. } else {
  59. filteredLFSGlobalArgs[j] = arg
  60. j++
  61. }
  62. }
  63. return filteredLFSGlobalArgs[:j]
  64. }
  65. func onGiteaRun(t *testing.T, callback func(*testing.T, *url.URL), prepare ...bool) {
  66. if len(prepare) == 0 || prepare[0] {
  67. prepareTestEnv(t, 1)
  68. }
  69. s := http.Server{
  70. Handler: mac,
  71. }
  72. u, err := url.Parse(setting.AppURL)
  73. assert.NoError(t, err)
  74. listener, err := net.Listen("tcp", u.Host)
  75. assert.NoError(t, err)
  76. u.Host = listener.Addr().String()
  77. defer func() {
  78. ctx, cancel := context.WithTimeout(context.Background(), 2*time.Minute)
  79. s.Shutdown(ctx)
  80. cancel()
  81. }()
  82. go s.Serve(listener)
  83. //Started by config go ssh.Listen(setting.SSH.ListenHost, setting.SSH.ListenPort, setting.SSH.ServerCiphers, setting.SSH.ServerKeyExchanges, setting.SSH.ServerMACs)
  84. callback(t, u)
  85. }
  86. func doGitClone(dstLocalPath string, u *url.URL) func(*testing.T) {
  87. return func(t *testing.T) {
  88. assert.NoError(t, git.CloneWithArgs(u.String(), dstLocalPath, allowLFSFilters(), git.CloneRepoOptions{}))
  89. assert.True(t, com.IsExist(filepath.Join(dstLocalPath, "README.md")))
  90. }
  91. }
  92. func doGitCloneFail(dstLocalPath string, u *url.URL) func(*testing.T) {
  93. return func(t *testing.T) {
  94. assert.Error(t, git.Clone(u.String(), dstLocalPath, git.CloneRepoOptions{}))
  95. assert.False(t, com.IsExist(filepath.Join(dstLocalPath, "README.md")))
  96. }
  97. }
  98. func doGitInitTestRepository(dstPath string) func(*testing.T) {
  99. return func(t *testing.T) {
  100. // Init repository in dstPath
  101. assert.NoError(t, git.InitRepository(dstPath, false))
  102. assert.NoError(t, ioutil.WriteFile(filepath.Join(dstPath, "README.md"), []byte(fmt.Sprintf("# Testing Repository\n\nOriginally created in: %s", dstPath)), 0644))
  103. assert.NoError(t, git.AddChanges(dstPath, true))
  104. signature := git.Signature{
  105. Email: "test@example.com",
  106. Name: "test",
  107. When: time.Now(),
  108. }
  109. assert.NoError(t, git.CommitChanges(dstPath, git.CommitChangesOptions{
  110. Committer: &signature,
  111. Author: &signature,
  112. Message: "Initial Commit",
  113. }))
  114. }
  115. }
  116. func doGitAddRemote(dstPath, remoteName string, u *url.URL) func(*testing.T) {
  117. return func(t *testing.T) {
  118. _, err := git.NewCommand("remote", "add", remoteName, u.String()).RunInDir(dstPath)
  119. assert.NoError(t, err)
  120. }
  121. }
  122. func doGitPushTestRepository(dstPath string, args ...string) func(*testing.T) {
  123. return func(t *testing.T) {
  124. _, err := git.NewCommand(append([]string{"push", "-u"}, args...)...).RunInDir(dstPath)
  125. assert.NoError(t, err)
  126. }
  127. }
  128. func doGitPushTestRepositoryFail(dstPath string, args ...string) func(*testing.T) {
  129. return func(t *testing.T) {
  130. _, err := git.NewCommand(append([]string{"push"}, args...)...).RunInDir(dstPath)
  131. assert.Error(t, err)
  132. }
  133. }
  134. func doGitCreateBranch(dstPath, branch string) func(*testing.T) {
  135. return func(t *testing.T) {
  136. _, err := git.NewCommand("checkout", "-b", branch).RunInDir(dstPath)
  137. assert.NoError(t, err)
  138. }
  139. }
  140. func doGitCheckoutBranch(dstPath string, args ...string) func(*testing.T) {
  141. return func(t *testing.T) {
  142. _, err := git.NewCommandNoGlobals(append(append(allowLFSFilters(), "checkout"), args...)...).RunInDir(dstPath)
  143. assert.NoError(t, err)
  144. }
  145. }
  146. func doGitMerge(dstPath string, args ...string) func(*testing.T) {
  147. return func(t *testing.T) {
  148. _, err := git.NewCommand(append([]string{"merge"}, args...)...).RunInDir(dstPath)
  149. assert.NoError(t, err)
  150. }
  151. }
  152. func doGitPull(dstPath string, args ...string) func(*testing.T) {
  153. return func(t *testing.T) {
  154. _, err := git.NewCommandNoGlobals(append(append(allowLFSFilters(), "pull"), args...)...).RunInDir(dstPath)
  155. assert.NoError(t, err)
  156. }
  157. }