Package org.springframework.test.web.server.result

Source Code of org.springframework.test.web.server.result.StatusResultMatchersTests

/*
* Copyright 2011 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 org.springframework.test.web.server.result;

import static org.junit.Assert.fail;

import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.List;

import org.junit.Test;
import org.springframework.core.Conventions;
import org.springframework.http.HttpStatus;
import org.springframework.mock.web.MockHttpServletRequest;
import org.springframework.mock.web.MockHttpServletResponse;
import org.springframework.test.web.server.MvcResult;
import org.springframework.test.web.server.ResultMatcher;
import org.springframework.test.web.server.StubMvcResult;
import org.springframework.util.ReflectionUtils;
import org.springframework.util.StringUtils;

/**
*
* @author Rossen Stoyanchev
*/
public class StatusResultMatchersTests {

  @Test
  public void testHttpStatusCodeResultMatchers() throws Exception {

    StatusResultMatchers resultMatchers = new StatusResultMatchers();

    List<AssertionError> failures = new ArrayList<AssertionError>();
   
    for(HttpStatus status : HttpStatus.values()) {
      MockHttpServletResponse response = new MockHttpServletResponse();
      response.setStatus(status.value());

      String methodName = statusToMethodName(status);
      Method method = StatusResultMatchers.class.getMethod(methodName);
      try {
        ResultMatcher matcher = (ResultMatcher) ReflectionUtils.invokeMethod(method, resultMatchers);
        try {
          MvcResult mvcResult = new StubMvcResult(new MockHttpServletRequest(), null, null, null, null, null, response);
          matcher.match(mvcResult);
        }
        catch (AssertionError error) {
          failures.add(error);
        }
      }
      catch (Exception ex) {
        throw new Exception("Failed to obtain ResultMatcher: " + method.toString(), ex);
      }
    }
   
    if (!failures.isEmpty()) {
      fail("Failed status codes: " + failures);
    }
  }

  private String statusToMethodName(HttpStatus status) throws NoSuchMethodException {
    String name = status.name().toLowerCase().replace("_", "-");
    return "is" + StringUtils.capitalize(Conventions.attributeNameToPropertyName(name));
  }
 
}
TOP

Related Classes of org.springframework.test.web.server.result.StatusResultMatchersTests

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.