-
Notifications
You must be signed in to change notification settings - Fork 77
/
browser_test.go
124 lines (104 loc) · 1.98 KB
/
browser_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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
package browser
import (
"testing"
"time"
)
func TestRandom(t *testing.T) {
if Random() == "" {
t.Error("browser.Random is empty")
}
}
func TestChrome(t *testing.T) {
if Chrome() == "" {
t.Error("browser.Chrome is empty")
}
}
func TestInternetExplorer(t *testing.T) {
if InternetExplorer() == "" {
t.Error("browser.InternetExplorer is empty")
}
}
func TestFirefox(t *testing.T) {
if Firefox() == "" {
t.Error("browser.Firefox is empty")
}
}
func TestSafari(t *testing.T) {
if Safari() == "" {
t.Error("browser.Safari is empty")
}
}
func TestAndroid(t *testing.T) {
if Android() == "" {
t.Error("browser.Android is empty")
}
}
func TestMacOSX(t *testing.T) {
if MacOSX() == "" {
t.Error("browser.MacOSX is empty")
}
}
func TestIOS(t *testing.T) {
if IOS() == "" {
t.Error("browser.IOS is empty")
}
}
func TestLinux(t *testing.T) {
if Linux() == "" {
t.Error("browser.IOS is empty")
}
}
func TestIPhone(t *testing.T) {
if IPhone() == "" {
t.Error("browser.IPhone is empty")
}
}
func TestIPad(t *testing.T) {
if IPad() == "" {
t.Error("browser.IPad is empty")
}
}
func TestComputer(t *testing.T) {
if Computer() == "" {
t.Error("browser.Computer is empty")
}
}
func TestMobile(t *testing.T) {
if Mobile() == "" {
t.Error("browser.Mobile is empty")
}
}
func TestBrowser_Random(t *testing.T) {
b := NewBrowser(Client{
MaxPage: 1,
Delay: 200 * time.Millisecond,
Timeout: 10 * time.Second,
}, Cache{
UpdateFile: true,
})
if b.Random() == "" {
t.Error("NewBrowser.Random is empty")
}
}
func TestBrowser_Chrome(t *testing.T) {
b := NewBrowser(Client{
MaxPage: 1,
Delay: 250 * time.Millisecond,
Timeout: 20 * time.Second,
}, Cache{})
if b.Chrome() == "" {
t.Error("NewBrowser.Chrome is empty")
}
}
func TestBrowser_IOS(t *testing.T) {
b := NewBrowser(Client{
MaxPage: 1,
Delay: 350 * time.Millisecond,
Timeout: 20 * time.Second,
}, Cache{
UpdateFile: true,
})
if b.IOS() == "" {
t.Error("NewBrowser.IOS is empty")
}
}