-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrowdin_test.go
42 lines (35 loc) · 954 Bytes
/
crowdin_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
package crowdin
import (
"testing"
"net/http"
)
func TestNew_setToken(t *testing.T) {
g := New("token", "project-name")
if g.config.token != "token" {
t.Errorf("Expected %v, got %v", "abc", g.config.token)
}
if g.config.project != "project-name" {
t.Errorf("Expected %v, got %v", "project-name", g.config.project)
}
}
func TestNew_setAPIBaseURL(t *testing.T) {
g := New("token", "project-name")
if g.config.apiBaseURL != apiBaseURL {
t.Errorf("Expected %v, got %v", apiBaseURL, g.config.apiBaseURL)
}
}
func TestNew_setStreamBaseURL(t *testing.T) {
g := New("token", "project-name")
if g.config.apiAccountBaseURL != apiAccountBaseURL {
t.Errorf("Expected %v, got %v", apiAccountBaseURL, g.config.apiAccountBaseURL)
}
}
func TestGitter_SetClient(t *testing.T) {
setup()
defer teardown()
c := &http.Client{}
crowdin.SetClient(c)
if crowdin.config.client != c {
t.Logf("Expected %v, got %v", c, crowdin.config.client)
}
}