Search in sources :

Example 11 with Get

use of org.apache.cxf.ws.transfer.Get in project cxf by apache.

the class GetTest method getStudentTest.

@Test
public void getStudentTest() {
    Resource client = TestUtils.createResourceClient(studentRef);
    GetResponse response = client.get(new Get());
    Element representation = (Element) response.getRepresentation().getAny();
    NodeList children = representation.getChildNodes();
    for (int i = 0; i < children.getLength(); i++) {
        Element child = (Element) children.item(i);
        if ("name".equals(child.getLocalName())) {
            Assert.assertEquals("John", child.getTextContent());
        } else if ("surname".equals(child.getLocalName())) {
            Assert.assertEquals("Smith", child.getTextContent());
        } else if ("address".equals(child.getLocalName())) {
            Assert.assertEquals("Street 21", child.getTextContent());
        }
    }
}
Also used : Get(org.apache.cxf.ws.transfer.Get) Element(org.w3c.dom.Element) NodeList(org.w3c.dom.NodeList) Resource(org.apache.cxf.ws.transfer.resource.Resource) GetResponse(org.apache.cxf.ws.transfer.GetResponse) Test(org.junit.Test)

Example 12 with Get

use of org.apache.cxf.ws.transfer.Get in project cxf by apache.

the class ResourceTest method getRequestTest.

@Test
public void getRequestTest() {
    Element representationEl = document.createElementNS(REPRESENTATION_NAMESPACE, REPRESENTATION_NAME);
    representationEl.setTextContent(REPRESENTATION_VALUE);
    Representation representation = new Representation();
    representation.setAny(representationEl);
    ResourceManager manager = EasyMock.createMock(ResourceManager.class);
    EasyMock.expect(manager.get(EasyMock.isA(ReferenceParametersType.class))).andReturn(representation);
    EasyMock.expectLastCall().once();
    EasyMock.replay(manager);
    ReferenceParametersType refParams = new ReferenceParametersType();
    Element uuid = document.createElementNS(MemoryResourceManager.REF_NAMESPACE, MemoryResourceManager.REF_LOCAL_NAME);
    uuid.setTextContent(UUID_VALUE);
    refParams.getAny().add(uuid);
    Server server = createLocalResource(manager);
    Resource client = createClient(refParams);
    GetResponse response = client.get(new Get());
    EasyMock.verify(manager);
    representationEl = (Element) response.getRepresentation().getAny();
    Assert.assertEquals("Namespace is other than expected.", REPRESENTATION_NAMESPACE, representationEl.getNamespaceURI());
    Assert.assertEquals("Element name is other than expected", REPRESENTATION_NAME, representationEl.getLocalName());
    Assert.assertEquals("Value is other than expected.", REPRESENTATION_VALUE, representationEl.getTextContent());
    server.destroy();
}
Also used : Server(org.apache.cxf.endpoint.Server) Element(org.w3c.dom.Element) Get(org.apache.cxf.ws.transfer.Get) Resource(org.apache.cxf.ws.transfer.resource.Resource) Representation(org.apache.cxf.ws.transfer.Representation) ReferenceParametersType(org.apache.cxf.ws.addressing.ReferenceParametersType) MemoryResourceManager(org.apache.cxf.ws.transfer.manager.MemoryResourceManager) ResourceManager(org.apache.cxf.ws.transfer.manager.ResourceManager) GetResponse(org.apache.cxf.ws.transfer.GetResponse) Test(org.junit.Test)

Example 13 with Get

use of org.apache.cxf.ws.transfer.Get in project cxf by apache.

the class FragmentGetQNameTest method getTest.

@Test
public void getTest() throws XMLStreamException {
    String content = "<root><a><b>Text</b></a></root>";
    ResourceManager resourceManager = new MemoryResourceManager();
    ReferenceParametersType refParams = resourceManager.create(getRepresentation(content));
    Server resource = createLocalResource(resourceManager);
    Resource client = createClient(refParams);
    ObjectFactory objectFactory = new ObjectFactory();
    Get request = new Get();
    request.setDialect(FragmentDialectConstants.FRAGMENT_2011_03_IRI);
    ExpressionType expression = new ExpressionType();
    expression.setLanguage(FragmentDialectConstants.QNAME_LANGUAGE_IRI);
    expression.getContent().add("a");
    request.getAny().add(objectFactory.createExpression(expression));
    GetResponse response = client.get(request);
    ValueType value = getValue(response);
    Assert.assertEquals(1, value.getContent().size());
    Assert.assertEquals("a", ((Element) value.getContent().get(0)).getLocalName());
    resource.destroy();
}
Also used : Server(org.apache.cxf.endpoint.Server) ObjectFactory(org.apache.cxf.ws.transfer.dialect.fragment.ObjectFactory) ValueType(org.apache.cxf.ws.transfer.dialect.fragment.ValueType) Get(org.apache.cxf.ws.transfer.Get) Resource(org.apache.cxf.ws.transfer.resource.Resource) ReferenceParametersType(org.apache.cxf.ws.addressing.ReferenceParametersType) MemoryResourceManager(org.apache.cxf.ws.transfer.manager.MemoryResourceManager) ResourceManager(org.apache.cxf.ws.transfer.manager.ResourceManager) MemoryResourceManager(org.apache.cxf.ws.transfer.manager.MemoryResourceManager) ExpressionType(org.apache.cxf.ws.transfer.dialect.fragment.ExpressionType) GetResponse(org.apache.cxf.ws.transfer.GetResponse) Test(org.junit.Test)

