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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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/Unknwon/com"
  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 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. globalArgs := git.GlobalCommandArgs
  54. filteredLFSGlobalArgs := make([]string, len(git.GlobalCommandArgs))
  55. j := 0
  56. for _, arg := range git.GlobalCommandArgs {
  57. if strings.Contains(arg, "lfs") {
  58. j--
  59. } else {
  60. filteredLFSGlobalArgs[j] = arg
  61. j++
  62. }
  63. }
  64. filteredLFSGlobalArgs = filteredLFSGlobalArgs[:j]
  65. git.GlobalCommandArgs = filteredLFSGlobalArgs
  66. return globalArgs
  67. }
  68. func onGiteaRun(t *testing.T, callback func(*testing.T, *url.URL)) {
  69. prepareTestEnv(t, 1)
  70. s := http.Server{
  71. Handler: mac,
  72. }
  73. u, err := url.Parse(setting.AppURL)
  74. assert.NoError(t, err)
  75. listener, err := net.Listen("tcp", u.Host)
  76. assert.NoError(t, err)
  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. oldGlobals := allowLFSFilters()
  89. assert.NoError(t, git.Clone(u.String(), dstLocalPath, git.CloneRepoOptions{}))
  90. git.GlobalCommandArgs = oldGlobals
  91. assert.True(t, com.IsExist(filepath.Join(dstLocalPath, "README.md")))
  92. }
  93. }
  94. func doGitCloneFail(dstLocalPath string, u *url.URL) func(*testing.T) {
  95. return func(t *testing.T) {
  96. assert.Error(t, git.Clone(u.String(), dstLocalPath, git.CloneRepoOptions{}))
  97. assert.False(t, com.IsExist(filepath.Join(dstLocalPath, "README.md")))
  98. }
  99. }
  100. func doGitInitTestRepository(dstPath string) func(*testing.T) {
  101. return func(t *testing.T) {
  102. // Init repository in dstPath
  103. assert.NoError(t, git.InitRepository(dstPath, false))
  104. assert.NoError(t, ioutil.WriteFile(filepath.Join(dstPath, "README.md"), []byte(fmt.Sprintf("# Testing Repository\n\nOriginally created in: %s", dstPath)), 0644))
  105. assert.NoError(t, git.AddChanges(dstPath, true))
  106. signature := git.Signature{
  107. Email: "test@example.com",
  108. Name: "test",
  109. When: time.Now(),
  110. }
  111. assert.NoError(t, git.CommitChanges(dstPath, git.CommitChangesOptions{
  112. Committer: &signature,
  113. Author: &signature,
  114. Message: "Initial Commit",
  115. }))
  116. }
  117. }
  118. func doGitAddRemote(dstPath, remoteName string, u *url.URL) func(*testing.T) {
  119. return func(t *testing.T) {
  120. _, err := git.NewCommand("remote", "add", remoteName, u.String()).RunInDir(dstPath)
  121. assert.NoError(t, err)
  122. }
  123. }
  124. func doGitPushTestRepository(dstPath string, args ...string) func(*testing.T) {
  125. return func(t *testing.T) {
  126. _, err := git.NewCommand(append([]string{"push", "-u"}, args...)...).RunInDir(dstPath)
  127. assert.NoError(t, err)
  128. }
  129. }
  130. func doGitPushTestRepositoryFail(dstPath string, args ...string) func(*testing.T) {
  131. return func(t *testing.T) {
  132. _, err := git.NewCommand(append([]string{"push"}, args...)...).RunInDir(dstPath)
  133. assert.Error(t, err)
  134. }
  135. }
  136. func doGitCreateBranch(dstPath, branch string) func(*testing.T) {
  137. return func(t *testing.T) {
  138. _, err := git.NewCommand("checkout", "-b", branch).RunInDir(dstPath)
  139. assert.NoError(t, err)
  140. }
  141. }
  142. func doGitCheckoutBranch(dstPath string, args ...string) func(*testing.T) {
  143. return func(t *testing.T) {
  144. oldGlobals := allowLFSFilters()
  145. _, err := git.NewCommand(append([]string{"checkout"}, args...)...).RunInDir(dstPath)
  146. git.GlobalCommandArgs = oldGlobals
  147. assert.NoError(t, err)
  148. }
  149. }
  150. func doGitMerge(dstPath string, args ...string) func(*testing.T) {
  151. return func(t *testing.T) {
  152. _, err := git.NewCommand(append([]string{"merge"}, args...)...).RunInDir(dstPath)
  153. assert.NoError(t, err)
  154. }
  155. }
  156. func doGitPull(dstPath string, args ...string) func(*testing.T) {
  157. return func(t *testing.T) {
  158. oldGlobals := allowLFSFilters()
  159. _, err := git.NewCommand(append([]string{"pull"}, args...)...).RunInDir(dstPath)
  160. git.GlobalCommandArgs = oldGlobals
  161. assert.NoError(t, err)
  162. }
  163. }