Search in sources :

Example 36 with YearFilterPagingRequest

use of org.devgateway.ocds.web.rest.controller.request.YearFilterPagingRequest in project oc-explorer by devgateway.

the class CountPlansTendersAwardsControllerTest method countAwardsByYear.

@Test
public void countAwardsByYear() throws Exception {
    final List<DBObject> countAwardsByYear = countPlansTendersAwardsController.countAwardsByYear(new YearFilterPagingRequest());
    final DBObject first = countAwardsByYear.get(0);
    int year = (int) first.get(CountPlansTendersAwardsController.Keys.YEAR);
    int count = (int) first.get(CountPlansTendersAwardsController.Keys.COUNT);
    Assert.assertEquals(2015, year);
    Assert.assertEquals(1, count);
    final DBObject second = countAwardsByYear.get(1);
    year = (int) second.get(CountPlansTendersAwardsController.Keys.YEAR);
    count = (int) second.get(CountPlansTendersAwardsController.Keys.COUNT);
    Assert.assertEquals(2016, year);
    Assert.assertEquals(2, count);
}
Also used : YearFilterPagingRequest(org.devgateway.ocds.web.rest.controller.request.YearFilterPagingRequest) DBObject(com.mongodb.DBObject) Test(org.junit.Test)

Example 37 with YearFilterPagingRequest

use of org.devgateway.ocds.web.rest.controller.request.YearFilterPagingRequest in project oc-explorer by devgateway.

the class FrequentTenderersControllerTest method frequentTenderersTest.

@Test
public void frequentTenderersTest() throws Exception {
    final List<DBObject> frequentTenderers = frequentTenderersController.frequentTenderers(new YearFilterPagingRequest());
    Assert.assertEquals(0, frequentTenderers.size());
}
Also used : YearFilterPagingRequest(org.devgateway.ocds.web.rest.controller.request.YearFilterPagingRequest) DBObject(com.mongodb.DBObject) Test(org.junit.Test)

Example 38 with YearFilterPagingRequest

use of org.devgateway.ocds.web.rest.controller.request.YearFilterPagingRequest in project oc-explorer by devgateway.

the class FrequentTenderersControllerTest method activeAwardsCountTest.

@Test
public void activeAwardsCountTest() throws Exception {
    final List<DBObject> frequentTenderers = frequentTenderersController.activeAwardsCount(new YearFilterPagingRequest());
    Assert.assertEquals(2, frequentTenderers.size());
    Assert.assertEquals(1, frequentTenderers.get(0).get("cnt"));
    Assert.assertEquals(1, frequentTenderers.get(1).get("cnt"));
}
Also used : YearFilterPagingRequest(org.devgateway.ocds.web.rest.controller.request.YearFilterPagingRequest) DBObject(com.mongodb.DBObject) Test(org.junit.Test)

Example 39 with YearFilterPagingRequest

use of org.devgateway.ocds.web.rest.controller.request.YearFilterPagingRequest in project oc-explorer by devgateway.

the class FundingByLocationControllerTest method fundingByTenderDeliveryLocation.

@Test
public void fundingByTenderDeliveryLocation() throws Exception {
    final List<DBObject> fundingByTenderDeliveryLocation = fundingByLocationController.fundingByTenderDeliveryLocation(new YearFilterPagingRequest());
    final DBObject first = fundingByTenderDeliveryLocation.get(0);
    int year = (int) first.get(FundingByLocationController.Keys.YEAR);
    BasicDBObject deliveryLocation = (BasicDBObject) first.get(FundingByLocationController.Keys.ITEMS_DELIVERY_LOCATION);
    BasicDBObject geometry = (BasicDBObject) deliveryLocation.get("geometry");
    String geometryType = (String) geometry.get("type");
    List<Double> coordinates = (List<Double>) geometry.get("coordinates");
    double totalTendersAmount = (double) first.get(FundingByLocationController.Keys.TOTAL_TENDERS_AMOUNT);
    int tendersCount = (int) first.get(FundingByLocationController.Keys.TENDERS_COUNT);
    Assert.assertEquals(2015, year);
    Assert.assertEquals("Point", geometryType);
    Assert.assertEquals(new ArrayList<>(Arrays.asList(45.9432, 24.9668)), coordinates);
    Assert.assertEquals(9000.0, totalTendersAmount, 0);
    Assert.assertEquals(1, tendersCount);
}
Also used : BasicDBObject(com.mongodb.BasicDBObject) YearFilterPagingRequest(org.devgateway.ocds.web.rest.controller.request.YearFilterPagingRequest) List(java.util.List) ArrayList(java.util.ArrayList) DBObject(com.mongodb.DBObject) BasicDBObject(com.mongodb.BasicDBObject) Test(org.junit.Test)

Example 40 with YearFilterPagingRequest

use of org.devgateway.ocds.web.rest.controller.request.YearFilterPagingRequest in project oc-explorer by devgateway.

the class LocationInfowindowControllerTest method tendersByLocation.

@Test
public void tendersByLocation() throws Exception {
    final List<DBObject> tendersByLocation = locationInfowindowController.tendersByLocation(new YearFilterPagingRequest());
    Assert.assertEquals(1, tendersByLocation.size());
    final DBObject first = tendersByLocation.get(0);
}
Also used : YearFilterPagingRequest(org.devgateway.ocds.web.rest.controller.request.YearFilterPagingRequest) DBObject(com.mongodb.DBObject) Test(org.junit.Test)

Aggregations

YearFilterPagingRequest (org.devgateway.ocds.web.rest.controller.request.YearFilterPagingRequest)100 Test (org.junit.Test)98 DBObject (com.mongodb.DBObject)96 BasicDBObject (com.mongodb.BasicDBObject)13 AbstractEndPointControllerTest (org.devgateway.ocds.web.rest.controller.AbstractEndPointControllerTest)10 ArrayList (java.util.ArrayList)5 List (java.util.List)5 AbstractWebTest (org.devgateway.toolkit.web.AbstractWebTest)4 Collection (java.util.Collection)3 ApiOperation (io.swagger.annotations.ApiOperation)2 BigDecimal (java.math.BigDecimal)2 Valid (javax.validation.Valid)2 Release (org.devgateway.ocds.persistence.mongo.Release)2 ReleasePackage (org.devgateway.ocds.persistence.mongo.ReleasePackage)2 MongoConstants (org.devgateway.ocds.persistence.mongo.constants.MongoConstants)2 CacheConfig (org.springframework.cache.annotation.CacheConfig)2 Cacheable (org.springframework.cache.annotation.Cacheable)2 Aggregation (org.springframework.data.mongodb.core.aggregation.Aggregation)2 Aggregation.group (org.springframework.data.mongodb.core.aggregation.Aggregation.group)2 Aggregation.match (org.springframework.data.mongodb.core.aggregation.Aggregation.match)2