How to use EnsureSpecCompliantHeaders class of org.openqa.selenium.grid.web package

Best Selenium code snippet using org.openqa.selenium.grid.web.EnsureSpecCompliantHeaders

Source:NewSessionCreationTest.java Github

copy

Full Screen

...42import org.openqa.selenium.grid.sessionqueue.local.LocalNewSessionQueue;43import org.openqa.selenium.grid.sessionqueue.local.LocalNewSessionQueuer;44import org.openqa.selenium.grid.testing.TestSessionFactory;45import org.openqa.selenium.grid.web.CombinedHandler;46import org.openqa.selenium.grid.web.EnsureSpecCompliantHeaders;47import org.openqa.selenium.netty.server.NettyServer;48import org.openqa.selenium.remote.http.Contents;49import org.openqa.selenium.remote.http.HttpClient;50import org.openqa.selenium.remote.http.HttpRequest;51import org.openqa.selenium.remote.http.HttpResponse;52import org.openqa.selenium.remote.http.Routable;53import org.openqa.selenium.remote.tracing.DefaultTestTracer;54import org.openqa.selenium.remote.tracing.Tracer;55import org.openqa.selenium.testing.drivers.Browser;56import java.net.URI;57import java.net.URISyntaxException;58import java.time.Duration;59import java.time.Instant;60import java.util.concurrent.atomic.AtomicInteger;61import static java.net.HttpURLConnection.HTTP_INTERNAL_ERROR;62import static org.assertj.core.api.Assertions.assertThat;63import static org.openqa.selenium.json.Json.JSON_UTF_8;64import static org.openqa.selenium.remote.http.Contents.asJson;65import static org.openqa.selenium.remote.http.HttpMethod.POST;66public class NewSessionCreationTest {67 private Tracer tracer;68 private EventBus events;69 private HttpClient.Factory clientFactory;70 private Secret registrationSecret;71 private Server<?> server;72 @Before73 public void setup() {74 tracer = DefaultTestTracer.createTracer();75 events = new GuavaEventBus();76 clientFactory = HttpClient.Factory.createDefault();77 registrationSecret = new Secret("hereford hop");78 }79 @After80 public void stopServer() {81 server.stop();82 }83 @Test84 public void ensureJsCannotCreateANewSession() throws URISyntaxException {85 SessionMap sessions = new LocalSessionMap(tracer, events);86 LocalNewSessionQueue localNewSessionQueue = new LocalNewSessionQueue(87 tracer,88 events,89 Duration.ofSeconds(2),90 Duration.ofSeconds(2));91 NewSessionQueuer queuer = new LocalNewSessionQueuer(92 tracer,93 events,94 localNewSessionQueue,95 registrationSecret);96 Distributor distributor = new LocalDistributor(97 tracer,98 events,99 clientFactory,100 sessions,101 queuer,102 registrationSecret,103 Duration.ofMinutes(5));104 Routable router = new Router(tracer, clientFactory, sessions, queuer, distributor)105 .with(new EnsureSpecCompliantHeaders(ImmutableList.of(), ImmutableSet.of()));106 server = new NettyServer(107 new BaseServerOptions(new MapConfig(ImmutableMap.of())),108 router,109 new ProxyCdpIntoGrid(clientFactory, sessions))110 .start();111 URI uri = server.getUrl().toURI();112 Node node = LocalNode.builder(113 tracer,114 events,115 uri,116 uri,117 registrationSecret)118 .add(119 Browser.detect().getCapabilities(),...

Full Screen

Full Screen

Source:EnsureSpecCompliantHeadersTest.java Github

copy

Full Screen

...26import static java.net.HttpURLConnection.HTTP_OK;27import static org.assertj.core.api.Assertions.assertThat;28import static org.openqa.selenium.json.Json.JSON_UTF_8;29import static org.openqa.selenium.remote.http.HttpMethod.POST;30public class EnsureSpecCompliantHeadersTest {31 private final HttpHandler alwaysOk = req -> new HttpResponse()32 .setContent(Contents.utf8String("Cheese"));33 @Test34 public void shouldBlockRequestsWithNoContentType() {35 HttpResponse res = new EnsureSpecCompliantHeaders(ImmutableList.of(), ImmutableSet.of())36 .apply(alwaysOk)37 .execute(new HttpRequest(POST, "/session"));38 assertThat(res.getStatus()).isEqualTo(HTTP_INTERNAL_ERROR);39 }40 @Test41 public void shouldAllowRequestsWithNoContentTypeWhenSkipCheckOnMatches() {42 HttpResponse res = new EnsureSpecCompliantHeaders(ImmutableList.of(), ImmutableSet.of("/gouda"))43 .apply(alwaysOk)44 .execute(new HttpRequest(POST, "/gouda"));45 assertThat(res.getStatus()).isEqualTo(HTTP_OK);46 }47 @Test48 public void requestsWithAnOriginHeaderShouldBeBlocked() {49 HttpResponse res = new EnsureSpecCompliantHeaders(ImmutableList.of(), ImmutableSet.of())50 .apply(alwaysOk)51 .execute(52 new HttpRequest(POST, "/session")53 .addHeader("Content-Type", JSON_UTF_8)54 .addHeader("Origin", "example.com"));55 assertThat(res.getStatus()).isEqualTo(HTTP_INTERNAL_ERROR);56 }57 @Test58 public void requestsWithAnAllowedOriginHeaderShouldBeAllowed() {59 HttpResponse res = new EnsureSpecCompliantHeaders(ImmutableList.of("example.com"), ImmutableSet.of())60 .apply(alwaysOk)61 .execute(62 new HttpRequest(POST, "/session")63 .addHeader("Content-Type", JSON_UTF_8)64 .addHeader("Origin", "example.com"));65 assertThat(res.getStatus()).isEqualTo(HTTP_OK);66 assertThat(Contents.string(res)).isEqualTo("Cheese");67 }68 @Test69 public void shouldAllowRequestsWithNoOriginHeader() {70 HttpResponse res = new EnsureSpecCompliantHeaders(ImmutableList.of(), ImmutableSet.of())71 .apply(alwaysOk)72 .execute(73 new HttpRequest(POST, "/session")74 .addHeader("Content-Type", JSON_UTF_8));75 assertThat(res.getStatus()).isEqualTo(HTTP_OK);76 assertThat(Contents.string(res)).isEqualTo("Cheese");77 }78}...

Full Screen

Full Screen

Source:EnsureSpecCompliantHeaders.java Github

copy

Full Screen

...19import org.openqa.selenium.remote.http.Filter;20import org.openqa.selenium.remote.http.HttpHandler;21import java.util.Collection;22import java.util.Set;23public class EnsureSpecCompliantHeaders implements Filter {24 private final Filter filter;25 public EnsureSpecCompliantHeaders(Collection<String> allowedOriginHosts, Set<String> skipChecksOn) {26 Require.nonNull("Allowed origins list", allowedOriginHosts);27 Require.nonNull("URLs to skip checks on", skipChecksOn);28 filter = new CheckOriginHeader(allowedOriginHosts, skipChecksOn)29 .andThen(new CheckContentTypeHeader(skipChecksOn))30 .andThen(new EnsureSpecCompliantResponseHeaders());31 }32 @Override33 public HttpHandler apply(HttpHandler httpHandler) {34 Require.nonNull("Next handler", httpHandler);35 return filter.apply(httpHandler);36 }37}...

Full Screen

Full Screen

EnsureSpecCompliantHeaders

Using AI Code Generation

copy

Full Screen

1package org.openqa.selenium.grid.web;2import org.openqa.selenium.grid.config.Config;3import org.openqa.selenium.grid.config.ConfigException;4import org.openqa.selenium.grid.config.MemoizedConfig;5import org.openqa.selenium.grid.config.TomlConfig;6import org.openqa.selenium.grid.web.EnsureSpecCompliantHeaders;7import org.openqa.selenium.net.PortProber;8import org.openqa.selenium.remote.http.HttpClient;9import org.openqa.selenium.remote.http.HttpMethod;10import org.openqa.selenium.remote.http.HttpRequest;11import org.openqa.selenium.remote.http.HttpResponse;12import org.openqa.selenium.remote.http.Route;13import org.openqa.selenium.remote.http.WebServer;14import org.openqa.selenium.remote.http.apache.ApacheHttpClient;15import org.testng.annotations.Test;16import java.io.IOException;17import java.net.MalformedURLException;18import java.net.URL;19import java.nio.file.Paths;20import java.util.Arrays;21import java.util.Objects;22import java.util.UUID;23import java.util.concurrent.TimeUnit;24import static org.assertj.core.api.Assertions.assertThat;25import static org.openqa.selenium.remote.http.Contents.asJson;26import static org.openqa.selenium.remote.http.Contents.utf8String;27import static org.openqa.selenium.remote.http.Route.combine;28import static org.openqa.selenium.remote.http.Route.get;29public class EnsureSpecCompliantHeadersTest {30 private static final String SESSION_ID = UUID.randomUUID().toString();31 public void shouldAddSpecCompliantHeaders() throws ConfigException, MalformedURLException {32 Config config = new TomlConfig(Paths.get("src/test/resources/config.toml").toAbsolutePath());33 config = new MemoizedConfig(config);34 WebServer server = new WebServer(35 new EnsureSpecCompliantHeaders(36 combine(37 get("/status").to(() -> req -> new HttpResponse().setContent(asJson("OK"))),38 get("/session/{sessionId}").to(() -> req -> new HttpResponse().setContent(asJson(SESSION_ID))))),39 config);40 HttpClient.Factory factory = new ApacheHttpClient.Factory();41 HttpClient client = factory.createClient(server.getUrl());42 HttpResponse response = client.execute(new HttpRequest(HttpMethod.GET, "/status"));43 assertThat(response.getHeader("Content-Type")).isEqualTo("application/json; charset=utf-8");44 assertThat(response.getHeader("Cache-Control")).isEqualTo("no-cache, no-store, must-revalidate");45 assertThat(response.getHeader("Pragma")).isEqualTo("no-cache");46 assertThat(response.getHeader("Expires")).isEqualTo("0");47 response = client.execute(new HttpRequest(HttpMethod.GET,

Full Screen

Full Screen

EnsureSpecCompliantHeaders

Using AI Code Generation

copy

Full Screen

1import org.openqa.selenium.grid.web.EnsureSpecCompliantHeaders;2import org.openqa.selenium.grid.web.HttpHandler;3import org.openqa.selenium.grid.web.Route;4import org.openqa.selenium.grid.web.RouteMatcher;5import org.openqa.selenium.grid.web.RoutingHandler;6import org.openqa.selenium.grid.web.UrlTemplate;7import org.openqa.selenium.grid.web.WebServer;8import org.openqa.selenium.grid.web.WebServerFlags;9import org.openqa.selenium.grid.web.WebServerOptions;10import org.openqa.selenium.remote.http.HttpMethod;11import org.openqa.selenium.remote.http.HttpRequest;12import org.openqa.selenium.remote.http.HttpResponse;13import java.io.IOException;14import java.util.concurrent.CompletableFuture;15import java.util.concurrent.ExecutionException;16import java.util.logging.Logger;

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 methods in EnsureSpecCompliantHeaders

Test Your Web Or Mobile Apps On 3000+ Browsers

Signup for free

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful