use of com.enonic.xp.content.FindContentByParentResult in project xp by enonic.
the class ContentServiceImplTest_findByParent method test_pending_publish_draft.
@Test
public void test_pending_publish_draft() throws Exception {
final FindContentByParentResult result = createAndFindContent(ContentPublishInfo.create().from(Instant.now().plus(Duration.ofDays(1))).build());
assertEquals(1, result.getTotalHits());
}
use of com.enonic.xp.content.FindContentByParentResult in project xp by enonic.
the class ContentServiceImplTest_findByParent method params_size_one.
@Test
public void params_size_one() throws Exception {
final Content parentContent = createContent(ContentPath.ROOT);
createContent(parentContent.getPath());
createContent(parentContent.getPath());
createContent(parentContent.getPath());
final ContentPath parentContentPath = parentContent.getPath();
this.nodeService.refresh(RefreshMode.SEARCH);
final FindContentByParentParams params = FindContentByParentParams.create().from(0).size(1).parentPath(parentContentPath).build();
final FindContentByParentResult result = contentService.findByParent(params);
assertNotNull(result);
assertEquals(1, result.getHits());
assertEquals(3, result.getTotalHits());
assertEquals(1, result.getContents().getSize());
}
use of com.enonic.xp.content.FindContentByParentResult in project xp by enonic.
the class ContentServiceImplTest_findByParent method root_children.
@Test
public void root_children() throws Exception {
final Content parentContent = createContent(ContentPath.ROOT);
final Content content1 = createContent(parentContent.getPath());
final Content content2 = createContent(parentContent.getPath());
final Content content3 = createContent(parentContent.getPath());
final ContentPath parentContentPath = parentContent.getPath();
this.nodeService.refresh(RefreshMode.SEARCH);
final FindContentByParentParams params = FindContentByParentParams.create().from(0).size(30).parentPath(parentContentPath).build();
final FindContentByParentResult result = contentService.findByParent(params);
assertNotNull(result);
assertEquals(3, result.getTotalHits());
}
use of com.enonic.xp.content.FindContentByParentResult in project xp by enonic.
the class ContentServiceImplTest_findByParent method test_published_master.
@Test
public void test_published_master() throws Exception {
authorizedMasterContext().callWith(() -> {
final FindContentByParentResult result = createAndFindContent(ContentPublishInfo.create().from(Instant.now().minus(Duration.ofDays(1))).to(Instant.now().plus(Duration.ofDays(1))).build());
assertEquals(1, result.getTotalHits());
return null;
});
}
use of com.enonic.xp.content.FindContentByParentResult in project xp by enonic.
the class ContentServiceImplTest_findByParent method root_no_content.
@Test
public void root_no_content() throws Exception {
final FindContentByParentParams params = FindContentByParentParams.create().from(0).size(30).parentPath(null).build();
final FindContentByParentResult result = contentService.findByParent(params);
assertNotNull(result);
assertEquals(0, result.getTotalHits());
}
Aggregations