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

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

/*
* Copyright 2011-2012 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.hamcrest.Matchers.is;

import java.util.Date;

import org.junit.Before;
import org.junit.Test;
import org.springframework.test.web.server.MvcResult;
import org.springframework.test.web.server.StubMvcResult;
import org.springframework.validation.BeanPropertyBindingResult;
import org.springframework.validation.BindingResult;
import org.springframework.web.servlet.ModelAndView;

/**
* @author Craig Walls
*/
public class ModelResultMatchersTests {

  private ModelResultMatchers matchers;

  private MvcResult mvcResult;
  private MvcResult mvcResultWithError;

  @Before
  public void setUp() throws Exception {
    this.matchers = new ModelResultMatchers();

    ModelAndView mav = new ModelAndView("view", "good", "good");
    BindingResult bindingResult = new BeanPropertyBindingResult("good", "good");
    mav.addObject(BindingResult.MODEL_KEY_PREFIX + "good", bindingResult);

    this.mvcResult = getMvcResult(mav);

    Date date = new Date();
    BindingResult bindingResultWithError = new BeanPropertyBindingResult(date, "date");
    bindingResultWithError.rejectValue("time", "error");

    ModelAndView mavWithError = new ModelAndView("view", "good", "good");
    mavWithError.addObject("date", date);
    mavWithError.addObject(BindingResult.MODEL_KEY_PREFIX + "date", bindingResultWithError);

    this.mvcResultWithError = getMvcResult(mavWithError);
  }

  @Test
  public void attributeExists() throws Exception {
    this.matchers.attributeExists("good").match(this.mvcResult);
  }

  @Test(expected=AssertionError.class)
  public void attributeExists_doesNotExist() throws Exception {
    this.matchers.attributeExists("bad").match(this.mvcResult);
  }

  @Test
  public void attribute_equal() throws Exception {
    this.matchers.attribute("good", is("good")).match(this.mvcResult);
  }

  @Test(expected=AssertionError.class)
  public void attribute_notEqual() throws Exception {
    this.matchers.attribute("good", is("bad")).match(this.mvcResult);
  }

  @Test
  public void hasNoErrors() throws Exception {
    this.matchers.hasNoErrors().match(this.mvcResult);
  }

  @Test(expected=AssertionError.class)
  public void hasNoErrors_withErrors() throws Exception {
    this.matchers.hasNoErrors().match(this.mvcResultWithError);
  }

  @Test
  public void attributeHasErrors() throws Exception {
    this.matchers.attributeHasErrors("date").match(this.mvcResultWithError);
  }

  @Test(expected=AssertionError.class)
  public void attributeHasErrors_withoutErrors() throws Exception {
    this.matchers.attributeHasErrors("good").match(this.mvcResultWithError);
  }

  @Test
  public void attributeHasNoErrors() throws Exception {
    this.matchers.attributeHasNoErrors("good").match(this.mvcResult);
  }

  @Test(expected=AssertionError.class)
  public void attributeHasNoErrors_withoutAttribute() throws Exception {
    this.matchers.attributeHasNoErrors("missing").match(this.mvcResultWithError);
  }

  @Test(expected=AssertionError.class)
  public void attributeHasNoErrors_withErrors() throws Exception {
    this.matchers.attributeHasNoErrors("date").match(this.mvcResultWithError);
  }

  @Test
  public void attributeHasFieldErrors() throws Exception {
    this.matchers.attributeHasFieldErrors("date", "time").match(this.mvcResultWithError);
  }

  @Test(expected=AssertionError.class)
  public void attributeHasFieldErrors_withoutAttribute() throws Exception {
    this.matchers.attributeHasFieldErrors("missing", "bad").match(this.mvcResult);
  }

  @Test(expected=AssertionError.class)
  public void attributeHasFieldErrors_withoutErrorsForAttribute() throws Exception {
    this.matchers.attributeHasFieldErrors("date", "time").match(this.mvcResult);
  }

  @Test(expected=AssertionError.class)
  public void attributeHasFieldErrors_withoutErrorsForField() throws Exception {
    this.matchers.attributeHasFieldErrors("date", "good", "time").match(this.mvcResultWithError);
  }

  private MvcResult getMvcResult(ModelAndView modelAndView) {
    return new StubMvcResult(null, null, null, null, modelAndView, null, null);
  }
}
TOP

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

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.