Search in sources :

Example 1 with PagerParams

use of org.summerb.easycrud.api.dto.PagerParams in project summerb by skarpushin.

the class GenericCrudServiceTestTemplate method testQuery_expectPaginationWorksCorrectly.

@Test
public void testQuery_expectPaginationWorksCorrectly() throws Exception {
    createTestData();
    PaginatedList<TestDto1> result = getTestDto1Service().query(new PagerParams(0, 2), Query.n().contains("env", "env-"));
    assertEquals(3, result.getTotalResults());
    assertEquals(2, result.getItems().size());
}
Also used : PagerParams(org.summerb.easycrud.api.dto.PagerParams) Test(org.junit.Test)

Example 2 with PagerParams

use of org.summerb.easycrud.api.dto.PagerParams in project summerb by skarpushin.

the class GenericCrudServiceTestTemplate method testFindByQueryOr.

@Test
public void testFindByQueryOr() throws Exception {
    createTestData();
    PaginatedList<TestDto1> result = getTestDto1Service().query(new PagerParams(0, 100), Query.n().eq("majorVersion", 3L).or(Query.n().eq("minorVersion", 4L), Query.n().eq("minorVersion", 5L)));
    assertEquals(2, result.getTotalResults());
}
Also used : PagerParams(org.summerb.easycrud.api.dto.PagerParams) Test(org.junit.Test)

Example 3 with PagerParams

use of org.summerb.easycrud.api.dto.PagerParams in project summerb by skarpushin.

the class GenericCrudServiceTestTemplate method testFindByQueryContains.

@Test
public void testFindByQueryContains() throws Exception {
    createTestData();
    PaginatedList<TestDto1> result = getTestDto1Service().query(new PagerParams(0, 100), Query.n().contains("env", "env-p"));
    assertEquals(2, result.getTotalResults());
}
Also used : PagerParams(org.summerb.easycrud.api.dto.PagerParams) Test(org.junit.Test)

Example 4 with PagerParams

use of org.summerb.easycrud.api.dto.PagerParams in project summerb by skarpushin.

the class GenericCrudServiceTestTemplate method testFindByQueryBooleanFalse.

@Test
public void testFindByQueryBooleanFalse() throws Exception {
    createTestData();
    PaginatedList<TestDto1> result = getTestDto1Service().query(new PagerParams(0, 100), Query.n().isFalse("active"));
    assertEquals(1, result.getTotalResults());
    result = getTestDto1Service().query(new PagerParams(0, 100), Query.n().ne("active", true));
    assertEquals(1, result.getTotalResults());
}
Also used : PagerParams(org.summerb.easycrud.api.dto.PagerParams) Test(org.junit.Test)

Example 5 with PagerParams

use of org.summerb.easycrud.api.dto.PagerParams in project summerb by skarpushin.

the class GenericCrudServiceTestTemplate method testFindByQueryBetween.

@Test
public void testFindByQueryBetween() throws Exception {
    createTestData();
    PaginatedList<TestDto1> result = getTestDto1Service().query(new PagerParams(0, 100), Query.n().between("minorVersion", 4, 5));
    assertEquals(2, result.getTotalResults());
}
Also used : PagerParams(org.summerb.easycrud.api.dto.PagerParams) Test(org.junit.Test)

Aggregations

PagerParams (org.summerb.easycrud.api.dto.PagerParams)31 Test (org.junit.Test)27 PaginatedList (org.summerb.easycrud.api.dto.PaginatedList)6 EasyCrudService (org.summerb.easycrud.api.EasyCrudService)3 Query (org.summerb.easycrud.api.query.Query)3 User (org.summerb.users.api.dto.User)3 TestDto1 (integr.org.summerb.easycrud.TestDto1)2 HasId (org.summerb.easycrud.api.dto.HasId)2 AliasEntry (org.summerb.properties.impl.dao.AliasEntry)2 ArrayList (java.util.ArrayList)1 LinkedList (java.util.LinkedList)1 Entry (java.util.Map.Entry)1 InvocationOnMock (org.mockito.invocation.InvocationOnMock)1 RequestMapping (org.springframework.web.bind.annotation.RequestMapping)1 ModelAndView (org.springframework.web.servlet.ModelAndView)1 Attachment (org.summerb.minicms.api.dto.Attachment)1 PropertyServiceUnexpectedException (org.summerb.properties.api.exceptions.PropertyServiceUnexpectedException)1 StringIdAliasDao (org.summerb.properties.impl.dao.StringIdAliasDao)1 AuthToken (org.summerb.users.api.dto.AuthToken)1 AuthTokenDao (org.summerb.users.impl.dao.AuthTokenDao)1