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

command_test.go « gittest « git « internal - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2cbe8dae34cb612b59b4bec1f738c4e412bbae94 (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
package gittest

import (
	"bytes"
	"strings"
	"testing"

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

func TestExecOpts(t *testing.T) {
	cfg, _, repoPath := setup(t)

	t.Run("default config", func(t *testing.T) {
		toplevel := ExecOpts(t, cfg, ExecConfig{}, "-C", repoPath, "rev-parse", "--path-format=absolute", "--git-dir")
		require.Equal(t, repoPath, text.ChompBytes(toplevel))
	})

	t.Run("env", func(t *testing.T) {
		configValue := ExecOpts(t, cfg, ExecConfig{
			Env: []string{
				"GIT_CONFIG_COUNT=1",
				"GIT_CONFIG_KEY_0=injected.env-config",
				"GIT_CONFIG_VALUE_0=some value",
			},
		}, "-C", repoPath, "config", "injected.env-config")

		require.Equal(t, "some value", text.ChompBytes(configValue))
	})

	t.Run("stdin", func(t *testing.T) {
		blobID := ExecOpts(t, cfg, ExecConfig{
			Stdin: strings.NewReader("blob contents"),
		}, "-C", repoPath, "hash-object", "-w", "--stdin")

		require.Equal(t,
			"blob contents",
			string(Exec(t, cfg, "-C", repoPath, "cat-file", "-p", text.ChompBytes(blobID))),
		)
	})

	t.Run("stdout", func(t *testing.T) {
		var buf bytes.Buffer
		ExecOpts(t, cfg, ExecConfig{
			Stdout: &buf,
		}, "-C", repoPath, "rev-parse", "--path-format=absolute", "--git-dir")

		require.Equal(t, repoPath, text.ChompBytes(buf.Bytes()))
	})
}