-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathga_test.go
56 lines (48 loc) · 947 Bytes
/
ga_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
package ga
import (
"log"
"strconv"
"testing"
)
// TestGet verifies Google Analytics API response to
// a basic request
func TestGet(t *testing.T) {
gaTemp := new(Client)
// initialise Client object
gaTemp.Init()
testRequest := Request{"ga:23949588",
"2014-01-01",
"2014-01-02",
"ga:visits",
"ga:day",
"",
"",
"",
100,
5}
result := gaTemp.Get(1, &testRequest)
log.Println(result)
}
// TestBatchGet checks the batch processing functionality
func TestBatchGet(t *testing.T) {
var testRequests []*Request
gaTemp := new(Client)
gaTemp.Init()
for i := 0; i < 10; i++ {
testRequests = append(testRequests, &Request{"ga:23949588",
"2014-01-0" + strconv.Itoa(i+1),
"2014-01-0" + strconv.Itoa(i+2),
"ga:visits",
"ga:day",
"",
"",
"",
100,
5})
}
if results, err := gaTemp.BatchGet(testRequests); err == nil {
for a, b := range results {
log.Printf("results: %d: %s", a, b)
}
}
}