All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.test.web.servlet.MvcResult Maven / Gradle / Ivy

There is a newer version: 6.1.6
Show newest version
/*
 * Copyright 2002-2018 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.test.web.servlet;

import org.springframework.lang.Nullable;
import org.springframework.mock.web.MockHttpServletRequest;
import org.springframework.mock.web.MockHttpServletResponse;
import org.springframework.web.servlet.FlashMap;
import org.springframework.web.servlet.HandlerExceptionResolver;
import org.springframework.web.servlet.HandlerInterceptor;
import org.springframework.web.servlet.ModelAndView;

/**
 * Provides access to the result of an executed request.
 *
 * @author Rossen Stoyanchev
 * @since 3.2
 */
public interface MvcResult {

	/**
	 * Return the performed request.
	 * @return the request, never {@code null}
	 */
	MockHttpServletRequest getRequest();

	/**
	 * Return the resulting response.
	 * @return the response, never {@code null}
	 */
	MockHttpServletResponse getResponse();

	/**
	 * Return the executed handler.
	 * @return the handler, possibly {@code null} if none were executed
	 */
	@Nullable
	Object getHandler();

	/**
	 * Return interceptors around the handler.
	 * @return interceptors, or {@code null} if none were selected
	 */
	@Nullable
	HandlerInterceptor[] getInterceptors();

	/**
	 * Return the {@code ModelAndView} prepared by the handler.
	 * @return a {@code ModelAndView}, or {@code null} if none
	 */
	@Nullable
	ModelAndView getModelAndView();

	/**
	 * Return any exception raised by a handler and successfully resolved
	 * through a {@link HandlerExceptionResolver}.
	 * @return an exception, or {@code null} if none
	 */
	@Nullable
	Exception getResolvedException();

	/**
	 * Return the "output" flash attributes saved during request processing.
	 * @return the {@code FlashMap}, possibly empty
	 */
	FlashMap getFlashMap();

	/**
	 * Get the result of async execution.
	 * 

This method will wait for the async result to be set within the * timeout value associated with the async request, see * {@link org.springframework.mock.web.MockAsyncContext#setTimeout * MockAsyncContext#setTimeout}. Alternatively, use * {@link #getAsyncResult(long)} to specify the amount of time to wait. * @throws IllegalStateException if the async result was not set */ Object getAsyncResult(); /** * Get the result of async execution and wait if necessary. * @param timeToWait how long to wait for the async result to be set, in * milliseconds; if -1, then fall back on the timeout value associated with * the async request, see * {@link org.springframework.mock.web.MockAsyncContext#setTimeout * MockAsyncContext#setTimeout} for more details. * @throws IllegalStateException if the async result was not set */ Object getAsyncResult(long timeToWait); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy