Search in sources :

Example 21 with DtList

use of io.vertigo.dynamo.domain.model.DtList in project vertigo by KleeGroup.

the class AbstractSearchManagerTest method testSortedClusterByFacetTerm.

/**
 * Test le facettage par term d'une liste.
 */
@Test
public void testSortedClusterByFacetTerm() {
    index(true);
    final SearchQuery searchQuery = SearchQuery.builder(ListFilter.of("*:*")).withFacetClustering(manufacturerFacetDefinition).build();
    final DtListState listState = new DtListState(null, 0, itemIndexDefinition.getIndexDtDefinition().getField("YEAR").getName(), true);
    final FacetedQueryResult<Item, SearchQuery> result = searchManager.loadList(itemIndexDefinition, searchQuery, listState);
    // On vérifie qu'il existe une valeur pour chaque marques et que la première est bien la plus ancienne
    final Map<String, Set<Item>> databaseCluster = new HashMap<>();
    for (final Item item : itemDataBase.getAllItems()) {
        databaseCluster.computeIfAbsent(item.getManufacturer().toLowerCase(Locale.FRENCH), k -> new TreeSet<>((e1, e2) -> e2.getYear().compareTo(e1.getYear()))).add(item);
    }
    Assert.assertEquals(databaseCluster.size(), result.getClusters().size());
    for (final Entry<FacetValue, DtList<Item>> entry : result.getClusters().entrySet()) {
        final String searchFacetLabel = entry.getKey().getLabel().getDisplay().toLowerCase(Locale.FRENCH);
        final Item firstClusterItem = entry.getValue().get(0);
        final Set<Item> itemsByManufacturer = databaseCluster.get(searchFacetLabel);
        Assert.assertEquals(itemsByManufacturer.iterator().next().getId(), firstClusterItem.getId());
        for (final Item item : entry.getValue()) {
            Assert.assertEquals(searchFacetLabel, item.getManufacturer().toLowerCase(Locale.FRENCH));
        }
    }
}
Also used : SearchQuery(io.vertigo.dynamo.search.model.SearchQuery) ListFilter(io.vertigo.dynamo.collections.ListFilter) ItemSearchLoader(io.vertigo.dynamo.search.data.domain.ItemSearchLoader) URLDecoder(java.net.URLDecoder) BeforeClass(org.junit.BeforeClass) URL(java.net.URL) URI(io.vertigo.dynamo.domain.model.URI) DtObjectUtil(io.vertigo.dynamo.domain.util.DtObjectUtil) TimeoutException(java.util.concurrent.TimeoutException) HashMap(java.util.HashMap) Facet(io.vertigo.dynamo.collections.model.Facet) SearchIndexDefinition(io.vertigo.dynamo.search.metamodel.SearchIndexDefinition) TreeSet(java.util.TreeSet) ArrayList(java.util.ArrayList) Inject(javax.inject.Inject) FacetDefinition(io.vertigo.dynamo.collections.metamodel.FacetDefinition) Locale(java.util.Locale) Map(java.util.Map) SearchQuery(io.vertigo.dynamo.search.model.SearchQuery) ItemDataBase(io.vertigo.dynamo.search.data.domain.ItemDataBase) Item(io.vertigo.dynamo.search.data.domain.Item) FacetedQueryResult(io.vertigo.dynamo.collections.model.FacetedQueryResult) Set(java.util.Set) AbstractTestCaseJU4(io.vertigo.AbstractTestCaseJU4) Test(org.junit.Test) DefinitionSpace(io.vertigo.core.definition.DefinitionSpace) FacetedQueryDefinition(io.vertigo.dynamo.collections.metamodel.FacetedQueryDefinition) DtList(io.vertigo.dynamo.domain.model.DtList) SearchIndex(io.vertigo.dynamo.search.model.SearchIndex) Collectors(java.util.stream.Collectors) File(java.io.File) DtListState(io.vertigo.dynamo.domain.model.DtListState) SelectedFacetValues(io.vertigo.dynamo.collections.model.SelectedFacetValues) ExecutionException(java.util.concurrent.ExecutionException) TimeUnit(java.util.concurrent.TimeUnit) VUserException(io.vertigo.lang.VUserException) List(java.util.List) FacetedQuery(io.vertigo.dynamo.collections.model.FacetedQuery) Logger(org.apache.logging.log4j.Logger) Entry(java.util.Map.Entry) Assert(org.junit.Assert) LogManager(org.apache.logging.log4j.LogManager) FacetValue(io.vertigo.dynamo.collections.model.FacetValue) TreeSet(java.util.TreeSet) Set(java.util.Set) HashMap(java.util.HashMap) Item(io.vertigo.dynamo.search.data.domain.Item) FacetValue(io.vertigo.dynamo.collections.model.FacetValue) TreeSet(java.util.TreeSet) DtListState(io.vertigo.dynamo.domain.model.DtListState) DtList(io.vertigo.dynamo.domain.model.DtList) Test(org.junit.Test)

