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.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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. "code.gitea.io/gitea/modules/util"
  22. "github.com/stretchr/testify/assert"
  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 util.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. defer prepareTestEnv(t, 1)()
  68. }
  69. s := http.Server{
  70. Handler: c,
  71. }
  72. u, err := url.Parse(setting.AppURL)
  73. assert.NoError(t, err)
  74. listener, err := net.Listen("tcp", u.Host)
  75. i := 0
  76. for err != nil && i <= 10 {
  77. time.Sleep(100 * time.Millisecond)
  78. listener, err = net.Listen("tcp", u.Host)
  79. i++
  80. }
  81. assert.NoError(t, err)
  82. u.Host = listener.Addr().String()
  83. defer func() {
  84. ctx, cancel := context.WithTimeout(context.Background(), 2*time.Minute)
  85. s.Shutdown(ctx)
  86. cancel()
  87. }()
  88. go s.Serve(listener)
  89. //Started by config go ssh.Listen(setting.SSH.ListenHost, setting.SSH.ListenPort, setting.SSH.ServerCiphers, setting.SSH.ServerKeyExchanges, setting.SSH.ServerMACs)
  90. callback(t, u)
  91. }
  92. func doGitClone(dstLocalPath string, u *url.URL) func(*testing.T) {
  93. return func(t *testing.T) {
  94. assert.NoError(t, git.CloneWithArgs(context.Background(), u.String(), dstLocalPath, allowLFSFilters(), git.CloneRepoOptions{}))
  95. exist, err := util.IsExist(filepath.Join(dstLocalPath, "README.md"))
  96. assert.NoError(t, err)
  97. assert.True(t, exist)
  98. }
  99. }
  100. func doGitCloneFail(u *url.URL) func(*testing.T) {
  101. return func(t *testing.T) {
  102. tmpDir, err := ioutil.TempDir("", "doGitCloneFail")
  103. assert.NoError(t, err)
  104. defer util.RemoveAll(tmpDir)
  105. assert.Error(t, git.Clone(u.String(), tmpDir, git.CloneRepoOptions{}))
  106. exist, err := util.IsExist(filepath.Join(tmpDir, "README.md"))
  107. assert.NoError(t, err)
  108. assert.False(t, exist)
  109. }
  110. }
  111. func doGitInitTestRepository(dstPath string) func(*testing.T) {
  112. return func(t *testing.T) {
  113. // Init repository in dstPath
  114. assert.NoError(t, git.InitRepository(dstPath, false))
  115. assert.NoError(t, ioutil.WriteFile(filepath.Join(dstPath, "README.md"), []byte(fmt.Sprintf("# Testing Repository\n\nOriginally created in: %s", dstPath)), 0644))
  116. assert.NoError(t, git.AddChanges(dstPath, true))
  117. signature := git.Signature{
  118. Email: "test@example.com",
  119. Name: "test",
  120. When: time.Now(),
  121. }
  122. assert.NoError(t, git.CommitChanges(dstPath, git.CommitChangesOptions{
  123. Committer: &signature,
  124. Author: &signature,
  125. Message: "Initial Commit",
  126. }))
  127. }
  128. }
  129. func doGitAddRemote(dstPath, remoteName string, u *url.URL) func(*testing.T) {
  130. return func(t *testing.T) {
  131. _, err := git.NewCommand("remote", "add", remoteName, u.String()).RunInDir(dstPath)
  132. assert.NoError(t, err)
  133. }
  134. }
  135. func doGitPushTestRepository(dstPath string, args ...string) func(*testing.T) {
  136. return func(t *testing.T) {
  137. _, err := git.NewCommand(append([]string{"push", "-u"}, args...)...).RunInDir(dstPath)
  138. assert.NoError(t, err)
  139. }
  140. }
  141. func doGitPushTestRepositoryFail(dstPath string, args ...string) func(*testing.T) {
  142. return func(t *testing.T) {
  143. _, err := git.NewCommand(append([]string{"push"}, args...)...).RunInDir(dstPath)
  144. assert.Error(t, err)
  145. }
  146. }
  147. func doGitCreateBranch(dstPath, branch string) func(*testing.T) {
  148. return func(t *testing.T) {
  149. _, err := git.NewCommand("checkout", "-b", branch).RunInDir(dstPath)
  150. assert.NoError(t, err)
  151. }
  152. }
  153. func doGitCheckoutBranch(dstPath string, args ...string) func(*testing.T) {
  154. return func(t *testing.T) {
  155. _, err := git.NewCommandNoGlobals(append(append(allowLFSFilters(), "checkout"), args...)...).RunInDir(dstPath)
  156. assert.NoError(t, err)
  157. }
  158. }
  159. func doGitMerge(dstPath string, args ...string) func(*testing.T) {
  160. return func(t *testing.T) {
  161. _, err := git.NewCommand(append([]string{"merge"}, args...)...).RunInDir(dstPath)
  162. assert.NoError(t, err)
  163. }
  164. }
  165. func doGitPull(dstPath string, args ...string) func(*testing.T) {
  166. return func(t *testing.T) {
  167. _, err := git.NewCommandNoGlobals(append(append(allowLFSFilters(), "pull"), args...)...).RunInDir(dstPath)
  168. assert.NoError(t, err)
  169. }
  170. }