forked from SeleniumHQ/selenium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNode.java
More file actions
242 lines (210 loc) · 9.27 KB
/
Copy pathNode.java
File metadata and controls
242 lines (210 loc) · 9.27 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
// 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.grid.node;
import com.google.common.collect.ImmutableMap;
import org.openqa.selenium.BuildInfo;
import org.openqa.selenium.Capabilities;
import org.openqa.selenium.NoSuchSessionException;
import org.openqa.selenium.grid.data.CreateSessionRequest;
import org.openqa.selenium.grid.data.CreateSessionResponse;
import org.openqa.selenium.grid.data.NodeId;
import org.openqa.selenium.grid.data.NodeStatus;
import org.openqa.selenium.grid.data.Session;
import org.openqa.selenium.grid.security.RequiresSecretFilter;
import org.openqa.selenium.grid.security.Secret;
import org.openqa.selenium.internal.Either;
import org.openqa.selenium.internal.Require;
import org.openqa.selenium.io.TemporaryFilesystem;
import org.openqa.selenium.json.Json;
import org.openqa.selenium.remote.SessionId;
import org.openqa.selenium.remote.http.HttpRequest;
import org.openqa.selenium.remote.http.HttpResponse;
import org.openqa.selenium.remote.http.Routable;
import org.openqa.selenium.remote.http.Route;
import org.openqa.selenium.remote.locators.CustomLocator;
import org.openqa.selenium.remote.tracing.SpanDecorator;
import org.openqa.selenium.remote.tracing.Tracer;
import org.openqa.selenium.status.HasReadyState;
import org.openqa.selenium.WebDriverException;
import java.io.IOException;
import java.net.URI;
import java.util.Map;
import java.util.ServiceLoader;
import java.util.Set;
import java.util.logging.Logger;
import java.util.stream.Collectors;
import java.util.stream.StreamSupport;
import static org.openqa.selenium.remote.HttpSessionId.getSessionId;
import static org.openqa.selenium.remote.http.Contents.asJson;
import static org.openqa.selenium.remote.http.Route.combine;
import static org.openqa.selenium.remote.http.Route.delete;
import static org.openqa.selenium.remote.http.Route.get;
import static org.openqa.selenium.remote.http.Route.matching;
import static org.openqa.selenium.remote.http.Route.post;
/**
* A place where individual webdriver sessions are running. Those sessions may be in-memory, or
* only reachable via localhost and a network. Or they could be something else entirely.
* <p>
* This class responds to the following URLs:
* <table summary="HTTP commands the Node understands">
* <tr>
* <th>Verb</th>
* <th>URL Template</th>
* <th>Meaning</th>
* </tr>
* <tr>
* <td>POST</td>
* <td>/se/grid/node/session</td>
* <td>Attempts to start a new session for the given node. The posted data should be a
* json-serialized {@link Capabilities} instance. Returns a serialized {@link Session}.
* Subclasses of {@code Node} are expected to register the session with the
* {@link org.openqa.selenium.grid.sessionmap.SessionMap}.</td>
* </tr>
* <tr>
* <td>GET</td>
* <td>/se/grid/node/session/{sessionId}</td>
* <td>Finds the {@link Session} identified by {@code sessionId} and returns the JSON-serialized
* form.</td>
* </tr>
* <tr>
* <td>DELETE</td>
* <td>/se/grid/node/session/{sessionId}</td>
* <td>Stops the {@link Session} identified by {@code sessionId}. It is expected that this will
* also cause the session to removed from the
* {@link org.openqa.selenium.grid.sessionmap.SessionMap}.</td>
* </tr>
* <tr>
* <td>GET</td>
* <td>/se/grid/node/owner/{sessionId}</td>
* <td>Allows the node to be queried about whether or not it owns the {@link Session} identified
* by {@code sessionId}. This returns a boolean.</td>
* </tr>
* <tr>
* <td>*</td>
* <td>/session/{sessionId}/*</td>
* <td>The request is forwarded to the {@link Session} identified by {@code sessionId}. When the
* Quit command is called, the {@link Session} should remove itself from the
* {@link org.openqa.selenium.grid.sessionmap.SessionMap}.</td>
* </tr>
* </table>
*/
public abstract class Node implements HasReadyState, Routable {
private static final Logger LOG = Logger.getLogger(Node.class.getName());
private static final BuildInfo INFO = new BuildInfo();
private static final ImmutableMap<String, String> OS_INFO = loadOsInfo();
protected final Tracer tracer;
private final NodeId id;
private final URI uri;
private final Route routes;
protected boolean draining;
protected Node(Tracer tracer, NodeId id, URI uri, Secret registrationSecret) {
this.tracer = Require.nonNull("Tracer", tracer);
this.id = Require.nonNull("Node id", id);
this.uri = Require.nonNull("URI", uri);
Require.nonNull("Registration secret", registrationSecret);
RequiresSecretFilter requiresSecret = new RequiresSecretFilter(registrationSecret);
Set<CustomLocator> customLocators = StreamSupport.stream(
ServiceLoader.load(CustomLocator.class).spliterator(),
false)
.collect(Collectors.toSet());
if (!customLocators.isEmpty()) {
String names = customLocators.stream().map(CustomLocator::getLocatorName).collect(Collectors.joining(", "));
LOG.info("Binding additional locator mechanisms: " + names);
}
Json json = new Json();
routes = combine(
// "getSessionId" is aggressive about finding session ids, so this needs to be the last
// route that is checked.
matching(req -> getSessionId(req.getUri()).map(SessionId::new).map(this::isSessionOwner).orElse(false))
.to(() -> new ForwardWebDriverCommand(this))
.with(spanDecorator("node.forward_command")),
new CustomLocatorHandler(this, registrationSecret, customLocators),
post("/session/{sessionId}/file")
.to(params -> new UploadFile(this, sessionIdFrom(params)))
.with(spanDecorator("node.upload_file")),
post("/session/{sessionId}/se/file")
.to(params -> new UploadFile(this, sessionIdFrom(params)))
.with(spanDecorator("node.upload_file")),
get("/se/grid/node/owner/{sessionId}")
.to(params -> new IsSessionOwner(this, sessionIdFrom(params)))
.with(spanDecorator("node.is_session_owner").andThen(requiresSecret)),
delete("/se/grid/node/session/{sessionId}")
.to(params -> new StopNodeSession(this, sessionIdFrom(params)))
.with(spanDecorator("node.stop_session").andThen(requiresSecret)),
get("/se/grid/node/session/{sessionId}")
.to(params -> new GetNodeSession(this, sessionIdFrom(params)))
.with(spanDecorator("node.get_session").andThen(requiresSecret)),
post("/se/grid/node/session")
.to(() -> new NewNodeSession(this, json))
.with(spanDecorator("node.new_session").andThen(requiresSecret)),
post("/se/grid/node/drain")
.to(() -> new Drain(this, json))
.with(spanDecorator("node.drain").andThen(requiresSecret)),
get("/se/grid/node/status")
.to(() -> req -> new HttpResponse().setContent(asJson(getStatus())))
.with(spanDecorator("node.node_status")),
get("/status")
.to(() -> new StatusHandler(this))
.with(spanDecorator("node.status")));
}
private static ImmutableMap<String, String> loadOsInfo() {
return ImmutableMap.of(
"arch", System.getProperty("os.arch"),
"name", System.getProperty("os.name"),
"version", System.getProperty("os.version"));
}
private SessionId sessionIdFrom(Map<String, String> params) {
return new SessionId(params.get("sessionId"));
}
private SpanDecorator spanDecorator(String name) {
return new SpanDecorator(tracer, req -> name);
}
public NodeId getId() {
return id;
}
public URI getUri() {
return uri;
}
public String getNodeVersion() {
return String.format("%s (revision %s)", INFO.getReleaseLabel(), INFO.getBuildRevision());
}
public ImmutableMap<String, String> getOsInfo() {
return OS_INFO;
}
public abstract Either<WebDriverException, CreateSessionResponse> newSession(CreateSessionRequest sessionRequest);
public abstract HttpResponse executeWebDriverCommand(HttpRequest req);
public abstract Session getSession(SessionId id) throws NoSuchSessionException;
public TemporaryFilesystem getTemporaryFilesystem(SessionId id) throws IOException {
throw new UnsupportedOperationException();
}
public abstract HttpResponse uploadFile(HttpRequest req, SessionId id);
public abstract void stop(SessionId id) throws NoSuchSessionException;
public abstract boolean isSessionOwner(SessionId id);
public abstract boolean isSupporting(Capabilities capabilities);
public abstract NodeStatus getStatus();
public abstract HealthCheck getHealthCheck();
public boolean isDraining() { return draining; }
public abstract void drain();
@Override
public boolean matches(HttpRequest req) {
return routes.matches(req);
}
@Override
public HttpResponse execute(HttpRequest req) {
return routes.execute(req);
}
}