-
-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathHtmlUnitAlert.java
More file actions
284 lines (245 loc) · 7.82 KB
/
HtmlUnitAlert.java
File metadata and controls
284 lines (245 loc) · 7.82 KB
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
// Licensed to the Software Freedom Conservancy (SFC) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The SFC licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package org.openqa.selenium.htmlunit;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
import org.htmlunit.Page;
import org.htmlunit.WebClient;
import org.htmlunit.WebWindow;
import org.openqa.selenium.Alert;
import org.openqa.selenium.Capabilities;
import org.openqa.selenium.ElementNotInteractableException;
import org.openqa.selenium.NoAlertPresentException;
import org.openqa.selenium.UnexpectedAlertBehaviour;
import org.openqa.selenium.UnhandledAlertException;
import org.openqa.selenium.remote.CapabilityType;
/**
* Implementation of {@link Alert}.
*
* @author Ahmed Ashour
* @author A aftakhov
* @author Ronald Brill
*/
public class HtmlUnitAlert implements Alert {
private final HtmlUnitDriver driver_;
private AlertHolder holder_;
private boolean autoDismissOnQuit;
private final Lock lock_ = new ReentrantLock();
private final Condition condition_ = lock_.newCondition();
private WebWindow webWindow_;
private UnexpectedAlertBehaviour unexpectedAlertBehaviour_ = UnexpectedAlertBehaviour.DISMISS_AND_NOTIFY;
HtmlUnitAlert(final HtmlUnitDriver driver) {
driver_ = driver;
final WebClient webClient = driver.getWebClient();
webClient.setAlertHandler(this::alertHandler);
webClient.setPromptHandler(this::promptHandler);
webClient.setConfirmHandler(this::confirmHandler);
webClient.setOnbeforeunloadHandler(this::onbeforeunloadHandler);
}
private void alertHandler(final Page page, final String message) {
if (autoDismissOnQuit) {
return;
}
webWindow_ = page.getEnclosingWindow();
holder_ = new AlertHolder(message);
awaitCondition();
}
private boolean confirmHandler(final Page page, final String message) {
if (autoDismissOnQuit) {
return false;
}
webWindow_ = page.getEnclosingWindow();
holder_ = new AlertHolder(message);
final AlertHolder localHolder = holder_;
awaitCondition();
return localHolder.isAccepted();
}
private void awaitCondition() {
lock_.lock();
try {
if (driver_.isProcessAlert()) {
waitFor(5);
}
}
finally {
lock_.unlock();
}
}
private void waitFor(int time) {
try {
condition_.await(time, TimeUnit.SECONDS);
}
catch (final InterruptedException e) {
throw new RuntimeException(e);
}
}
private String promptHandler(final Page page, final String message, final String defaultMessage) {
if (autoDismissOnQuit) {
return null;
}
webWindow_ = page.getEnclosingWindow();
holder_ = new PromptHolder(message, defaultMessage);
final PromptHolder localHolder = (PromptHolder) holder_;
awaitCondition();
return localHolder.value_;
}
private boolean onbeforeunloadHandler(final Page page, final String returnValue) {
if (autoDismissOnQuit) {
return true;
}
webWindow_ = page.getEnclosingWindow();
holder_ = new AlertHolder(returnValue);
final AlertHolder localHolder = holder_;
awaitCondition();
return localHolder.isAccepted();
}
WebWindow getWebWindow() {
return webWindow_;
}
public void setAutoAccept(final boolean autoAccept) {
this.autoDismissOnQuit = autoAccept;
}
public void handleBrowserCapabilities(final Capabilities capabilities) {
final UnexpectedAlertBehaviour behaviour = (UnexpectedAlertBehaviour) capabilities
.getCapability(CapabilityType.UNHANDLED_PROMPT_BEHAVIOUR);
if (behaviour != null) {
this.unexpectedAlertBehaviour_ = behaviour;
}
}
@Override
public void dismiss() {
lock_.lock();
try {
condition_.signal();
}
finally {
lock_.unlock();
holder_ = null;
}
}
@Override
public void accept() {
lock_.lock();
try {
holder_.accept();
condition_.signal();
}
finally {
lock_.unlock();
holder_ = null;
}
}
@Override
public String getText() {
if (holder_ == null) {
throw new NoAlertPresentException();
}
String msg = holder_.message_;
msg = msg.replace("\r\n", "\n");
if (!driver_.getBrowserVersion().isIE()) {
msg = msg.replace('\r', '\n');
}
return msg;
}
@Override
public void sendKeys(final String keysToSend) {
holder_.sendKeys(keysToSend);
}
/**
* Closes the current window.
*/
void close() {
lock_.lock();
try {
condition_.signal();
setAutoAccept(true);
}
finally {
lock_.unlock();
holder_ = null;
}
}
boolean isLocked() {
return holder_ != null;
}
public void ensureUnlocked() {
if (isLocked()) {
final String text = getText();
switch (unexpectedAlertBehaviour_) {
case ACCEPT:
accept();
return;
case ACCEPT_AND_NOTIFY:
accept();
break;
case DISMISS:
dismiss();
return;
case DISMISS_AND_NOTIFY:
dismiss();
break;
case IGNORE:
break;
default:
break;
}
throw new UnhandledAlertException("Unexpected alert found", text);
}
}
private static class AlertHolder {
private final String message_;
private boolean accepted_;
AlertHolder(final String message) {
this.message_ = message;
}
void sendKeys(final String keysToSend) {
if (keysToSend != null) {
throw new ElementNotInteractableException("alert is not interactable");
}
throw new IllegalArgumentException();
}
void accept() {
accepted_ = true;
}
boolean isAccepted() {
return accepted_;
}
}
private static class PromptHolder extends AlertHolder {
private final String defaultMessage_;
private String value_;
PromptHolder(final String message, final String defaultMessage) {
super(message);
this.defaultMessage_ = defaultMessage;
}
@Override
void sendKeys(String keysToSend) {
if (keysToSend == null) {
keysToSend = defaultMessage_;
}
this.value_ = keysToSend;
}
@Override
void accept() {
if (value_ == null) {
value_ = defaultMessage_;
}
}
}
}