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

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

import (
	"testing"

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

func TestGetSpawnToken_CommandStats(t *testing.T) {
	t.Parallel()

	ctx := testhelper.Context(t)
	ctx = InitContextStats(ctx)

	putToken, err := getSpawnToken(ctx)
	require.Nil(t, err)
	putToken()

	stats := StatsFromContext(ctx)
	require.NotNil(t, stats)
	require.Contains(t, stats.Fields(), "command.spawn_token_wait_ms")
}

// This test modifies a global config, hence should never run in parallel
func TestGetSpawnToken_CommandStats_timeout(t *testing.T) {
	priorTimeout := spawnConfig.Timeout
	priorSpawnTokens := spawnTokens

	spawnConfig.Timeout = 0
	spawnTokens = make(chan struct{}, 1)
	spawnTokens <- struct{}{}
	defer func() {
		spawnConfig.Timeout = priorTimeout
		spawnTokens = priorSpawnTokens
	}()

	ctx := testhelper.Context(t)
	ctx = InitContextStats(ctx)

	_, err := getSpawnToken(ctx)
	require.ErrorContains(t, err, "process spawn timed out after")

	stats := StatsFromContext(ctx)
	require.NotNil(t, stats)
	fields := stats.Fields()

	require.GreaterOrEqual(t, fields["command.spawn_token_wait_ms"], 0)
	require.Equal(t, fields["command.spawn_token_error"], "spawn token timeout")
}