public class BaseRemoteProxy extends Object implements RemoteProxy
| Modifier and Type | Field and Description |
|---|---|
protected URL |
remoteHost |
| Constructor and Description |
|---|
BaseRemoteProxy(RegistrationRequest request,
Registry registry)
Create the proxy from the info sent by the remote.
|
| Modifier and Type | Method and Description |
|---|---|
int |
compareTo(RemoteProxy o) |
boolean |
equals(Object obj) |
void |
forceSlotCleanerRun()
Internal use only
|
CapabilityMatcher |
getCapabilityHelper()
Returns the capability matcher that will be used to by the remote proxy
to determine whether its test slots can run a requested test session.
|
Map<String,Object> |
getConfig()
Returns the configuration the node was initialized with.
|
HtmlRenderer |
getHtmlRender()
Returns the object responsible for rendering any information about the proxy in a Web application.
|
org.openqa.selenium.remote.internal.HttpClientFactory |
getHttpClientFactory()
Retrieves the global factory for creating HTTP clients.
|
String |
getId()
Returns the unique id for the node.
|
int |
getMaxNumberOfConcurrentTestSessions()
Returns the maximum number of concurrent tests that can run on this node.
|
static <T extends RemoteProxy> |
getNewInstance(RegistrationRequest request,
Registry registry)
Takes a registration request and return the RemoteProxy associated to it.
|
TestSession |
getNewSession(Map<String,Object> requestedCapability)
Creates and returns a new test session if the current node has the resources and is ready to run the test.
|
RegistrationRequest |
getOriginalRegistrationRequest()
Returns the request sent from the node to the hub to register the proxy.
|
Registry |
getRegistry()
Retrieves the handle to the registry this remote proxy is registered with.
|
URL |
getRemoteHost()
Get the host the node is on.
|
float |
getResourceUsageInPercent()
Return how much resources are currently used on the proxy.
|
com.google.gson.JsonObject |
getStatus()
Renders the status of the node as JSON.
|
List<TestSlot> |
getTestSlots()
Each test running on the node will occupy a test slot.
|
int |
getTimeOut()
Indicates how long a node should wait for a seemingly non-responsive test session before deciding it has timed out.
|
int |
getTotalUsed()
Returns the total number of test slots used on this node.
|
boolean |
hasCapability(Map<String,Object> requestedCapability)
Checks if the node has the capability requested.
|
int |
hashCode() |
boolean |
isBusy()
Indicates whether the node has any test slots in use.
|
void |
setupTimeoutListener()
If the RemoteProxy implementation also implements TimeoutListener, then this method
will start up the thread used to monitor timeouts and handle cleanup of timed out resources.
|
void |
teardown()
If the RemoteProxy implementation also implements TimeoutListener, then this method
will stop the thread used to monitor timeouts.
|
String |
toString() |
protected volatile URL remoteHost
public BaseRemoteProxy(RegistrationRequest request, Registry registry)
If maxSession is not specified, default to 1 = max number of tests running at a given time will be 1.
For each capability, maxInstances is defaulted to 1 if not specified = max number of test of each capability running at a time will be 1. maxInstances for firefox can be > 1. IE won't support it.
request - The requestregistry - The registry to usepublic List<TestSlot> getTestSlots()
RemoteProxygetTestSlots in interface RemoteProxypublic Registry getRegistry()
RemoteProxygetRegistry in interface RemoteProxypublic CapabilityMatcher getCapabilityHelper()
RemoteProxygetCapabilityHelper in interface RemoteProxypublic void setupTimeoutListener()
RemoteProxysetupTimeoutListener in interface RemoteProxypublic String getId()
RemoteProxygetId in interface RemoteProxypublic void teardown()
RemoteProxyteardown in interface RemoteProxypublic void forceSlotCleanerRun()
public Map<String,Object> getConfig()
RemoteProxygetConfig in interface RemoteProxypublic RegistrationRequest getOriginalRegistrationRequest()
RemoteProxygetOriginalRegistrationRequest in interface RemoteProxypublic int getMaxNumberOfConcurrentTestSessions()
RemoteProxygetMaxNumberOfConcurrentTestSessions in interface RemoteProxypublic URL getRemoteHost()
RemoteProxygetRemoteHost in interface RemoteProxypublic TestSession getNewSession(Map<String,Object> requestedCapability)
RemoteProxygetNewSession in interface RemoteProxyrequestedCapability - the type of test the client is interested in performing.null otherwisepublic int getTotalUsed()
RemoteProxygetTotalUsed in interface RemoteProxypublic boolean hasCapability(Map<String,Object> requestedCapability)
RemoteProxyCapabilityMatcher.matches(Map, Map)
hasCapability = true doesn't mean the test cast start just now, only that the proxy will be
able to run a test requiring that capability at some point.hasCapability in interface RemoteProxyrequestedCapability - the type of test the client is interested in performing.true if presentpublic boolean isBusy()
RemoteProxyisBusy in interface RemoteProxytrue if the node has any test slots in use.public static <T extends RemoteProxy> T getNewInstance(RegistrationRequest request, Registry registry)
T - RemoteProxy subclassrequest - The requestregistry - The registry to usepublic int compareTo(RemoteProxy o)
compareTo in interface Comparable<RemoteProxy>public HtmlRenderer getHtmlRender()
RemoteProxygetHtmlRender in interface RemoteProxypublic int getTimeOut()
RemoteProxygetTimeOut in interface RemoteProxypublic org.openqa.selenium.remote.internal.HttpClientFactory getHttpClientFactory()
RemoteProxygetHttpClientFactory in interface RemoteProxypublic com.google.gson.JsonObject getStatus()
throws GridException
RemoteProxygetStatus in interface RemoteProxyGridException - If the node if down or doesn't recognize the /wd/hub/status request.public float getResourceUsageInPercent()
RemoteProxygetResourceUsageInPercent in interface RemoteProxyCopyright © 2015. All rights reserved.