-
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.
Merge pull request #11874 from jetty/jetty-12.0.x-11873-ServerResources
Issue #11873 - Server resources are not found if the server is subclassed in a different package
- Loading branch information
Showing
2 changed files
with
66 additions
and
2 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
64 changes: 64 additions & 0 deletions
64
...-server/src/test/java/org/eclipse/jetty/server/subpackage/ServerDefaultResourcesTest.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,64 @@ | ||
// | ||
// ======================================================================== | ||
// Copyright (c) 1995 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.subpackage; | ||
|
||
import java.util.stream.Stream; | ||
|
||
import org.eclipse.jetty.server.Server; | ||
import org.junit.jupiter.params.ParameterizedTest; | ||
import org.junit.jupiter.params.provider.Arguments; | ||
import org.junit.jupiter.params.provider.MethodSource; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertNotNull; | ||
|
||
public class ServerDefaultResourcesTest | ||
{ | ||
public static Stream<Arguments> arguments() | ||
{ | ||
return Stream.of( | ||
new Server(), | ||
new Server(){} | ||
).map(Arguments::of); | ||
} | ||
|
||
@ParameterizedTest | ||
@MethodSource("arguments") | ||
public void testDefaultStyleSheet(Server server) throws Exception | ||
{ | ||
try | ||
{ | ||
server.start(); | ||
assertNotNull(server.getDefaultStyleSheet()); | ||
} | ||
finally | ||
{ | ||
server.stop(); | ||
} | ||
} | ||
|
||
@ParameterizedTest | ||
@MethodSource("arguments") | ||
public void testDefaultFavicon(Server server) throws Exception | ||
{ | ||
try | ||
{ | ||
server.start(); | ||
assertNotNull(server.getDefaultFavicon()); | ||
} | ||
finally | ||
{ | ||
server.stop(); | ||
} | ||
} | ||
} |