Search in sources :

Example 6 with AssetListQuery

use of eu.europa.ec.fisheries.wsdl.asset.types.AssetListQuery in project UVMS-Docker by UnionVMS.

the class AssetRestIT method getAssetListMultipleAssetsGuidsTest.

@Test
public void getAssetListMultipleAssetsGuidsTest() throws Exception {
    Asset asset1 = AssetTestHelper.createTestAsset();
    Asset asset2 = AssetTestHelper.createTestAsset();
    AssetListQuery assetListQuery = AssetTestHelper.getBasicAssetQuery();
    AssetListCriteriaPair assetListCriteriaPair1 = new AssetListCriteriaPair();
    assetListCriteriaPair1.setKey(ConfigSearchField.GUID);
    assetListCriteriaPair1.setValue(asset1.getAssetId().getGuid());
    assetListQuery.getAssetSearchCriteria().getCriterias().add(assetListCriteriaPair1);
    AssetListCriteriaPair assetListCriteriaPair2 = new AssetListCriteriaPair();
    assetListCriteriaPair2.setKey(ConfigSearchField.GUID);
    assetListCriteriaPair2.setValue(asset2.getAssetId().getGuid());
    assetListQuery.getAssetSearchCriteria().getCriterias().add(assetListCriteriaPair2);
    ListAssetResponse assetListResponse = AssetTestHelper.assetListQuery(assetListQuery);
    List<Asset> assets = assetListResponse.getAsset();
    assertEquals(2, assets.size());
    assertTrue(assets.contains(asset1));
    assertTrue(assets.contains(asset2));
}
Also used : AssetListCriteriaPair(eu.europa.ec.fisheries.wsdl.asset.types.AssetListCriteriaPair) AssetListQuery(eu.europa.ec.fisheries.wsdl.asset.types.AssetListQuery) Asset(eu.europa.ec.fisheries.wsdl.asset.types.Asset) ListAssetResponse(eu.europa.ec.fisheries.wsdl.asset.types.ListAssetResponse) Test(org.junit.Test) AbstractRestServiceTest(eu.europa.ec.fisheries.uvms.docker.validation.common.AbstractRestServiceTest)

Example 7 with AssetListQuery

use of eu.europa.ec.fisheries.wsdl.asset.types.AssetListQuery in project UVMS-Docker by UnionVMS.

the class AssetRestIT method assetListQueryMultipleHistoryGuidTest.

@Test
public void assetListQueryMultipleHistoryGuidTest() throws Exception {
    // Create asset versions
    Asset asset1 = AssetTestHelper.createTestAsset();
    Asset asset2 = AssetTestHelper.getAssetByGuid(asset1.getAssetId().getGuid());
    asset2.setName(asset2.getName() + "1");
    asset2 = AssetTestHelper.updateAsset(asset2);
    AssetListQuery assetListQuery = AssetTestHelper.getBasicAssetQuery();
    AssetListCriteriaPair assetListCriteriaPair = new AssetListCriteriaPair();
    assetListCriteriaPair.setKey(ConfigSearchField.HIST_GUID);
    assetListCriteriaPair.setValue(asset1.getEventHistory().getEventId());
    assetListQuery.getAssetSearchCriteria().getCriterias().add(assetListCriteriaPair);
    AssetListCriteriaPair assetListCriteriaPair2 = new AssetListCriteriaPair();
    assetListCriteriaPair2.setKey(ConfigSearchField.HIST_GUID);
    assetListCriteriaPair2.setValue(asset2.getEventHistory().getEventId());
    assetListQuery.getAssetSearchCriteria().getCriterias().add(assetListCriteriaPair2);
    ListAssetResponse assetHistory = AssetTestHelper.assetListQuery(assetListQuery);
    List<Asset> assets = assetHistory.getAsset();
    assertEquals(2, assets.size());
    assertTrue(assets.contains(asset1));
    assertTrue(assets.contains(asset2));
}
Also used : AssetListCriteriaPair(eu.europa.ec.fisheries.wsdl.asset.types.AssetListCriteriaPair) AssetListQuery(eu.europa.ec.fisheries.wsdl.asset.types.AssetListQuery) Asset(eu.europa.ec.fisheries.wsdl.asset.types.Asset) ListAssetResponse(eu.europa.ec.fisheries.wsdl.asset.types.ListAssetResponse) Test(org.junit.Test) AbstractRestServiceTest(eu.europa.ec.fisheries.uvms.docker.validation.common.AbstractRestServiceTest)