Example 22 with DtList

use of io.vertigo.dynamo.domain.model.DtList in project vertigo by KleeGroup.

the class AbstractSearchManagerTest method testClusterByFacetRange.

/**
 * Test le facettage par term d'une liste.
 */
@Test
public void testClusterByFacetRange() {
    index(true);
    final SearchQuery searchQuery = SearchQuery.builder(ListFilter.of("*:*")).withFacetClustering(// "avant 2000", "2000-2005", "après 2005"
    yearFacetDefinition).build();
    final FacetedQueryResult<Item, SearchQuery> result = searchManager.loadList(itemIndexDefinition, searchQuery, null);
    // On vérifie qu'il existe une valeur pour chaque marques et que le nombre d'occurrences est correct
    final Map<String, List<Item>> databaseCluster = new HashMap<>();
    databaseCluster.put(YearCluster.before2000.getLabel(), new ArrayList<>());
    databaseCluster.put(YearCluster.between2000and2005.getLabel(), new ArrayList<>());
    databaseCluster.put(YearCluster.after2005.getLabel(), new ArrayList<>());
    for (final Item item : itemDataBase.getAllItems()) {
        if (item.getYear() < 2000) {
            databaseCluster.get(YearCluster.before2000.getLabel()).add(item);
        } else if (item.getYear() < 2005) {
            databaseCluster.get(YearCluster.between2000and2005.getLabel()).add(item);
        } else {
            databaseCluster.get(YearCluster.after2005.getLabel()).add(item);
        }
    }
    Assert.assertEquals(databaseCluster.size(), result.getClusters().size());
    for (final Entry<FacetValue, DtList<Item>> entry : result.getClusters().entrySet()) {
        final String searchFacetLabel = entry.getKey().getLabel().getDisplay().toLowerCase(Locale.FRENCH);
        final int searchFacetCount = entry.getValue().size();
        final List<Item> itemsByYear = databaseCluster.get(searchFacetLabel);
        Assert.assertEquals(itemsByYear.size(), searchFacetCount);
        for (final Item item : entry.getValue()) {
            if (item.getYear() < 2000) {
                Assert.assertEquals(searchFacetLabel, YearCluster.before2000.getLabel());
            } else if (item.getYear() < 2005) {
                Assert.assertEquals(searchFacetLabel, YearCluster.between2000and2005.getLabel());
            } else {
                Assert.assertEquals(searchFacetLabel, YearCluster.after2005.getLabel());
            }
        }
    }
}
Also used : SearchQuery(io.vertigo.dynamo.search.model.SearchQuery) HashMap(java.util.HashMap) Item(io.vertigo.dynamo.search.data.domain.Item) FacetValue(io.vertigo.dynamo.collections.model.FacetValue) ArrayList(java.util.ArrayList) DtList(io.vertigo.dynamo.domain.model.DtList) List(java.util.List) DtList(io.vertigo.dynamo.domain.model.DtList) Test(org.junit.Test)

