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

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

/*
* 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 org.hamcrest.Matchers;
import org.junit.Test;
import org.springframework.mock.web.MockHttpServletResponse;
import org.springframework.test.web.server.StubMvcResult;

/**
* Tests for {@link JsonPathResultMatchers}.
*
* @author Rossen Stoyanchev
*/
public class JsonPathResultMatchersTests {

  @Test
  public void value() throws Exception {
    new JsonPathResultMatchers("$.foo").value("bar").match(getStubMvcResult());
  }

  @Test(expected=AssertionError.class)
  public void valueNoMatch() throws Exception {
    new JsonPathResultMatchers("$.foo").value("bogus").match(getStubMvcResult());
  }

  @Test
  public void valueMatcher() throws Exception {
    new JsonPathResultMatchers("$.foo").value(Matchers.equalTo("bar")).match(getStubMvcResult());
  }

  @Test(expected=AssertionError.class)
  public void valueMatcherNoMatch() throws Exception {
    new JsonPathResultMatchers("$.foo").value(Matchers.equalTo("bogus")).match(getStubMvcResult());
  }

  @Test
  public void exists() throws Exception {
    new JsonPathResultMatchers("$.foo").exists().match(getStubMvcResult());
  }

  @Test(expected=AssertionError.class)
  public void existsNoMatch() throws Exception {
    new JsonPathResultMatchers("$.bogus").exists().match(getStubMvcResult());
  }

  @Test
  public void doesNotExist() throws Exception {
    new JsonPathResultMatchers("$.bogus").doesNotExist().match(getStubMvcResult());
  }

  @Test(expected=AssertionError.class)
  public void doesNotExistNoMatch() throws Exception {
    new JsonPathResultMatchers("$.foo").doesNotExist().match(getStubMvcResult());
  }

  @Test
  public void isArrayMatch() throws Exception {
    new JsonPathResultMatchers("$.qux").isArray().match(getStubMvcResult());
  }

  @Test(expected=AssertionError.class)
  public void isArrayNoMatch() throws Exception {
    new JsonPathResultMatchers("$.bar").isArray().match(getStubMvcResult());
  }


  private static final String RESPONSE_CONTENT = "{\"foo\":\"bar\", \"qux\":[\"baz1\",\"baz2\"]}";

  private StubMvcResult getStubMvcResult() throws Exception {
    MockHttpServletResponse response = new MockHttpServletResponse();
    response.addHeader("Content-Type", "application/json");
    response.getWriter().print(new String(RESPONSE_CONTENT.getBytes("ISO-8859-1")));
    return new StubMvcResult(null, null, null, null, null, null, response);
  }

}
TOP

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

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.