Example 8 with AssetListQuery

use of eu.europa.ec.fisheries.wsdl.asset.types.AssetListQuery in project UVMS-Docker by UnionVMS.

the class AssetRestIT method getAssetListWithLikeSearchValue.

@Test
public void getAssetListWithLikeSearchValue() throws Exception {
    Asset asset = AssetTestHelper.createDummyAsset(AssetIdType.GUID);
    asset.setHomePort("MyHomePort");
    asset = AssetTestHelper.createAsset(asset);
    AssetListQuery assetListQuery = AssetTestHelper.getBasicAssetQuery();
    AssetListCriteriaPair assetListCriteriaPair = new AssetListCriteriaPair();
    assetListCriteriaPair.setKey(ConfigSearchField.HOMEPORT);
    assetListCriteriaPair.setValue("My*");
    assetListQuery.getAssetSearchCriteria().getCriterias().add(assetListCriteriaPair);
    ListAssetResponse assetList = AssetTestHelper.assetListQuery(assetListQuery);
    List<Asset> assets = assetList.getAsset();
    assertTrue(assets.contains(asset));
}
Also used : AssetListCriteriaPair(eu.europa.ec.fisheries.wsdl.asset.types.AssetListCriteriaPair) AssetListQuery(eu.europa.ec.fisheries.wsdl.asset.types.AssetListQuery) Asset(eu.europa.ec.fisheries.wsdl.asset.types.Asset) ListAssetResponse(eu.europa.ec.fisheries.wsdl.asset.types.ListAssetResponse) Test(org.junit.Test) AbstractRestServiceTest(eu.europa.ec.fisheries.uvms.docker.validation.common.AbstractRestServiceTest)

Example 9 with AssetListQuery

use of eu.europa.ec.fisheries.wsdl.asset.types.AssetListQuery in project UVMS-Docker by UnionVMS.

the class AssetRestIT method getAssetListUpdatedIRCSNotFoundTest.

@Test
public void getAssetListUpdatedIRCSNotFoundTest() throws Exception {
    Asset testAsset = AssetTestHelper.createTestAsset();
    AssetListQuery assetListQuery = AssetTestHelper.getBasicAssetQuery();
    AssetListCriteriaPair assetListCriteriaPair = new AssetListCriteriaPair();
    assetListCriteriaPair.setKey(ConfigSearchField.IRCS);
    assetListCriteriaPair.setValue(testAsset.getIrcs());
    assetListQuery.getAssetSearchCriteria().getCriterias().add(assetListCriteriaPair);
    ListAssetResponse assetList = AssetTestHelper.assetListQuery(assetListQuery);
    List<Asset> assets = assetList.getAsset();
    assertTrue(assets.contains(testAsset));
    testAsset.setIrcs(testAsset.getIrcs() + "NEW");
    AssetTestHelper.updateAsset(testAsset);
    // Search with same query, the asset should not be found
    assetList = AssetTestHelper.assetListQuery(assetListQuery);
    assets = assetList.getAsset();
    assertFalse(assets.contains(testAsset));
}
Also used : AssetListCriteriaPair(eu.europa.ec.fisheries.wsdl.asset.types.AssetListCriteriaPair) AssetListQuery(eu.europa.ec.fisheries.wsdl.asset.types.AssetListQuery) Asset(eu.europa.ec.fisheries.wsdl.asset.types.Asset) ListAssetResponse(eu.europa.ec.fisheries.wsdl.asset.types.ListAssetResponse) Test(org.junit.Test) AbstractRestServiceTest(eu.europa.ec.fisheries.uvms.docker.validation.common.AbstractRestServiceTest)

Example 10 with AssetListQuery

use of eu.europa.ec.fisheries.wsdl.asset.types.AssetListQuery in project UVMS-Docker by UnionVMS.

the class AssetRestIT method assetListQueryHistoryGuidTest.

