Search in sources :

Example 6 with SearchResultsType

use of net.opengis.cat.csw.v_2_0_2.SearchResultsType in project ddf by codice.

the class CswSubscriptionEndpointTest method testDeleteEventInvalidSchema.

@Test(expected = CswException.class)
public void testDeleteEventInvalidSchema() throws Exception {
    GetRecordsResponseType getRecordsResponse = new GetRecordsResponseType();
    SearchResultsType searchResults = new SearchResultsType();
    searchResults.setRecordSchema(CswConstants.CSW_OUTPUT_SCHEMA);
    getRecordsResponse.setSearchResults(searchResults);
    cswSubscriptionEndpoint.deleteEvent(getRecordsResponse);
}
Also used : SearchResultsType(net.opengis.cat.csw.v_2_0_2.SearchResultsType) GetRecordsResponseType(net.opengis.cat.csw.v_2_0_2.GetRecordsResponseType) Test(org.junit.Test)

Example 7 with SearchResultsType

use of net.opengis.cat.csw.v_2_0_2.SearchResultsType in project ddf by codice.

the class CswSubscriptionEndpointTest method getRecordsResponse.

private GetRecordsResponseType getRecordsResponse(int metacardCount) throws IOException, CatalogTransformerException {
    InputTransformer inputTransformer = mock(InputTransformer.class);
    when(mockInputManager.getTransformerBySchema(METACARD_SCHEMA)).thenReturn(inputTransformer);
    Metacard metacard = mock(Metacard.class);
    when(inputTransformer.transform(any(InputStream.class))).thenReturn(metacard);
    GetRecordsResponseType getRecordsResponse = new GetRecordsResponseType();
    SearchResultsType searchResults = new SearchResultsType();
    searchResults.setRecordSchema(METACARD_SCHEMA);
    getRecordsResponse.setSearchResults(searchResults);
    List<Object> any = new ArrayList<>();
    Node node = mock(Node.class);
    for (int i = 0; i < metacardCount; i++) {
        any.add(node);
    }
    searchResults.setAny(any);
    return getRecordsResponse;
}
Also used : Metacard(ddf.catalog.data.Metacard) InputStream(java.io.InputStream) SearchResultsType(net.opengis.cat.csw.v_2_0_2.SearchResultsType) Node(org.w3c.dom.Node) ArrayList(java.util.ArrayList) GetRecordsResponseType(net.opengis.cat.csw.v_2_0_2.GetRecordsResponseType) InputTransformer(ddf.catalog.transform.InputTransformer)

Example 8 with SearchResultsType

use of net.opengis.cat.csw.v_2_0_2.SearchResultsType in project ddf by codice.

the class CswSubscriptionEndpointTest method testCreateEventInvalidSchema.

@Test(expected = CswException.class)
public void testCreateEventInvalidSchema() throws Exception {
    GetRecordsResponseType getRecordsResponse = new GetRecordsResponseType();
    SearchResultsType searchResults = new SearchResultsType();
    searchResults.setRecordSchema(CswConstants.CSW_OUTPUT_SCHEMA);
    getRecordsResponse.setSearchResults(searchResults);
    cswSubscriptionEndpoint.createEvent(getRecordsResponse);
}
Also used : SearchResultsType(net.opengis.cat.csw.v_2_0_2.SearchResultsType) GetRecordsResponseType(net.opengis.cat.csw.v_2_0_2.GetRecordsResponseType) Test(org.junit.Test)

Example 9 with SearchResultsType

use of net.opengis.cat.csw.v_2_0_2.SearchResultsType in project ddf by codice.

the class CswSubscriptionEndpointTest method testUpdateEventInvalidSchema.

@Test(expected = CswException.class)
public void testUpdateEventInvalidSchema() throws Exception {
    GetRecordsResponseType getRecordsResponse = new GetRecordsResponseType();
    SearchResultsType searchResults = new SearchResultsType();
    searchResults.setRecordSchema(CswConstants.CSW_OUTPUT_SCHEMA);
    getRecordsResponse.setSearchResults(searchResults);
    cswSubscriptionEndpoint.updateEvent(getRecordsResponse);
}
Also used : SearchResultsType(net.opengis.cat.csw.v_2_0_2.SearchResultsType) GetRecordsResponseType(net.opengis.cat.csw.v_2_0_2.GetRecordsResponseType) Test(org.junit.Test)

Example 10 with SearchResultsType

use of net.opengis.cat.csw.v_2_0_2.SearchResultsType in project ddf by codice.

the class TestGetRecordsResponseConverter method testMarshalRecordCollectionGetSummary.

