Package org.springframework.test.web.client.match

Source Code of org.springframework.test.web.client.match.XpathRequestMatchersTests

/*
* Copyright 2002-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.client.match;

import java.io.IOException;

import org.hamcrest.Matchers;
import org.junit.Before;
import org.junit.Test;
import org.springframework.mock.http.client.MockClientHttpRequest;

/**
* Tests for {@link XpathRequestMatchers}.
*
* @author Rossen Stoyanchev
*/
public class XpathRequestMatchersTests {

  private static final String RESPONSE_CONTENT = "<foo><bar>111</bar><bar>true</bar></foo>";

  private MockClientHttpRequest request;

  @Before
  public void setUp() throws IOException {
    this.request = new MockClientHttpRequest();
    this.request.getBody().write(RESPONSE_CONTENT.getBytes());
  }

  @Test
  public void testNodeMatcher() throws Exception {
    new XpathRequestMatchers("/foo/bar", null).node(Matchers.notNullValue()).match(this.request);
  }

  @Test(expected=AssertionError.class)
  public void testNodeMatcherNoMatch() throws Exception {
    new XpathRequestMatchers("/foo/bar", null).node(Matchers.nullValue()).match(this.request);
  }

  @Test
  public void testExists() throws Exception {
    new XpathRequestMatchers("/foo/bar", null).exists().match(this.request);
  }

  @Test(expected=AssertionError.class)
  public void testExistsNoMatch() throws Exception {
    new XpathRequestMatchers("/foo/Bar", null).exists().match(this.request);
  }

  @Test
  public void testDoesNotExist() throws Exception {
    new XpathRequestMatchers("/foo/Bar", null).doesNotExist().match(this.request);
  }

  @Test(expected=AssertionError.class)
  public void testDoesNotExistNoMatch() throws Exception {
    new XpathRequestMatchers("/foo/bar", null).doesNotExist().match(this.request);
  }

  @Test
  public void testNodeCount() throws Exception {
    new XpathRequestMatchers("/foo/bar", null).nodeCount(2).match(this.request);
  }

  @Test(expected=AssertionError.class)
  public void testNodeCountNoMatch() throws Exception {
    new XpathRequestMatchers("/foo/bar", null).nodeCount(1).match(this.request);
  }

  @Test
  public void testString() throws Exception {
    new XpathRequestMatchers("/foo/bar[1]", null).string("111").match(this.request);
  }

  @Test(expected=AssertionError.class)
  public void testStringNoMatch() throws Exception {
    new XpathRequestMatchers("/foo/bar[1]", null).string("112").match(this.request);
  }

  @Test
  public void testNumber() throws Exception {
    new XpathRequestMatchers("/foo/bar[1]", null).number(111.0).match(this.request);
  }

  @Test(expected=AssertionError.class)
  public void testNumberNoMatch() throws Exception {
    new XpathRequestMatchers("/foo/bar[1]", null).number(111.1).match(this.request);
  }

  @Test
  public void testBoolean() throws Exception {
    new XpathRequestMatchers("/foo/bar[2]", null).booleanValue(true).match(this.request);
  }

  @Test(expected=AssertionError.class)
  public void testBooleanNoMatch() throws Exception {
    new XpathRequestMatchers("/foo/bar[2]", null).booleanValue(false).match(this.request);
  }

}
TOP

Related Classes of org.springframework.test.web.client.match.XpathRequestMatchersTests

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.