forked from atlassian/go-sentry-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient_test.go
64 lines (50 loc) · 1.24 KB
/
client_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
package sentry
import (
"fmt"
"math/rand"
"os"
"testing"
)
func getDefaultOrg() string {
defaultorg := os.Getenv("SENTRY_DEFAULT_ORG")
if defaultorg == "" {
return "sentry"
}
return defaultorg
}
func newTestClient(t *testing.T) *Client {
authtoken := os.Getenv("SENTRY_AUTH_TOKEN")
endpoint := os.Getenv("SENTRY_ENDPOINT")
if authtoken == "" {
t.Fatal("Need a authtoken to continue. Please set SENTRY_AUTH_TOKEN")
}
if endpoint == "" {
endpoint = "https://sentry.io/api/0/"
}
client, clienterr := NewClient(authtoken, &endpoint, nil)
if clienterr != nil {
t.Fatal(clienterr)
}
return client
}
func generateIdentifier(prefix string) string {
return fmt.Sprintf("%s %d", prefix, rand.Int())
}
func TestClientBadEndpoint(t *testing.T) {
t.Parallel()
badendpoint := ""
authtoken := os.Getenv("SENTRY_AUTH_TOKEN")
_, berr := NewClient(authtoken, &badendpoint, nil)
if berr == nil {
t.Error("Should have gotten an error for an empty endpoint")
}
}
func TestClientKnownGoodEndpoint(t *testing.T) {
bclient, berr := NewClient("testauthclient", nil, nil)
if berr != nil {
t.Error(berr)
}
if bclient.Endpoint != "https://sentry.io/api/0/" {
t.Errorf("Endpoint is not https://sentry.io/api/0 got %s", bclient.Endpoint)
}
}