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

revert_test.go « git2go « internal - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c56e4da4ef22187275c2ec9e01576d410f3518a0 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
package git2go

import (
	"bytes"
	"testing"
	"time"

	"github.com/stretchr/testify/require"
)

func TestGit2Go_RevertCommandSerialization(t *testing.T) {
	testcases := []struct {
		desc string
		cmd  RevertCommand
		err  string
	}{
		{
			desc: "missing repository",
			cmd:  RevertCommand{},
			err:  "missing repository",
		},
		{
			desc: "missing author name",
			cmd: RevertCommand{
				Repository: "foo",
			},
			err: "missing author name",
		},
		{
			desc: "missing author mail",
			cmd: RevertCommand{
				Repository: "foo",
				AuthorName: "Au Thor",
			},
			err: "missing author mail",
		},
		{
			desc: "missing author message",
			cmd: RevertCommand{
				Repository: "foo",
				AuthorName: "Au Thor",
				AuthorMail: "au@thor.com",
			},
			err: "missing message",
		},
		{
			desc: "missing author ours",
			cmd: RevertCommand{
				Repository: "foo",
				AuthorName: "Au Thor",
				AuthorMail: "au@thor.com",
				Message:    "Message",
			},
			err: "missing ours",
		},
		{
			desc: "missing revert",
			cmd: RevertCommand{
				Repository: "foo",
				AuthorName: "Au Thor",
				AuthorMail: "au@thor.com",
				Message:    "Message",
				Ours:       "refs/heads/master",
			},
			err: "missing revert",
		},
		{
			desc: "valid command",
			cmd: RevertCommand{
				Repository: "foo",
				AuthorName: "Au Thor",
				AuthorMail: "au@thor.com",
				Message:    "Message",
				Ours:       "refs/heads/master",
				Revert:     "refs/heads/master",
			},
		},
		{
			desc: "valid command with date",
			cmd: RevertCommand{
				Repository: "foo",
				AuthorName: "Au Thor",
				AuthorMail: "au@thor.com",
				AuthorDate: time.Now().UTC(),
				Message:    "Message",
				Ours:       "refs/heads/master",
				Revert:     "refs/heads/master",
			},
		},
	}

	for _, tc := range testcases {
		t.Run(tc.desc, func(t *testing.T) {
			serialized, err := serialize(tc.cmd)
			require.NoError(t, err)

			deserialized, err := RevertCommandFromSerialized(serialized)

			if tc.err != "" {
				require.Error(t, err)
				require.Contains(t, err.Error(), tc.err)
			} else {
				require.NoError(t, err)
				require.Equal(t, tc.cmd, deserialized)
			}
		})
	}
}

func TestGit2Go_RevertResultSerialization(t *testing.T) {
	serializeResult := func(t *testing.T, result RevertResult) string {
		t.Helper()
		var buf bytes.Buffer
		err := result.SerializeTo(&buf)
		require.NoError(t, err)
		return buf.String()
	}

	testcases := []struct {
		desc       string
		serialized string
		expected   RevertResult
		err        string
	}{
		{
			desc:       "empty revert result",
			serialized: serializeResult(t, RevertResult{}),
			expected:   RevertResult{},
		},
		{
			desc: "revert result with commit",
			serialized: serializeResult(t, RevertResult{
				CommitID: "1234",
			}),
			expected: RevertResult{
				CommitID: "1234",
			},
		},
		{
			desc:       "invalid serialized representation",
			serialized: "xvlc",
			err:        "invalid character",
		},
	}

	for _, tc := range testcases {
		t.Run(tc.desc, func(t *testing.T) {
			var deserialized RevertResult
			err := deserialize(tc.serialized, &deserialized)

			if tc.err != "" {
				require.Error(t, err)
				require.Contains(t, err.Error(), tc.err)
			} else {
				require.NoError(t, err)
				require.Equal(t, tc.expected, deserialized)
			}
		})
	}
}