summaryrefslogtreecommitdiff
path: root/workhorse/internal/zipartifacts/errors_test.go
blob: 6fce160b3bc4bcbadd52ebf2b796bcd6fac8ad60 (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
package zipartifacts

import (
	"errors"
	"testing"

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

func TestExitCodeByError(t *testing.T) {
	t.Run("when error has been recognized", func(t *testing.T) {
		code := ExitCodeByError(ErrorCode[CodeLimitsReached])

		require.Equal(t, code, CodeLimitsReached)
		require.Greater(t, code, 10)
	})

	t.Run("when error is an unknown one", func(t *testing.T) {
		code := ExitCodeByError(errors.New("unknown error"))

		require.Equal(t, code, CodeUnknownError)
		require.Greater(t, code, 10)
	})
}

func TestErrorLabels(t *testing.T) {
	for code := range ErrorCode {
		_, ok := ErrorLabel[code]

		require.True(t, ok)
	}
}