-
Notifications
You must be signed in to change notification settings - Fork 22
/
api_test.go
96 lines (74 loc) · 1.69 KB
/
api_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
91
92
93
94
95
96
package glice
import (
"context"
"testing"
"github.com/fatih/color"
)
func TestGitHubAPINoKey(t *testing.T) {
c := context.Background()
l := &Repository{
URL: "github.com/ribice/kiss",
Host: "github.com",
Author: "ribice",
Project: "kiss",
}
gc := newGitClient(c, map[string]string{}, false)
err := gc.GetLicense(c, l)
if err != nil {
t.Error(err)
}
if l.Shortname != color.New(color.FgGreen).Sprintf("MIT") {
t.Errorf("API did not return correct license or color.")
}
}
func TestNonexistentLicense(t *testing.T) {
c := context.Background()
l := &Repository{
URL: "github.com/denysdovhan/wtfjs",
Host: "github.com",
Author: "denysdovhan",
Project: "wtfjs",
}
gc := newGitClient(c, map[string]string{}, false)
err := gc.GetLicense(c, l)
if err != nil {
t.Error(err)
}
if l.Shortname != color.New(color.FgYellow).Sprintf("wtfpl") {
t.Errorf("API did not return correct license or color.")
}
}
func TestGitHubAPIWithKey(t *testing.T) {
c := context.Background()
l := &Repository{
URL: "github.com/ribice/kiss",
Host: "github.com",
Author: "ribice",
Project: "kiss",
}
v := map[string]string{
"github.com": "apikey",
}
gc := newGitClient(c, v, false)
err := gc.GetLicense(c, l)
if err == nil {
t.Error("expected bad credentials error")
}
}
func TestGitHubAPIWithKeyAndThanks(t *testing.T) {
c := context.Background()
l := &Repository{
URL: "github.com/ribice/kiss",
Host: "github.com",
Author: "ribice",
Project: "kiss",
}
v := map[string]string{
"github.com": "apikey",
}
gc := newGitClient(c, v, true)
err := gc.GetLicense(c, l)
if err == nil {
t.Error("expected bad credentials error")
}
}