How to use listener method of org.openqa.selenium.grid.data.NodeDrainComplete class

Best Selenium code snippet using org.openqa.selenium.grid.data.NodeDrainComplete.listener

Source:LocalNode.java Github

copy

Full Screen

...159 .build();160 this.regularly = new Regularly("Local Node: " + externalUri);161 regularly.submit(currentSessions::cleanUp, Duration.ofSeconds(30), Duration.ofSeconds(30));162 regularly.submit(tempFileSystems::cleanUp, Duration.ofSeconds(30), Duration.ofSeconds(30));163 bus.addListener(NodeAddedEvent.listener(nodeId -> {164 if (getId().equals(nodeId)) {165 // Lets avoid to create more than one "Regularly" when the Node registers again.166 if (!heartBeatStarted.getAndSet(true)) {167 regularly.submit(168 () -> bus.fire(new NodeHeartBeatEvent(getStatus())), heartbeatPeriod, heartbeatPeriod);169 }170 }171 }));172 bus.addListener(SessionClosedEvent.listener(id -> {173 try {174 this.stop(id);175 } catch (NoSuchSessionException ignore) {176 }177 if (this.isDraining()) {178 int done = pendingSessions.decrementAndGet();179 if (done <= 0) {180 LOG.info("Firing node drain complete message");181 bus.fire(new NodeDrainComplete(this.getId()));182 }183 }184 }));185 new JMXHelper().register(this);186 }...

Full Screen

Full Screen

Source:GridModel.java Github

copy

Full Screen

...53 private final EventBus events;54 public GridModel(EventBus events, Secret registrationSecret) {55 this.events = Require.nonNull("Event bus", events);56 Require.nonNull("Registration secret", registrationSecret);57 events.addListener(NodeDrainStarted.listener(nodeId -> setAvailability(nodeId, DRAINING)));58 events.addListener(NodeDrainComplete.listener(this::remove));59 events.addListener(NodeRemovedEvent.listener(this::remove));60 events.addListener(NodeStatusEvent.listener(status -> refresh(status)));61 events.addListener(SessionClosedEvent.listener(this::release));62 }63 public GridModel add(NodeStatus node) {64 Require.nonNull("Node", node);65 Lock writeLock = lock.writeLock();66 writeLock.lock();67 try {68 // If we've already added the node, remove it.69 for (Set<NodeStatus> nodes : nodes.values()) {70 Iterator<NodeStatus> iterator = nodes.iterator();71 while (iterator.hasNext()) {72 NodeStatus next = iterator.next();73 // If the ID is the same, we're re-adding a node. If the URI is the same a node probably restarted74 if (next.getId().equals(node.getId()) || next.getUri().equals(node.getUri())) {75 LOG.info(String.format("Re-adding node with id %s and URI %s.", node.getId(), node.getUri()));...

Full Screen

Full Screen

Source:LocalDistributor.java Github

copy

Full Screen

...91 this.sessions = Require.nonNull("Session map", sessions);92 this.model = new GridModel(bus, registrationSecret);93 this.nodes = new HashMap<>();94 this.registrationSecret = Require.nonNull("Registration secret", registrationSecret);95 bus.addListener(NodeStatusEvent.listener(this::register));96 bus.addListener(NodeStatusEvent.listener(model::refresh));97 bus.addListener(NodeDrainComplete.listener(this::remove));98 }99 public static Distributor create(Config config) {100 Tracer tracer = new LoggingOptions(config).getTracer();101 EventBus bus = new EventBusOptions(config).getEventBus();102 HttpClient.Factory clientFactory = new NetworkOptions(config).getHttpClientFactory(tracer);103 SessionMap sessions = new SessionMapOptions(config).getSessionMap();104 BaseServerOptions serverOptions = new BaseServerOptions(config);105 return new LocalDistributor(tracer, bus, clientFactory, sessions, serverOptions.getRegistrationSecret());106 }107 @Override108 public boolean isReady() {109 try {110 return ImmutableSet.of(bus, sessions).parallelStream()111 .map(HasReadyState::isReady)...

Full Screen

Full Screen

Source:NodeServer.java Github

copy

Full Screen

...106 .setStatus(HTTP_INTERNAL_ERROR)107 .setHeader("Content-Type", MediaType.PLAIN_TEXT_UTF_8.toString())108 .setContent(Contents.utf8String("No capacity available"));109 };110 bus.addListener(NodeAddedEvent.listener(nodeId -> {111 if (node.getId().equals(nodeId)) {112 LOG.info("Node has been added");113 }114 }));115 bus.addListener(NodeDrainComplete.listener(nodeId -> {116 if (!node.getId().equals(nodeId)) {117 return;118 }119 // Wait a beat before shutting down so the final response from the120 // node can escape.121 new Thread(122 () -> {123 try {124 Thread.sleep(1000);125 } catch (InterruptedException e) {126 // Swallow, the next thing we're doing is shutting down127 }128 LOG.info("Shutting down");129 System.exit(0);...

Full Screen

Full Screen

Source:NodeDrainComplete.java Github

copy

Full Screen

...24 private static final EventName NODE_DRAIN_COMPLETE = new EventName("node-drain-complete");25 public NodeDrainComplete(NodeId id) {26 super(NODE_DRAIN_COMPLETE, id);27 }28 public static EventListener<NodeId> listener(Consumer<NodeId> handler) {29 Require.nonNull("Handler", handler);30 return new EventListener<>(NODE_DRAIN_COMPLETE, NodeId.class, handler);31 }32}...

Full Screen

Full Screen

listener

Using AI Code Generation

copy

Full Screen

1import org.openqa.selenium.grid.data.NodeDrainComplete;2import org.openqa.selenium.grid.data.NodeDrainStarted;3import org.openqa.selenium.grid.distributor.local.LocalDistributor;4import org.openqa.selenium.grid.node.local.LocalNode;5import org.openqa.selenium.grid.server.BaseServerOptions;6import org.openqa.selenium.grid.web.Routable;7import org.openqa.selenium.grid.web.Routes;8import org.openqa.selenium.net.PortProber;9import org.openqa.selenium.remote.http.HttpClient;10import org.openqa.selenium.remote.http.HttpMethod;11import org.openqa.selenium.remote.http.HttpRequest;12import org.openqa.selenium.remote.http.HttpResponse;13import org.openqa.selenium.remote.tracing.DefaultTestTracer;14import org.openqa.selenium.remote.tracing.Tracer;15import java.net.URI;16import java.util.concurrent.CompletableFuture;17import java.util.concurrent.TimeUnit;18import java.util.function.Consumer;19public class NodeDrainCompleteListener {20 public static void main(String[] args) throws Exception {21 Tracer tracer = DefaultTestTracer.createTracer();22 HttpClient.Factory clientFactory = HttpClient.Factory.createDefault();23 BaseServerOptions serverOptions = new BaseServerOptions();24 LocalDistributor distributor = new LocalDistributor(tracer, clientFactory, serverOptions);25 LocalNode.Builder nodeBuilder = LocalNode.builder(tracer, clientFactory, serverOptions);26 nodeBuilder.add(new Routable() {27 public void addRoutes(Routes routes) {28 routes.add(HttpMethod.GET, "/wd/hub/status", (req, res) -> res.setContent("OK"));29 }30 });31 LocalNode node = nodeBuilder.build();32 node.start();33 CompletableFuture<NodeDrainComplete> drainComplete = new CompletableFuture<>();34 node.addListener(NodeDrainStarted.class, (Consumer<NodeDrainStarted>) event -> {35 System.out.println("Node drain started");36 });37 node.addListener(NodeDrainComplete.class, (Consumer<NodeDrainComplete>) event -> {38 System.out.println("Node drain complete");39 drainComplete.complete(event);40 });41 distributor.add(node);42 HttpRequest request = new HttpRequest(HttpMethod.GET, "/wd/hub/status");43 System.out.println(response.getContentString());44 distributor.drain(node.getId());45 drainComplete.get(10, TimeUnit.SECONDS);46 node.stop();47 }48}

Full Screen

Full Screen

listener

Using AI Code Generation

copy

Full Screen

1NodeDrainCompleteListener listener = new NodeDrainCompleteListener() {2 public void nodeDrained(NodeDrainComplete event) {3 System.out.println("Node drained: " + event.getNodeId());4 }5};6node.addListener(listener);7node.removeListener(listener);8NodeStatus nodeStatus = node.getStatus();9NodeState state = nodeStatus.getState();10Set<Capability> capabilities = nodeStatus.getCapabilities();11NodeId nodeId = nodeStatus.getNodeId();12URI nodeUri = nodeStatus.getUri();13SessionId sessionId = nodeStatus.getSessionId();14URI sessionUri = nodeStatus.getSessionUri();15NodeHealth nodeHealth = nodeStatus.getHealth();16List<HealthCheck.Result> healthCheckResults = nodeHealth.getResults();17Optional<HealthCheck.Result> healthCheckResult = nodeHealth.getResult(HealthCheck.class);18Optional<HealthCheck.Result> healthCheckResult = nodeHealth.getResult(HealthCheck.class, "name");19Optional<HealthCheck.Result> healthCheckResult = nodeHealth.getResult(HealthCheck.class, "name", "version");20Optional<HealthCheck.Result> healthCheckResult = nodeHealth.getResult("name");21Optional<HealthCheck.Result> healthCheckResult = nodeHealth.getResult("name", "version");22Optional<HealthCheck.Result> healthCheckResult = nodeHealth.getResult("name", "version", "type");23Optional<HealthCheck.Result> healthCheckResult = nodeHealth.getResult("name", "version", "type", "subtype");24List<HealthCheck.Result> healthCheckResults = nodeHealth.getResults(HealthCheck.class);

Full Screen

Full Screen

listener

Using AI Code Generation

copy

Full Screen

1 public class Listener implements NodeDrainComplete.Listener {2 public void nodeDrainComplete(NodeId nodeId) {3 System.out.println("Node " + nodeId + " has been drained.");4 }5 }6 public static void main(String[] args) {7 SessionId sessionId = new SessionId(UUID.randomUUID());8 NodeId nodeId = new NodeId(UUID.randomUUID());9 NodeDrainComplete event = new NodeDrainComplete(sessionId, nodeId);10 Listener listener = new Listener();11 event.addListener(listener);12 event.fire();13 }14}

Full Screen

Full Screen

listener

Using AI Code Generation

copy

Full Screen

1import org.openqa.selenium.grid.data.NodeDrainComplete;2import org.openqa.selenium.grid.data.NodeDrainComplete.Listener;3import org.openqa.selenium.grid.node.local.LocalNode;4import org.openqa.selenium.grid.node.local.NodeOptions;5import org.openqa.selenium.grid.server.BaseServerOptions;6import org.openqa.selenium.grid.server.Server;7import org.openqa.selenium.net.PortProber;8import org.openqa.selenium.remote.http.HttpClient;9import org.openqa.selenium.remote.http.HttpClient.Factory;10import org.openqa.selenium.remote.http.HttpRequest;11import org.openqa.selenium.remote.http.HttpResponse;12import org.openqa.selenium.remote.tracing.DefaultTestTracer;13import org.openqa.selenium.remote.tracing.Tracer;14import java.net.URI;15import java.time.Duration;16import java.util.UUID;17import java.util.concurrent.CompletableFuture;18import java.util.concurrent.CountDownLatch;19import java.util.concurrent.TimeUnit;20import java.util.concurrent.atomic.AtomicBoolean;21import java.util.concurrent.atomic.AtomicReference;22import static org.openqa.selenium.grid.config.StandardGridRoles.NODE_ROLE;23import static org.openqa.selenium.grid.config.StandardGridRoles.getRole;24public class NodeDrainCompleteExample {25 private static final Tracer tracer = DefaultTestTracer.createTracer();26 public static void main(String[] args) throws Exception {27 NodeOptions nodeOptions = new NodeOptions();28 LocalNode node = new LocalNode(tracer, nodeOptions);29 BaseServerOptions serverOptions = new BaseServerOptions();30 serverOptions.port = PortProber.findFreePort();31 Server<?> server = new Server<>(serverOptions, getRole(NODE_ROLE).configure(nodeOptions));32 server.start();33 Factory clientFactory = HttpClient.Factory.createDefault();34 HttpRequest request = new HttpRequest("POST", server.getUrl().toURI().resolve("/se/grid/node"));35 request.setContent(node.getId().toString());36 HttpResponse response = clientFactory.createClient(server.getUrl()).execute(request);37 if (response.getStatus() != 200) {38 throw new RuntimeException("Unable to register node with server: " + response.getStatus());39 }40 Listener listener = new Listener() {41 public void nodeDrained(UUID id) {

Full Screen

Full Screen

listener

Using AI Code Generation

copy

Full Screen

1import org.openqa.selenium.grid.data.NodeDrainComplete;2import org.openqa.selenium.grid.data.NodeDrainComplete.NodeDrainCompleteListener;3public class NodeDrainCompleteExample {4 public static void main(String[] args) {5 NodeDrainCompleteListener listener = NodeDrainCompleteExample::listenerMethod;6 NodeDrainComplete.addListener(listener);7 }8 public static void listenerMethod(String nodeId) {9 System.out.println("Node with id: " + nodeId + " is drained");10 }11}12import org.openqa.selenium.grid.data.NodeDrainComplete;13import org.openqa.selenium.grid.data.NodeDrainComplete.NodeDrainCompleteListener;14public class NodeDrainCompleteExample {15 public static void main(String[] args) {16 NodeDrainCompleteListener listener = new NodeDrainCompleteListener() {17 public void nodeDrainComplete(String nodeId) {18 System.out.println("Node with id: " + nodeId + " is drained");19 }20 };21 NodeDrainComplete.addListener(listener);22 }23}

Full Screen

Full Screen

Selenium 4 Tutorial:

LambdaTest’s Selenium 4 tutorial is covering every aspects of Selenium 4 testing with examples and best practices. Here you will learn basics, such as how to upgrade from Selenium 3 to Selenium 4, to some advanced concepts, such as Relative locators and Selenium Grid 4 for Distributed testing. Also will learn new features of Selenium 4, such as capturing screenshots of specific elements, opening a new tab or window on the browser, and new protocol adoptions.

Chapters:

  1. Upgrading From Selenium 3 To Selenium 4?: In this chapter, learn in detail how to update Selenium 3 to Selenium 4 for Java binding. Also, learn how to upgrade while using different build tools such as Maven or Gradle and get comprehensive guidance for upgrading Selenium.

  2. What’s New In Selenium 4 & What’s Being Deprecated? : Get all information about new implementations in Selenium 4, such as W3S protocol adaption, Optimized Selenium Grid, and Enhanced Selenium IDE. Also, learn what is deprecated for Selenium 4, such as DesiredCapabilites and FindsBy methods, etc.

  3. Selenium 4 With Python: Selenium supports all major languages, such as Python, C#, Ruby, and JavaScript. In this chapter, learn how to install Selenium 4 for Python and the features of Python in Selenium 4, such as Relative locators, Browser manipulation, and Chrom DevTool protocol.

  4. Selenium 4 Is Now W3C Compliant: JSON Wireframe protocol is retiring from Selenium 4, and they are adopting W3C protocol to learn in detail about the advantages and impact of these changes.

  5. How To Use Selenium 4 Relative Locator? : Selenium 4 came with new features such as Relative Locators that allow constructing locators with reference and easily located constructors nearby. Get to know its different use cases with examples.

  6. Selenium Grid 4 Tutorial For Distributed Testing: Selenium Grid 4 allows you to perform tests over different browsers, OS, and device combinations. It also enables parallel execution browser testing, reads up on various features of Selenium Grid 4 and how to download it, and runs a test on Selenium Grid 4 with best practices.

  7. Selenium Video Tutorials: Binge on video tutorials on Selenium by industry experts to get step-by-step direction from automating basic to complex test scenarios with Selenium.

Selenium 101 certifications:

LambdaTest also provides certification for Selenium testing to accelerate your career in Selenium automation testing.

Run Selenium automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Most used method in NodeDrainComplete

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful