-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathgithub_source_test.go
76 lines (60 loc) · 2.15 KB
/
github_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
package selfupdate
import (
"context"
"os"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestGitHubTokenEnv(t *testing.T) {
token := os.Getenv("GITHUB_TOKEN")
if token == "" {
t.Skip("because $GITHUB_TOKEN is not set")
}
if _, err := NewGitHubSource(GitHubConfig{}); err != nil {
t.Error("Failed to initialize GitHub source with empty config")
}
if _, err := NewGitHubSource(GitHubConfig{APIToken: token}); err != nil {
t.Error("Failed to initialize GitHub source with API token config")
}
}
func TestGitHubTokenIsNotSet(t *testing.T) {
t.Setenv("GITHUB_TOKEN", "")
if _, err := NewGitHubSource(GitHubConfig{}); err != nil {
t.Error("Failed to initialize GitHub source with empty config")
}
}
func TestGitHubEnterpriseClientInvalidURL(t *testing.T) {
_, err := NewGitHubSource(GitHubConfig{APIToken: "my_token", EnterpriseBaseURL: ":this is not a URL"})
if err == nil {
t.Fatal("Invalid URL should raise an error")
}
}
func TestGitHubEnterpriseClientValidURL(t *testing.T) {
_, err := NewGitHubSource(GitHubConfig{APIToken: "my_token", EnterpriseBaseURL: "http://localhost"})
if err != nil {
t.Fatal("Failed to initialize GitHub source with valid URL")
}
}
func TestGitHubListReleasesContextCancelled(t *testing.T) {
source, err := NewGitHubSource(GitHubConfig{})
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 TestGitHubDownloadReleaseAssetContextCancelled(t *testing.T) {
source, err := NewGitHubSource(GitHubConfig{})
require.NoError(t, err)
ctx, cancelFn := context.WithCancel(context.Background())
cancelFn()
_, err = source.DownloadReleaseAsset(ctx, &Release{repository: ParseSlug("creativeprojects/resticprofile")}, 11)
assert.ErrorIs(t, err, context.Canceled)
}
func TestGitHubDownloadReleaseAssetWithNilRelease(t *testing.T) {
source, err := NewGitHubSource(GitHubConfig{})
require.NoError(t, err)
_, err = source.DownloadReleaseAsset(context.Background(), nil, 11)
assert.ErrorIs(t, err, ErrInvalidRelease)
}