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

subcmd_dataloss_test.go « praefect « cmd - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c67783d5e8801137121570a613904bd2c5a3aec (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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
// +build postgres

package main

import (
	"bytes"
	"fmt"
	"testing"

	"github.com/stretchr/testify/require"
	"gitlab.com/gitlab-org/gitaly/internal/praefect/config"
	"gitlab.com/gitlab-org/gitaly/internal/praefect/datastore"
	"gitlab.com/gitlab-org/gitaly/internal/praefect/datastore/glsql"
	"gitlab.com/gitlab-org/gitaly/internal/praefect/service/info"
	"gitlab.com/gitlab-org/gitaly/internal/testhelper"
	"gitlab.com/gitlab-org/gitaly/proto/go/gitalypb"
	"google.golang.org/grpc"
)

func getDB(t *testing.T) glsql.DB {
	return glsql.GetDB(t, "cmd_praefect")
}

func registerPraefectInfoServer(impl gitalypb.PraefectInfoServiceServer) svcRegistrar {
	return func(srv *grpc.Server) {
		gitalypb.RegisterPraefectInfoServiceServer(srv, impl)
	}
}

func TestDatalossSubcommand(t *testing.T) {
	for _, scope := range []struct {
		desc             string
		electionStrategy config.ElectionStrategy
		primaries        map[string]string
	}{
		{
			desc:             "sql elector",
			electionStrategy: config.ElectionStrategySQL,
			primaries: map[string]string{
				"repository-1": "gitaly-1",
				"repository-2": "gitaly-1",
			},
		},
		{
			desc:             "per_repository elector",
			electionStrategy: config.ElectionStrategyPerRepository,
			primaries: map[string]string{
				"repository-1": "gitaly-1",
				"repository-2": "gitaly-3",
			},
		},
	} {
		t.Run(scope.desc, func(t *testing.T) {
			cfg := config.Config{
				Failover: config.Failover{ElectionStrategy: scope.electionStrategy},
				VirtualStorages: []*config.VirtualStorage{
					{
						Name: "virtual-storage-1",
						Nodes: []*config.Node{
							{Storage: "gitaly-1"},
							{Storage: "gitaly-2"},
							{Storage: "gitaly-3"},
						},
					},
					{
						Name: "virtual-storage-2",
						Nodes: []*config.Node{
							{Storage: "gitaly-4"},
						},
					},
				},
			}

			db := getDB(t)
			gs := datastore.NewPostgresRepositoryStore(db, cfg.StorageNames())

			ctx, cancel := testhelper.Context()
			defer cancel()

			for _, q := range []string{
				`
				INSERT INTO repositories (virtual_storage, relative_path, "primary")
				VALUES
					('virtual-storage-1', 'repository-1', 'gitaly-1'),
					('virtual-storage-1', 'repository-2', 'gitaly-3')
				`,
				`
				INSERT INTO repository_assignments (virtual_storage, relative_path, storage)
				VALUES
					('virtual-storage-1', 'repository-1', 'gitaly-1'),
					('virtual-storage-1', 'repository-1', 'gitaly-2'),
					('virtual-storage-1', 'repository-2', 'gitaly-1'),
					('virtual-storage-1', 'repository-2', 'gitaly-3')
				`,
				`
				INSERT INTO shard_primaries (shard_name, node_name, elected_by_praefect, elected_at)
				VALUES ('virtual-storage-1', 'gitaly-1', 'ignored', now())
				`,
			} {
				_, err := db.ExecContext(ctx, q)
				require.NoError(t, err)
			}

			require.NoError(t, gs.SetGeneration(ctx, "virtual-storage-1", "repository-1", "gitaly-1", 1))
			require.NoError(t, gs.SetGeneration(ctx, "virtual-storage-1", "repository-1", "gitaly-2", 0))
			require.NoError(t, gs.SetGeneration(ctx, "virtual-storage-1", "repository-1", "gitaly-3", 0))

			require.NoError(t, gs.SetGeneration(ctx, "virtual-storage-1", "repository-2", "gitaly-2", 1))
			require.NoError(t, gs.SetGeneration(ctx, "virtual-storage-1", "repository-2", "gitaly-3", 0))

			ln, clean := listenAndServe(t, []svcRegistrar{
				registerPraefectInfoServer(info.NewServer(nil, cfg, nil, gs, nil, nil, nil))})
			defer clean()
			for _, tc := range []struct {
				desc            string
				args            []string
				virtualStorages []*config.VirtualStorage
				output          string
				error           error
			}{
				{
					desc:  "positional arguments",
					args:  []string{"-virtual-storage=virtual-storage-1", "positional-arg"},
					error: unexpectedPositionalArgsError{Command: "dataloss"},
				},
				{
					desc: "data loss with read-only repositories",
					args: []string{"-virtual-storage=virtual-storage-1"},
					output: fmt.Sprintf(`Virtual storage: virtual-storage-1
  Outdated repositories:
    repository-2 (read-only):
      Primary: %s
      In-Sync Storages:
        gitaly-2
      Outdated Storages:
        gitaly-1 is behind by 2 changes or less, assigned host
        gitaly-3 is behind by 1 change or less, assigned host
`, scope.primaries["repository-2"]),
				},
				{
					desc: "data loss with partially replicated repositories",
					args: []string{"-virtual-storage=virtual-storage-1", "-partially-replicated"},
					output: fmt.Sprintf(`Virtual storage: virtual-storage-1
  Outdated repositories:
    repository-1 (writable):
      Primary: %s
      In-Sync Storages:
        gitaly-1, assigned host
      Outdated Storages:
        gitaly-2 is behind by 1 change or less, assigned host
        gitaly-3 is behind by 1 change or less
    repository-2 (read-only):
      Primary: %s
      In-Sync Storages:
        gitaly-2
      Outdated Storages:
        gitaly-1 is behind by 2 changes or less, assigned host
        gitaly-3 is behind by 1 change or less, assigned host
`, scope.primaries["repository-1"], scope.primaries["repository-2"]),
				},
				{
					desc:            "multiple virtual storages with read-only repositories",
					virtualStorages: []*config.VirtualStorage{{Name: "virtual-storage-2"}, {Name: "virtual-storage-1"}},
					output: fmt.Sprintf(`Virtual storage: virtual-storage-1
  Outdated repositories:
    repository-2 (read-only):
      Primary: %s
      In-Sync Storages:
        gitaly-2
      Outdated Storages:
        gitaly-1 is behind by 2 changes or less, assigned host
        gitaly-3 is behind by 1 change or less, assigned host
Virtual storage: virtual-storage-2
  All repositories are writable!
`, scope.primaries["repository-2"]),
				},
				{
					desc:            "multiple virtual storages with partially replicated repositories",
					args:            []string{"-partially-replicated"},
					virtualStorages: []*config.VirtualStorage{{Name: "virtual-storage-2"}, {Name: "virtual-storage-1"}},
					output: fmt.Sprintf(`Virtual storage: virtual-storage-1
  Outdated repositories:
    repository-1 (writable):
      Primary: %s
      In-Sync Storages:
        gitaly-1, assigned host
      Outdated Storages:
        gitaly-2 is behind by 1 change or less, assigned host
        gitaly-3 is behind by 1 change or less
    repository-2 (read-only):
      Primary: %s
      In-Sync Storages:
        gitaly-2
      Outdated Storages:
        gitaly-1 is behind by 2 changes or less, assigned host
        gitaly-3 is behind by 1 change or less, assigned host
Virtual storage: virtual-storage-2
  All repositories are up to date!
`, scope.primaries["repository-1"], scope.primaries["repository-2"]),
				},
			} {
				t.Run(tc.desc, func(t *testing.T) {
					cmd := newDatalossSubcommand()
					output := &bytes.Buffer{}
					cmd.output = output

					fs := cmd.FlagSet()
					require.NoError(t, fs.Parse(tc.args))
					err := cmd.Exec(fs, config.Config{
						VirtualStorages: tc.virtualStorages,
						SocketPath:      ln.Addr().String(),
					})
					require.Equal(t, tc.error, err, err)
					require.Equal(t, tc.output, output.String())
				})
			}
		})
	}
}