-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathgitlab_source_test.go
90 lines (72 loc) · 2.43 KB
/
gitlab_source_test.go
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
package selfupdate
import (
"context"
"os"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestGitLabTokenEnv(t *testing.T) {
token := os.Getenv("GITLAB_TOKEN")
if token == "" {
t.Skip("because $GITLAB_TOKEN is not set")
}
if _, err := NewGitLabSource(GitLabConfig{}); err != nil {
t.Error("Failed to initialize GitLab source with empty config")
}
if _, err := NewGitLabSource(GitLabConfig{APIToken: token}); err != nil {
t.Error("Failed to initialize GitLab source with API token config")
}
}
func TestGitLabTokenIsNotSet(t *testing.T) {
t.Setenv("GITLAB_TOKEN", "")
if _, err := NewGitLabSource(GitLabConfig{}); err != nil {
t.Error("Failed to initialize GitLab source with empty config")
}
}
func TestGitLabEnterpriseClientInvalidURL(t *testing.T) {
_, err := NewGitLabSource(GitLabConfig{APIToken: "my_token", BaseURL: ":this is not a URL"})
if err == nil {
t.Fatal("Invalid URL should raise an error")
}
}
func TestGitLabEnterpriseClientValidURL(t *testing.T) {
_, err := NewGitLabSource(GitLabConfig{APIToken: "my_token", BaseURL: "http://localhost"})
if err != nil {
t.Fatal("Failed to initialize GitLab source with valid URL")
}
}
func TestGitLabListReleasesContextCancelled(t *testing.T) {
source, err := NewGitLabSource(GitLabConfig{})
require.NoError(t, err)
ctx, cancelFn := context.WithCancel(context.Background())
cancelFn()
_, err = source.ListReleases(ctx, ParseSlug("creativeprojects/resticprofile"))
assert.ErrorIs(t, err, context.Canceled)
}
func TestGitLabDownloadReleaseAssetContextCancelled(t *testing.T) {
source, err := NewGitLabSource(GitLabConfig{})
require.NoError(t, err)
ctx, cancelFn := context.WithCancel(context.Background())
cancelFn()
_, err = source.DownloadReleaseAsset(ctx, &Release{
AssetID: 11,
AssetURL: "http://localhost/",
}, 11)
assert.ErrorIs(t, err, context.Canceled)
}
func TestGitLabDownloadReleaseAssetWithNilRelease(t *testing.T) {
source, err := NewGitLabSource(GitLabConfig{})
require.NoError(t, err)
_, err = source.DownloadReleaseAsset(context.Background(), nil, 11)
assert.ErrorIs(t, err, ErrInvalidRelease)
}
func TestGitLabDownloadReleaseAssetNotFound(t *testing.T) {
source, err := NewGitLabSource(GitLabConfig{})
require.NoError(t, err)
_, err = source.DownloadReleaseAsset(context.Background(), &Release{
AssetID: 11,
ValidationAssetID: 12,
}, 13)
assert.ErrorIs(t, err, ErrAssetNotFound)
}