com.github.yongchristophertang.engine.web.response.DefaultResultActions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-connector Show documentation
Show all versions of rest-connector Show documentation
A test client framework for RESTful HTTP and Java APIs
/*
* Copyright 2014-2015 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
*
* http://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 com.github.yongchristophertang.engine.web.response;
import com.github.yongchristophertang.engine.web.*;
/**
* A default implementation of {@link ResultActions}.
*
* @author Yong Tang
* @since 0.4
*/
public class DefaultResultActions implements ResultActions {
private final HttpResult httpResult;
public DefaultResultActions(HttpResult httpResult) {
this.httpResult = httpResult;
}
/**
* Provide an expectation. For example:
*
* static imports: MockMvcRequestBuilders.*, MockMvcResultMatchers.*
*
* mockMvc.perform(get("/person/1"))
* .andExpect(status().isOk())
* .andExpect(content().mimeType(MediaType.APPLICATION_JSON))
* .andExpect(jsonPath("$.person.name").equalTo("Jason"));
*
* mockMvc.perform(post("/form"))
* .andExpect(status().isOk())
* .andExpect(redirectedUrl("/person/1"))
* .andExpect(model().size(1))
* .andExpect(model().attributeExists("person"))
* .andExpect(flash().attributeCount(1))
* .andExpect(flash().attribute("message", "success!"));
*
*
* @param matcher matcher for assertion
*/
@Override
public ResultActions andExpect(ResultMatcher matcher) throws Exception {
matcher.match(httpResult);
return this;
}
/**
* Provide a general action. For example:
*
* static imports: MockMvcRequestBuilders.*, MockMvcResultMatchers.*
*
* mockMvc.perform(get("/form")).andDo(print());
*
*
* @param handler handler for processing response data
*/
@Override
public ResultActions andDo(ResultHandler handler) throws Exception {
handler.handle(httpResult);
return this;
}
/**
* Provide a transformation of the result. It is a terminal method.
*
* @return the transformation of the result
*/
@Override
public T andTransform(ResultTransform transformer) throws Exception {
return transformer.transform(httpResult);
}
/**
* Return the result of the executed request for direct access to the results. It is a terminal method.
*
* @return the result of the request
*/
@Override
public HttpResult andReturn() throws Exception {
return httpResult;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy