-
Notifications
You must be signed in to change notification settings - Fork 720
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[JENKINS-73131] Adapt Configuration as Code for Jetty 12 (EE 8) (#2494)
- Loading branch information
Showing
6 changed files
with
963 additions
and
60 deletions.
There are no files selected for viewing
376 changes: 376 additions & 0 deletions
376
plugin/src/test/java/io/jenkins/plugins/casc/MockHttpServletRequest.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,376 @@ | ||
package io.jenkins.plugins.casc; | ||
|
||
import java.io.BufferedReader; | ||
import java.security.Principal; | ||
import java.util.Collection; | ||
import java.util.Enumeration; | ||
import java.util.Locale; | ||
import java.util.Map; | ||
import java.util.Objects; | ||
import javax.servlet.AsyncContext; | ||
import javax.servlet.DispatcherType; | ||
import javax.servlet.RequestDispatcher; | ||
import javax.servlet.ServletContext; | ||
import javax.servlet.ServletInputStream; | ||
import javax.servlet.ServletRequest; | ||
import javax.servlet.ServletResponse; | ||
import javax.servlet.http.Cookie; | ||
import javax.servlet.http.HttpServletRequest; | ||
import javax.servlet.http.HttpServletResponse; | ||
import javax.servlet.http.HttpSession; | ||
import javax.servlet.http.HttpUpgradeHandler; | ||
import javax.servlet.http.Part; | ||
|
||
public class MockHttpServletRequest implements HttpServletRequest { | ||
|
||
private final String pathInfo; | ||
|
||
public MockHttpServletRequest(String pathInfo) { | ||
this.pathInfo = Objects.requireNonNull(pathInfo); | ||
} | ||
|
||
@Override | ||
public String getAuthType() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public Cookie[] getCookies() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public long getDateHeader(String name) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public String getHeader(String name) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public Enumeration<String> getHeaders(String name) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public Enumeration<String> getHeaderNames() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public int getIntHeader(String name) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public String getMethod() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public String getPathInfo() { | ||
return pathInfo; | ||
} | ||
|
||
@Override | ||
public String getPathTranslated() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public String getContextPath() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public String getQueryString() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public String getRemoteUser() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public boolean isUserInRole(String role) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public Principal getUserPrincipal() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public String getRequestedSessionId() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public String getRequestURI() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public StringBuffer getRequestURL() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public String getServletPath() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public HttpSession getSession(boolean create) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public HttpSession getSession() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public String changeSessionId() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public boolean isRequestedSessionIdValid() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public boolean isRequestedSessionIdFromCookie() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public boolean isRequestedSessionIdFromURL() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public boolean isRequestedSessionIdFromUrl() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public boolean authenticate(HttpServletResponse response) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public void login(String username, String password) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public void logout() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public Collection<Part> getParts() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public Part getPart(String name) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public <T extends HttpUpgradeHandler> T upgrade(Class<T> handlerClass) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public Object getAttribute(String name) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public Enumeration<String> getAttributeNames() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public String getCharacterEncoding() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public void setCharacterEncoding(String env) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public int getContentLength() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public long getContentLengthLong() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public String getContentType() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public ServletInputStream getInputStream() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public String getParameter(String name) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public Enumeration<String> getParameterNames() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public String[] getParameterValues(String name) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public Map<String, String[]> getParameterMap() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public String getProtocol() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public String getScheme() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public String getServerName() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public int getServerPort() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public BufferedReader getReader() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public String getRemoteAddr() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public String getRemoteHost() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public void setAttribute(String name, Object o) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public void removeAttribute(String name) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public Locale getLocale() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public Enumeration<Locale> getLocales() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public boolean isSecure() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public RequestDispatcher getRequestDispatcher(String path) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public String getRealPath(String path) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public int getRemotePort() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public String getLocalName() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public String getLocalAddr() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public int getLocalPort() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public ServletContext getServletContext() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public AsyncContext startAsync() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public AsyncContext startAsync(ServletRequest servletRequest, ServletResponse servletResponse) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public boolean isAsyncStarted() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public boolean isAsyncSupported() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public AsyncContext getAsyncContext() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
@Override | ||
public DispatcherType getDispatcherType() { | ||
throw new UnsupportedOperationException(); | ||
} | ||
} |
Oops, something went wrong.