-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathchrome_test.go
161 lines (150 loc) · 3.27 KB
/
chrome_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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
package chromebot_test
import (
"context"
"errors"
"flag"
"log"
"os/exec"
"strconv"
"strings"
"testing"
"time"
"github.com/chromedp/chromedp"
"github.com/nanitefactory/chromebot"
)
var bFlagHeadless = false
func init() {
flag.BoolVar(&bFlagHeadless, "headless", false, "If set to true, the browser runs in headless mode.")
{
major, minor, _, err := func() (major int, minor int, patch int, err error) {
cmd := exec.Command("go", "version")
out, err := cmd.Output()
if err != nil {
return
}
semantic := strings.Split(strings.Fields(strings.TrimLeft(string(out), "go version go"))[0], ".")
if len(semantic) > 3 {
err = errors.New("unexpected version")
return
}
if len(semantic) > 2 {
patch, err = strconv.Atoi(semantic[2])
if err != nil {
return
}
}
if len(semantic) > 1 {
minor, err = strconv.Atoi(semantic[1])
if err != nil {
return
}
}
major, err = strconv.Atoi(semantic[0])
return
}() // getGoVersion
if err == nil && (major < 1 || (major == 1 && minor < 13)) {
Init() // if 1.12 or below for sure
}
}
}
func Init() {
flag.Parse()
}
func TestChromedp(t *testing.T) {
ctx, cancel := chromedp.NewExecAllocator(context.Background(), chromedp.Headless)
defer cancel()
ctx2, _ := chromedp.NewContext(ctx)
chromedp.Run(ctx2)
}
func TestNewChrome(t *testing.T) {
if !bFlagHeadless {
chromebot.New(bFlagHeadless).Close()
}
chromebot.New(true).Close()
}
func TestChromeManyTabs(t *testing.T) {
testCountTab := func(c *chromebot.Chrome, n int) {
if c.CountTabs() != n {
panic("c.CountTabs() not working well")
}
}
c := chromebot.New(bFlagHeadless)
defer c.Close()
//
n := 1
testCountTab(c, n)
//
tab1 := c.AddNewTab()
n++
testCountTab(c, n)
//
tab2 := c.AddNewTab()
n++
testCountTab(c, n)
//
for i := 0; i < 10; i++ {
c.AddNewTab()
n++
testCountTab(c, n)
}
//
tab2.Close()
tab1.Close()
for i := 0; i < c.CountTabs(); i++ {
c.Tab(i).Close()
time.Sleep(time.Millisecond * 100)
}
testCountTab(c, n)
}
func TestChromeClose(t *testing.T) {
c1 := chromebot.New(bFlagHeadless)
defer c1.Close()
defer c1.Close()
defer c1.Close()
c1.AddNewTab()
c1.Tab(0).Close()
c1.Tab(0).Close()
c1.Tab(0).Close()
c1.AddNewTab()
}
func TestChromeTabAsBrowser(t *testing.T) {
defer func() { // expecting a panic
if r := recover(); r == nil {
panic("must panic but it didn't panic")
}
}()
c := chromebot.New(bFlagHeadless)
defer c.Close()
c.AddNewTab(chromedp.WithBrowserOption(chromedp.WithBrowserLogf(func(str string, args ...interface{}) {
log.Println()
})))
}
func TestDeadChrome(t *testing.T) {
c := chromebot.New(bFlagHeadless)
deadTab := c.Tab(0)
c.Close()
c.Close()
c.Close()
c.Close()
if tab := c.Tab(0); tab == nil {
panic(tab)
}
if nTabs := c.CountTabs(); nTabs != 1 {
panic(nTabs)
}
c.Tab(0).Close()
if c.Tab(0) != deadTab {
panic("failed to get the first tab")
}
if tab := c.AddNewTab(); tab != nil {
panic(tab)
}
if err := c.Listen(func(ev interface{}) {}); err == nil {
panic("Listen() should error")
}
select {
case <-c.Dead():
default:
panic("Dead() not working well")
}
}