@Ignore
public void testMarshalRecordCollectionGetSummary() throws UnsupportedEncodingException, JAXBException {
    final int totalResults = 5;
    XStream xstream = createXStream(CswConstants.GET_RECORDS_RESPONSE);
    GetRecordsType getRecords = new GetRecordsType();
    QueryType query = new QueryType();
    ElementSetNameType set = new ElementSetNameType();
    set.setValue(ElementSetType.SUMMARY);
    query.setElementSetName(set);
    ObjectFactory objectFactory = new ObjectFactory();
    getRecords.setAbstractQuery(objectFactory.createAbstractQuery(query));
    CswRecordCollection collection = createCswRecordCollection(getRecords, totalResults);
    collection.setElementSetType(ElementSetType.SUMMARY);
    ArgumentCaptor<MarshallingContext> captor = ArgumentCaptor.forClass(MarshallingContext.class);
    String xml = xstream.toXML(collection);
    // Verify the context arguments were set correctly
    verify(mockProvider, times(totalResults)).marshal(any(Object.class), any(HierarchicalStreamWriter.class), captor.capture());
    MarshallingContext context = captor.getValue();
    assertThat(context, not(nullValue()));
    assertThat(context.get(CswConstants.OUTPUT_SCHEMA_PARAMETER), is(CswConstants.CSW_OUTPUT_SCHEMA));
    assertThat(context.get(CswConstants.ELEMENT_SET_TYPE), is(ElementSetType.SUMMARY));
    JAXBElement<GetRecordsResponseType> jaxb = (JAXBElement<GetRecordsResponseType>) getJaxBContext().createUnmarshaller().unmarshal(new ByteArrayInputStream(xml.getBytes("UTF-8")));
    GetRecordsResponseType response = jaxb.getValue();
    // Assert the GetRecordsResponse elements and attributes
    assertThat(response, not(nullValue()));
    SearchResultsType resultsType = response.getSearchResults();
    assertThat(resultsType, not(nullValue()));
    assertThat(resultsType.getElementSet(), is(ElementSetType.SUMMARY));
    assertThat(resultsType.getNumberOfRecordsMatched().intValue(), is(totalResults));
    assertThat(resultsType.getNumberOfRecordsReturned().intValue(), is(totalResults));
    assertThat(resultsType.getRecordSchema(), is(CswConstants.CSW_OUTPUT_SCHEMA));
}
Also used : HierarchicalStreamWriter(com.thoughtworks.xstream.io.HierarchicalStreamWriter) XStream(com.thoughtworks.xstream.XStream) SearchResultsType(net.opengis.cat.csw.v_2_0_2.SearchResultsType) GetRecordsType(net.opengis.cat.csw.v_2_0_2.GetRecordsType) Matchers.anyString(org.mockito.Matchers.anyString) JAXBElement(javax.xml.bind.JAXBElement) ObjectFactory(net.opengis.cat.csw.v_2_0_2.ObjectFactory) ByteArrayInputStream(java.io.ByteArrayInputStream) CswRecordCollection(org.codice.ddf.spatial.ogc.csw.catalog.common.CswRecordCollection) ElementSetNameType(net.opengis.cat.csw.v_2_0_2.ElementSetNameType) GetRecordsResponseType(net.opengis.cat.csw.v_2_0_2.GetRecordsResponseType) MarshallingContext(com.thoughtworks.xstream.converters.MarshallingContext) QueryType(net.opengis.cat.csw.v_2_0_2.QueryType) Ignore(jdk.nashorn.internal.ir.annotations.Ignore)

Aggregations

SearchResultsType (net.opengis.cat.csw.v_2_0_2.SearchResultsType)11 GetRecordsResponseType (net.opengis.cat.csw.v_2_0_2.GetRecordsResponseType)10 GetRecordsType (net.opengis.cat.csw.v_2_0_2.GetRecordsType)7 CswRecordCollection (org.codice.ddf.spatial.ogc.csw.catalog.common.CswRecordCollection)7 Matchers.anyString (org.mockito.Matchers.anyString)7 XStream (com.thoughtworks.xstream.XStream)6 ByteArrayInputStream (java.io.ByteArrayInputStream)6 JAXBElement (javax.xml.bind.JAXBElement)6 Ignore (jdk.nashorn.internal.ir.annotations.Ignore)6 ObjectFactory (net.opengis.cat.csw.v_2_0_2.ObjectFactory)6 QueryType (net.opengis.cat.csw.v_2_0_2.QueryType)6 MarshallingContext (com.thoughtworks.xstream.converters.MarshallingContext)5 HierarchicalStreamWriter (com.thoughtworks.xstream.io.HierarchicalStreamWriter)5 ElementSetNameType (net.opengis.cat.csw.v_2_0_2.ElementSetNameType)5 ArrayList (java.util.ArrayList)3 Test (org.junit.Test)3 Metacard (ddf.catalog.data.Metacard)2 NoNameCoder (com.thoughtworks.xstream.io.naming.NoNameCoder)1 StaxDriver (com.thoughtworks.xstream.io.xml.StaxDriver)1 MetacardImpl (ddf.catalog.data.impl.MetacardImpl)1