コード例 #1
0
  /**
   * Test for handler routing without Xpath given (implementation takes the value of first node).
   */
  @Test
  public void testRouteMessageWithDefaultXpath() throws Exception {
    XPathPayloadMappingKeyExtractor mappingNameExtractor = new XPathPayloadMappingKeyExtractor();
    endpointAdapter.setMappingKeyExtractor(mappingNameExtractor);

    Message response =
        endpointAdapter.handleMessage(new DefaultMessage("<FooBarTest></FooBarTest>"));

    Assert.assertEquals(response.getPayload(String.class).trim(), "<FooBarTest>OK</FooBarTest>");
  }
コード例 #2
0
  /** Test for correct xpath, but no handler bean is found --> shall raise exc */
  @Test
  public void testRouteMessageWithBadHandlerConfiguration() throws Exception {
    XPathPayloadMappingKeyExtractor mappingNameExtractor = new XPathPayloadMappingKeyExtractor();
    mappingNameExtractor.setXpathExpression("//Test/@name");
    endpointAdapter.setMappingKeyExtractor(mappingNameExtractor);

    try {
      endpointAdapter.handleMessage(new DefaultMessage("<Test name=\"UNKNOWN_TEST\"></Test>"));
      Assert.fail("Missing exception due to unknown endpoint adapter");
    } catch (CitrusRuntimeException e) {
      Assert.assertEquals(e.getMessage(), "Failed to load test case");
    }
  }
コード例 #3
0
  /** Test for Xpath which is not found --> shall raise exception */
  @Test
  public void testRouteMessageWithBadXpathExpression() throws Exception {
    XPathPayloadMappingKeyExtractor mappingNameExtractor = new XPathPayloadMappingKeyExtractor();
    mappingNameExtractor.setXpathExpression("//I_DO_NOT_EXIST");
    endpointAdapter.setMappingKeyExtractor(mappingNameExtractor);

    try {
      endpointAdapter.handleMessage(new DefaultMessage("<FooTest>foo test please</FooTest>"));
      Assert.fail("Missing exception due to bad XPath expression");
    } catch (CitrusRuntimeException e) {
      Assert.assertEquals(e.getMessage(), "No result for XPath expression: '//I_DO_NOT_EXIST'");
    }
  }
コード例 #4
0
  /** Test for handler routing by node content */
  @Test
  public void testRouteMessageByElementTextContent() throws Exception {
    XPathPayloadMappingKeyExtractor mappingNameExtractor = new XPathPayloadMappingKeyExtractor();
    mappingNameExtractor.setXpathExpression("//Test/@name");
    endpointAdapter.setMappingKeyExtractor(mappingNameExtractor);

    Message response =
        endpointAdapter.handleMessage(new DefaultMessage("<Test name=\"FooTest\"></Test>"));

    Assert.assertEquals(
        response.getPayload(String.class).trim(), "<Test name=\"FooTest\">OK</Test>");

    response = endpointAdapter.handleMessage(new DefaultMessage("<Test name=\"BarTest\"></Test>"));

    Assert.assertEquals(
        response.getPayload(String.class).trim(), "<Test name=\"BarTest\">OK</Test>");
  }