test improvements
This commit is contained in:
parent
f5eabdca3c
commit
c3b608492a
@ -149,16 +149,16 @@ public class AbstractChunkedAggregationTimeseriesDaoTest {
|
|||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void givenZeroInterval_whenAggregateCount_thenFindAllWithoutAggregation() {
|
public void givenZeroInterval_whenAggregateCount_thenFindAllWithoutAggregation() {
|
||||||
ReadTsKvQuery query = new BaseReadTsKvQuery(TEMP, 1, 3000, 0, LIMIT, COUNT, DESC);
|
givenInterval_whenAggregateCount_thenFindAllWithoutAggregation(0);
|
||||||
willCallRealMethod().given(tsDao).findAllAsync(SYS_TENANT_ID, SYS_TENANT_ID, query);
|
|
||||||
tsDao.findAllAsync(SYS_TENANT_ID, SYS_TENANT_ID, query);
|
|
||||||
verify(tsDao, times(1)).findAllAsyncWithLimit(any(), any());
|
|
||||||
verify(tsDao, times(0)).findAndAggregateAsync(any(), any(), anyLong(), anyLong(), anyLong(), any());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void givenNegativeInterval_whenAggregateCount_thenFindAllWithoutAggregation() {
|
public void givenNegativeInterval_whenAggregateCount_thenFindAllWithoutAggregation() {
|
||||||
ReadTsKvQuery query = new BaseReadTsKvQuery(TEMP, 1, 3000, 0, LIMIT, COUNT, DESC);
|
givenInterval_whenAggregateCount_thenFindAllWithoutAggregation(-1);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void givenInterval_whenAggregateCount_thenFindAllWithoutAggregation(int interval) {
|
||||||
|
ReadTsKvQuery query = new BaseReadTsKvQuery(TEMP, 1, 3000, interval, LIMIT, COUNT, DESC);
|
||||||
willCallRealMethod().given(tsDao).findAllAsync(SYS_TENANT_ID, SYS_TENANT_ID, query);
|
willCallRealMethod().given(tsDao).findAllAsync(SYS_TENANT_ID, SYS_TENANT_ID, query);
|
||||||
tsDao.findAllAsync(SYS_TENANT_ID, SYS_TENANT_ID, query);
|
tsDao.findAllAsync(SYS_TENANT_ID, SYS_TENANT_ID, query);
|
||||||
verify(tsDao, times(1)).findAllAsyncWithLimit(any(), any());
|
verify(tsDao, times(1)).findAllAsyncWithLimit(any(), any());
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user