Example 23 with DtList

use of io.vertigo.dynamo.domain.model.DtList in project vertigo by KleeGroup.

the class AbstractSearchManagerTest method testClusterByFacetRangeVerySmallMaxRows.

/**
 * Test le facettage par term d'une liste.
 */
@Test
public void testClusterByFacetRangeVerySmallMaxRows() {
    index(true);
    final SearchQuery searchQuery = SearchQuery.builder(ListFilter.of("*:*")).withFacetClustering(// "avant 2000", "2000-2005", "après 2005"
    yearFacetDefinition).build();
    final FacetedQueryResult<Item, SearchQuery> result = searchManager.loadList(itemIndexDefinition, searchQuery, new DtListState(1, 0, null, null));
    // On vérifie qu'il existe une valeur pour chaque marques et que le nombre d'occurrences est correct
    final Map<String, List<Item>> databaseCluster = new HashMap<>();
    databaseCluster.put(YearCluster.before2000.getLabel(), new ArrayList<>());
    databaseCluster.put(YearCluster.between2000and2005.getLabel(), new ArrayList<>());
    databaseCluster.put(YearCluster.after2005.getLabel(), new ArrayList<>());
    for (final Item item : itemDataBase.getAllItems()) {
        if (item.getYear() < 2000) {
            databaseCluster.get(YearCluster.before2000.getLabel()).add(item);
        } else if (item.getYear() < 2005) {
            databaseCluster.get(YearCluster.between2000and2005.getLabel()).add(item);
        } else {
            databaseCluster.get(YearCluster.after2005.getLabel()).add(item);
        }
    }
    Assert.assertEquals(databaseCluster.size(), result.getClusters().size());
    for (final Entry<FacetValue, DtList<Item>> entry : result.getClusters().entrySet()) {
        final String searchFacetLabel = entry.getKey().getLabel().getDisplay().toLowerCase(Locale.FRENCH);
        final int searchFacetCount = entry.getValue().size();
        // result == listState.top (=1)
        Assert.assertEquals(1, searchFacetCount);
        for (final Item item : entry.getValue()) {
            if (item.getYear() < 2000) {
                Assert.assertEquals(searchFacetLabel, YearCluster.before2000.getLabel());
            } else if (item.getYear() < 2005) {
                Assert.assertEquals(searchFacetLabel, YearCluster.between2000and2005.getLabel());
            } else {
                Assert.assertEquals(searchFacetLabel, YearCluster.after2005.getLabel());
            }
        }
    }
}
Also used : SearchQuery(io.vertigo.dynamo.search.model.SearchQuery) HashMap(java.util.HashMap) Item(io.vertigo.dynamo.search.data.domain.Item) FacetValue(io.vertigo.dynamo.collections.model.FacetValue) DtListState(io.vertigo.dynamo.domain.model.DtListState) ArrayList(java.util.ArrayList) DtList(io.vertigo.dynamo.domain.model.DtList) List(java.util.List) DtList(io.vertigo.dynamo.domain.model.DtList) Test(org.junit.Test)

Example 24 with DtList

use of io.vertigo.dynamo.domain.model.DtList in project vertigo by KleeGroup.

the class VCollectorsTest method testFilterCollectDtList.

/**
 * Test du VCollectors.toDtList sur une liste non vide avec filtrage
 */
