forked from bunsenapp/go-selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathremote_driver_document_test.go
201 lines (164 loc) · 4.42 KB
/
remote_driver_document_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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
package goselenium
import (
"errors"
"testing"
)
/*
PageSource tests
*/
func Test_DocumentPageSource_InvalidSessionIDResultsInError(t *testing.T) {
api := &testableAPIService{
jsonToReturn: "",
errorToReturn: nil,
}
d := setUpDriver(setUpDefaultCaps(), api)
_, err := d.PageSource()
if err == nil || !IsSessionIDError(err) {
t.Errorf(sessionIDErrorText)
}
}
func Test_DocumentPageSource_CommunicationErrorIsReturned(t *testing.T) {
api := &testableAPIService{
jsonToReturn: "",
errorToReturn: errors.New("An error"),
}
d := setUpDriver(setUpDefaultCaps(), api)
d.sessionID = "12345"
_, err := d.PageSource()
if err == nil || !IsCommunicationError(err) {
t.Errorf(apiCommunicationErrorText)
}
}
func Test_DocumentPageSource_UnmarshallingErrorIsReturned(t *testing.T) {
api := &testableAPIService{
jsonToReturn: "Invalid JSON",
errorToReturn: nil,
}
d := setUpDriver(setUpDefaultCaps(), api)
d.sessionID = "12345"
_, err := d.PageSource()
if err == nil || !IsUnmarshallingError(err) {
t.Errorf(unmarshallingErrorText)
}
}
func Test_DocumentPageSource_ResultIsReturnedSuccessfully(t *testing.T) {
api := &testableAPIService{
jsonToReturn: `{
"state": "success",
"value": "this would be HTML"
}`,
errorToReturn: nil,
}
d := setUpDriver(setUpDefaultCaps(), api)
d.sessionID = "12345"
resp, err := d.PageSource()
if err != nil || resp.State != "success" || resp.Source != "this would be HTML" {
t.Errorf(correctResponseErrorText)
}
}
/*
ExecuteScript tests
*/
func Test_CommandExecuteScript_InvalidSessionIDResultsInError(t *testing.T) {
api := &testableAPIService{
jsonToReturn: "",
errorToReturn: nil,
}
d := setUpDriver(setUpDefaultCaps(), api)
_, err := d.ExecuteScript("alert('test');")
if err == nil || !IsSessionIDError(err) {
t.Errorf(sessionIDErrorText)
}
}
func Test_CommandExecuteScript_CommunicationErrorIsReturned(t *testing.T) {
api := &testableAPIService{
jsonToReturn: "",
errorToReturn: errors.New("An error"),
}
d := setUpDriver(setUpDefaultCaps(), api)
d.sessionID = "12345"
_, err := d.ExecuteScript("alert('test');")
if err == nil || !IsCommunicationError(err) {
t.Errorf(apiCommunicationErrorText)
}
}
func Test_CommandExecuteScript_UnmarshallingErrorIsReturned(t *testing.T) {
api := &testableAPIService{
jsonToReturn: "Invalid JSON",
errorToReturn: nil,
}
d := setUpDriver(setUpDefaultCaps(), api)
d.sessionID = "12345"
_, err := d.ExecuteScript("alert('test');")
if err == nil || !IsUnmarshallingError(err) {
t.Errorf(unmarshallingErrorText)
}
}
func Test_CommandExecuteScript_ResultIsReturnedSuccessfully(t *testing.T) {
api := &testableAPIService{
jsonToReturn: `{
"state": "success",
"value": "test"
}`,
errorToReturn: nil,
}
d := setUpDriver(setUpDefaultCaps(), api)
d.sessionID = "12345"
resp, err := d.ExecuteScript("alert('test');")
if err != nil || resp.State != "success" {
t.Errorf(correctResponseErrorText)
}
}
/*
ExecuteScriptAsync tests
*/
func Test_CommandExecuteScriptAsync_InvalidSessionIDResultsInError(t *testing.T) {
api := &testableAPIService{
jsonToReturn: "",
errorToReturn: nil,
}
d := setUpDriver(setUpDefaultCaps(), api)
_, err := d.ExecuteScriptAsync("alert('test');")
if err == nil || !IsSessionIDError(err) {
t.Errorf(sessionIDErrorText)
}
}
func Test_CommandExecuteScriptAsync_CommunicationErrorIsReturned(t *testing.T) {
api := &testableAPIService{
jsonToReturn: "",
errorToReturn: errors.New("An error"),
}
d := setUpDriver(setUpDefaultCaps(), api)
d.sessionID = "12345"
_, err := d.ExecuteScriptAsync("alert('test');")
if err == nil || !IsCommunicationError(err) {
t.Errorf(apiCommunicationErrorText)
}
}
func Test_CommandExecuteScriptAsync_UnmarshallingErrorIsReturned(t *testing.T) {
api := &testableAPIService{
jsonToReturn: "Invalid JSON",
errorToReturn: nil,
}
d := setUpDriver(setUpDefaultCaps(), api)
d.sessionID = "12345"
_, err := d.ExecuteScriptAsync("alert('test');")
if err == nil || !IsUnmarshallingError(err) {
t.Errorf(unmarshallingErrorText)
}
}
func Test_CommandExecuteScriptAsync_ResultIsReturnedSuccessfully(t *testing.T) {
api := &testableAPIService{
jsonToReturn: `{
"state": "success",
"value": "test"
}`,
errorToReturn: nil,
}
d := setUpDriver(setUpDefaultCaps(), api)
d.sessionID = "12345"
resp, err := d.ExecuteScriptAsync("alert('test');")
if err != nil || resp.State != "success" {
t.Errorf(correctResponseErrorText)
}
}