Example 14 with Get

use of org.apache.cxf.ws.transfer.Get in project cxf by apache.

the class FragmentGetQNameTest method getWrongQNameTest.

@Test(expected = SOAPFaultException.class)
public void getWrongQNameTest() throws XMLStreamException {
    String content = "<root><a><b>Text1</b><b>Text2</b><b>Text3</b></a></root>";
    ResourceManager resourceManager = new MemoryResourceManager();
    ReferenceParametersType refParams = resourceManager.create(getRepresentation(content));
    createLocalResource(resourceManager);
    Resource client = createClient(refParams);
    ObjectFactory objectFactory = new ObjectFactory();
    Get request = new Get();
    request.setDialect(FragmentDialectConstants.FRAGMENT_2011_03_IRI);
    ExpressionType expression = new ExpressionType();
    expression.setLanguage(FragmentDialectConstants.QNAME_LANGUAGE_IRI);
    expression.getContent().add("//b");
    request.getAny().add(objectFactory.createExpression(expression));
    client.get(request);
}
Also used : ObjectFactory(org.apache.cxf.ws.transfer.dialect.fragment.ObjectFactory) Get(org.apache.cxf.ws.transfer.Get) Resource(org.apache.cxf.ws.transfer.resource.Resource) ReferenceParametersType(org.apache.cxf.ws.addressing.ReferenceParametersType) MemoryResourceManager(org.apache.cxf.ws.transfer.manager.MemoryResourceManager) ResourceManager(org.apache.cxf.ws.transfer.manager.ResourceManager) MemoryResourceManager(org.apache.cxf.ws.transfer.manager.MemoryResourceManager) ExpressionType(org.apache.cxf.ws.transfer.dialect.fragment.ExpressionType) Test(org.junit.Test)

Example 15 with Get

use of org.apache.cxf.ws.transfer.Get in project cxf by apache.

the class FragmentGetQNameTest method getWithNamespaceTest.

@Test
public void getWithNamespaceTest() throws XMLStreamException {
    String content = "<ns:root xmlns:ns=\"www.example.org\"><ns:a><ns:b>Text</ns:b></ns:a></ns:root>";
    ResourceManager resourceManager = new MemoryResourceManager();
    ReferenceParametersType refParams = resourceManager.create(getRepresentation(content));
    Server resource = createLocalResource(resourceManager);
    Resource client = createClient(refParams);
    ObjectFactory objectFactory = new ObjectFactory();
    Get request = new Get();
    request.setDialect(FragmentDialectConstants.FRAGMENT_2011_03_IRI);
    ExpressionType expression = new ExpressionType();
    expression.setLanguage(FragmentDialectConstants.QNAME_LANGUAGE_IRI);
    expression.getContent().add("ns:a");
    request.getAny().add(objectFactory.createExpression(expression));
    GetResponse response = client.get(request);
    ValueType value = getValue(response);
    Assert.assertEquals(1, value.getContent().size());
    Assert.assertEquals("a", ((Element) value.getContent().get(0)).getLocalName());
    Assert.assertEquals("www.example.org", ((Element) value.getContent().get(0)).getNamespaceURI());
    resource.destroy();
}
Also used : Server(org.apache.cxf.endpoint.Server) ObjectFactory(org.apache.cxf.ws.transfer.dialect.fragment.ObjectFactory) ValueType(org.apache.cxf.ws.transfer.dialect.fragment.ValueType) Get(org.apache.cxf.ws.transfer.Get) Resource(org.apache.cxf.ws.transfer.resource.Resource) ReferenceParametersType(org.apache.cxf.ws.addressing.ReferenceParametersType) MemoryResourceManager(org.apache.cxf.ws.transfer.manager.MemoryResourceManager) ResourceManager(org.apache.cxf.ws.transfer.manager.ResourceManager) MemoryResourceManager(org.apache.cxf.ws.transfer.manager.MemoryResourceManager) ExpressionType(org.apache.cxf.ws.transfer.dialect.fragment.ExpressionType) GetResponse(org.apache.cxf.ws.transfer.GetResponse) Test(org.junit.Test)

Aggregations

Get (org.apache.cxf.ws.transfer.Get)21 Resource (org.apache.cxf.ws.transfer.resource.Resource)21 Test (org.junit.Test)21 GetResponse (org.apache.cxf.ws.transfer.GetResponse)18 ReferenceParametersType (org.apache.cxf.ws.addressing.ReferenceParametersType)17 MemoryResourceManager (org.apache.cxf.ws.transfer.manager.MemoryResourceManager)17 ResourceManager (org.apache.cxf.ws.transfer.manager.ResourceManager)17 Server (org.apache.cxf.endpoint.Server)16 ExpressionType (org.apache.cxf.ws.transfer.dialect.fragment.ExpressionType)16 ObjectFactory (org.apache.cxf.ws.transfer.dialect.fragment.ObjectFactory)16 ValueType (org.apache.cxf.ws.transfer.dialect.fragment.ValueType)15 Element (org.w3c.dom.Element)5 JAXBElement (javax.xml.bind.JAXBElement)2 CreateResponse (org.apache.cxf.ws.transfer.CreateResponse)2 Delete (org.apache.cxf.ws.transfer.Delete)2 NodeList (org.w3c.dom.NodeList)2 Representation (org.apache.cxf.ws.transfer.Representation)1