@Test
public void testFilterCollectDtList() {
    final Artist m1 = createArtist(1, "Louis Armstrong");
    final Artist m2 = createArtist(2, "Duke Ellington");
    final Artist m3 = createArtist(3, "Jimmy Hendricks");
    final DtList<Artist> dtList = DtList.of(m1, m2, m3);
    // @formatter:off
    final DtList<Artist> listCollected = dtList.stream().filter(m -> m.getId() % 2 == 0).collect(VCollectors.toDtList(Artist.class));
    // @formatter:on
    assertNotNull(listCollected);
    Assert.assertFalse(listCollected.isEmpty());
    assertEquals(1, listCollected.size());
    assertEquals(listCollected.get(0), m2);
    assertEquals(3, dtList.size());
}
Also used : Artist(io.vertigo.dynamo.domain.data.domain.Artist) Assert.assertNotNull(org.junit.Assert.assertNotNull) Assert.assertTrue(org.junit.Assert.assertTrue) AbstractTestCaseJU4(io.vertigo.AbstractTestCaseJU4) Test(org.junit.Test) DtList(io.vertigo.dynamo.domain.model.DtList) Assert(org.junit.Assert) Assert.assertEquals(org.junit.Assert.assertEquals) Artist(io.vertigo.dynamo.domain.data.domain.Artist) Test(org.junit.Test)

Example 25 with DtList

use of io.vertigo.dynamo.domain.model.DtList in project vertigo by KleeGroup.

the class VCollectorsTest method testCollectDtList.

/**
 * Test du VCollectors.toDtList sur une liste non vide sans filtrage
 */
@Test
public void testCollectDtList() {
    final Artist m1 = createArtist(1, "David Bowie");
    final Artist m2 = createArtist(2, "Joe Strummer");
    final DtList<Artist> dtList = DtList.of(m1, m2);
    // @formatter:off
    final DtList<Artist> listCollected = dtList.stream().sorted((art1, art2) -> art1.getId().compareTo(art2.getId())).collect(VCollectors.toDtList(Artist.class));
    // @formatter:on
    assertNotNull(listCollected);
    assertTrue(listCollected.isEmpty() == false);
    assertEquals(2, listCollected.size());
    assertEquals(listCollected.get(0), m1);
    assertEquals(listCollected.get(1), m2);
    assertEquals(2, dtList.size());
}
Also used : Artist(io.vertigo.dynamo.domain.data.domain.Artist) Assert.assertNotNull(org.junit.Assert.assertNotNull) Assert.assertTrue(org.junit.Assert.assertTrue) AbstractTestCaseJU4(io.vertigo.AbstractTestCaseJU4) Test(org.junit.Test) DtList(io.vertigo.dynamo.domain.model.DtList) Assert(org.junit.Assert) Assert.assertEquals(org.junit.Assert.assertEquals) Artist(io.vertigo.dynamo.domain.data.domain.Artist) Test(org.junit.Test)

Aggregations

DtList (io.vertigo.dynamo.domain.model.DtList)49 Test (org.junit.Test)21 FacetValue (io.vertigo.dynamo.collections.model.FacetValue)16 HashMap (java.util.HashMap)14 DtField (io.vertigo.dynamo.domain.metamodel.DtField)13 ArrayList (java.util.ArrayList)13 List (java.util.List)12 Facet (io.vertigo.dynamo.collections.model.Facet)8 FacetedQuery (io.vertigo.dynamo.collections.model.FacetedQuery)8 SearchQuery (io.vertigo.dynamo.search.model.SearchQuery)8 TaskDefinition (io.vertigo.dynamo.task.metamodel.TaskDefinition)8 Task (io.vertigo.dynamo.task.model.Task)8 Map (java.util.Map)8 FacetDefinition (io.vertigo.dynamo.collections.metamodel.FacetDefinition)7 FacetedQueryResult (io.vertigo.dynamo.collections.model.FacetedQueryResult)7 URI (io.vertigo.dynamo.domain.model.URI)7 LinkedHashMap (java.util.LinkedHashMap)7 AbstractTestCaseJU4 (io.vertigo.AbstractTestCaseJU4)6 VTransactionWritable (io.vertigo.commons.transaction.VTransactionWritable)5 ListFilter (io.vertigo.dynamo.collections.ListFilter)5