@Test
public void assetListQueryHistoryGuidTest() throws Exception {
    // Create asset versions
    Asset asset1 = AssetTestHelper.createTestAsset();
    Asset asset2 = AssetTestHelper.getAssetByGuid(asset1.getAssetId().getGuid());
    asset2.setName(asset2.getName() + "1");
    asset2 = AssetTestHelper.updateAsset(asset2);
    Asset asset3 = AssetTestHelper.getAssetByGuid(asset2.getAssetId().getGuid());
    asset3.setName(asset3.getName() + "2");
    asset3 = AssetTestHelper.updateAsset(asset3);
    AssetListQuery assetListQuery1 = AssetTestHelper.getBasicAssetQuery();
    AssetListCriteriaPair assetListCriteriaPair = new AssetListCriteriaPair();
    assetListCriteriaPair.setKey(ConfigSearchField.HIST_GUID);
    assetListCriteriaPair.setValue(asset1.getEventHistory().getEventId());
    assetListQuery1.getAssetSearchCriteria().getCriterias().add(assetListCriteriaPair);
    ListAssetResponse assetHistory1 = AssetTestHelper.assetListQuery(assetListQuery1);
    List<Asset> assets = assetHistory1.getAsset();
    assertEquals(1, assets.size());
    assertEquals(asset1, assets.get(0));
    AssetListQuery assetListQuery2 = AssetTestHelper.getBasicAssetQuery();
    AssetListCriteriaPair assetListCriteriaPair2 = new AssetListCriteriaPair();
    assetListCriteriaPair2.setKey(ConfigSearchField.HIST_GUID);
    assetListCriteriaPair2.setValue(asset2.getEventHistory().getEventId());
    assetListQuery2.getAssetSearchCriteria().getCriterias().add(assetListCriteriaPair2);
    ListAssetResponse assetHistory2 = AssetTestHelper.assetListQuery(assetListQuery2);
    List<Asset> assets2 = assetHistory2.getAsset();
    assertEquals(1, assets2.size());
    assertEquals(asset2, assets2.get(0));
    AssetListQuery assetListQuery3 = AssetTestHelper.getBasicAssetQuery();
    AssetListCriteriaPair assetListCriteriaPair3 = new AssetListCriteriaPair();
    assetListCriteriaPair3.setKey(ConfigSearchField.HIST_GUID);
    assetListCriteriaPair3.setValue(asset3.getEventHistory().getEventId());
    assetListQuery3.getAssetSearchCriteria().getCriterias().add(assetListCriteriaPair3);
    ListAssetResponse assetHistory3 = AssetTestHelper.assetListQuery(assetListQuery3);
    List<Asset> assets3 = assetHistory3.getAsset();
    assertEquals(1, assets3.size());
    assertEquals(asset3, assets3.get(0));
}
Also used : AssetListCriteriaPair(eu.europa.ec.fisheries.wsdl.asset.types.AssetListCriteriaPair) AssetListQuery(eu.europa.ec.fisheries.wsdl.asset.types.AssetListQuery) Asset(eu.europa.ec.fisheries.wsdl.asset.types.Asset) ListAssetResponse(eu.europa.ec.fisheries.wsdl.asset.types.ListAssetResponse) Test(org.junit.Test) AbstractRestServiceTest(eu.europa.ec.fisheries.uvms.docker.validation.common.AbstractRestServiceTest)

Aggregations

AssetListQuery (eu.europa.ec.fisheries.wsdl.asset.types.AssetListQuery)14 AssetListCriteriaPair (eu.europa.ec.fisheries.wsdl.asset.types.AssetListCriteriaPair)13 Asset (eu.europa.ec.fisheries.wsdl.asset.types.Asset)12 Test (org.junit.Test)10 AbstractRestServiceTest (eu.europa.ec.fisheries.uvms.docker.validation.common.AbstractRestServiceTest)9 ListAssetResponse (eu.europa.ec.fisheries.wsdl.asset.types.ListAssetResponse)8 AssetListCriteria (eu.europa.ec.fisheries.wsdl.asset.types.AssetListCriteria)3 AssetIdentifierDto (eu.europa.ec.fisheries.ers.service.dto.AssetIdentifierDto)2 ServiceException (eu.europa.ec.fisheries.uvms.commons.service.exception.ServiceException)2 AssetListPagination (eu.europa.ec.fisheries.wsdl.asset.types.AssetListPagination)2 BigInteger (java.math.BigInteger)1 ArrayList (java.util.ArrayList)1 HttpResponse (org.apache.http.HttpResponse)1