Welcome to mirror list, hosted at ThFree Co, Russian Federation.

add_test.go « gitaly-remote « cmd - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca0eb83177b49a5a101393cde9152a5b29b0fbad (plain)
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 main

import (
	"os"
	"os/exec"
	"strings"
	"testing"

	"github.com/stretchr/testify/require"
	"gitlab.com/gitlab-org/gitaly/internal/helper"
	"gitlab.com/gitlab-org/gitaly/internal/testhelper"
)

func buildGitRemote() {
	// Build the test-binary that we need
	os.Remove("gitaly-remote")
	testhelper.MustRunCommand(nil, nil, "go", "build", "-tags", "static gitaly_remote", "gitlab.com/gitlab-org/gitaly/cmd/gitaly-remote")
}

func TestAddRemote(t *testing.T) {
	buildGitRemote()

	testCases := []struct {
		name   string
		remote string
		url    string
	}{
		{
			name:   "update-existing",
			remote: "remote",
			url:    "https://test.server.com/test.git",
		},
		{
			name:   "update-existing",
			remote: "remote",
			url:    "https://test.server.com/test.git",
		},
	}

	for _, tc := range testCases {
		t.Run(tc.name, func(t *testing.T) {
			testRepo, _, cleanupFn := testhelper.NewTestRepo(t)
			defer cleanupFn()

			repoPath, err := helper.GetRepoPath(testRepo)
			require.NoError(t, err)

			cmd := exec.Command("./gitaly-remote", repoPath, tc.remote)
			cmd.Stdin = strings.NewReader(tc.url)
			err = cmd.Run()
			require.NoError(t, err)

			out := testhelper.MustRunCommand(t, nil, "git", "-C", repoPath, "remote", "get-url", tc.remote)
			require.Equal(t, tc.url, strings.TrimSpace(string(out)))
		})
	}
}