-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ludovic Orban <[email protected]>
- Loading branch information
Showing
2 changed files
with
126 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
114 changes: 114 additions & 0 deletions
114
...core/jetty-server/src/test/java/org/eclipse/jetty/server/LatencyRecordingHandlerTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
// | ||
// ======================================================================== | ||
// Copyright (c) 1995-2022 Mort Bay Consulting Pty Ltd and others. | ||
// | ||
// This program and the accompanying materials are made available under the | ||
// terms of the Eclipse Public License v. 2.0 which is available at | ||
// https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0 | ||
// which is available at https://www.apache.org/licenses/LICENSE-2.0. | ||
// | ||
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 | ||
// ======================================================================== | ||
// | ||
|
||
package org.eclipse.jetty.server; | ||
|
||
import java.util.List; | ||
import java.util.concurrent.CopyOnWriteArrayList; | ||
import java.util.concurrent.TimeUnit; | ||
|
||
import org.awaitility.Awaitility; | ||
import org.eclipse.jetty.logging.JettyLevel; | ||
import org.eclipse.jetty.logging.JettyLogger; | ||
import org.eclipse.jetty.server.handler.AbstractLatencyRecordingHandler; | ||
import org.eclipse.jetty.server.handler.ContextHandler; | ||
import org.eclipse.jetty.util.Callback; | ||
import org.junit.jupiter.api.AfterEach; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Test; | ||
import org.slf4j.LoggerFactory; | ||
|
||
import static org.hamcrest.MatcherAssert.assertThat; | ||
import static org.hamcrest.Matchers.containsString; | ||
import static org.hamcrest.Matchers.is; | ||
|
||
public class LatencyRecordingHandlerTest | ||
{ | ||
private JettyLevel _oldLevel; | ||
private Server _server; | ||
private LocalConnector _local; | ||
private final List<Long> _latencies = new CopyOnWriteArrayList<>(); | ||
|
||
@BeforeEach | ||
public void setUp() throws Exception | ||
{ | ||
_server = new Server(); | ||
_local = new LocalConnector(_server, new HttpConnectionFactory()); | ||
_server.addConnector(_local); | ||
|
||
Handler handler = new Handler.Abstract() | ||
{ | ||
@Override | ||
public boolean process(Request request, Response response, Callback callback) | ||
{ | ||
String path = request.getHttpURI().getPath(); | ||
if (path.endsWith("/fail")) | ||
callback.failed(new Exception()); | ||
else | ||
callback.succeeded(); | ||
return true; | ||
} | ||
}; | ||
AbstractLatencyRecordingHandler latencyRecordingHandler = new AbstractLatencyRecordingHandler() { | ||
@Override | ||
protected void onRequestComplete(long durationInNs) | ||
{ | ||
_latencies.add(durationInNs); | ||
} | ||
}; | ||
latencyRecordingHandler.setHandler(handler); | ||
|
||
ContextHandler contextHandler = new ContextHandler("/ctx"); | ||
contextHandler.setHandler(latencyRecordingHandler); | ||
|
||
_server.setHandler(contextHandler); | ||
_server.start(); | ||
|
||
// Disable WARN logs of failed requests. | ||
JettyLogger logger = (JettyLogger)LoggerFactory.getLogger(Response.class); | ||
_oldLevel = logger.getLevel(); | ||
logger.setLevel(JettyLevel.OFF); | ||
} | ||
|
||
@AfterEach | ||
public void tearDown() throws Exception | ||
{ | ||
_server.stop(); | ||
_latencies.clear(); | ||
|
||
JettyLogger logger = (JettyLogger)LoggerFactory.getLogger(Response.class); | ||
logger.setLevel(_oldLevel); | ||
} | ||
|
||
@Test | ||
public void testLatenciesRecodingUponSuccess() throws Exception | ||
{ | ||
for (int i = 0; i < 100; i++) | ||
{ | ||
String response = _local.getResponse("GET /ctx/succeed HTTP/1.1\r\nHost: localhost\r\n\r\n"); | ||
assertThat(response, containsString(" 200 OK")); | ||
} | ||
Awaitility.await().atMost(5, TimeUnit.SECONDS).until(_latencies::size, is(100)); | ||
} | ||
|
||
@Test | ||
public void testLatenciesRecodingUponFailure() throws Exception | ||
{ | ||
for (int i = 0; i < 100; i++) | ||
{ | ||
String response = _local.getResponse("GET /ctx/fail HTTP/1.1\r\nHost: localhost\r\n\r\n"); | ||
assertThat(response, containsString(" 500 Server Error")); | ||
} | ||
Awaitility.await().atMost(5, TimeUnit.SECONDS).until(_latencies::size, is(100)); | ||
} | ||
} |