Add test
This commit is contained in:
parent
1beda55f27
commit
e11a785f81
@ -22,8 +22,8 @@ function contextFactory(query: Request['query']): Partial<ExecutionContext> {
|
||||
Object({
|
||||
protocol: 'http',
|
||||
get: () => 'localhost',
|
||||
baseUrl: '/items',
|
||||
path: '/all',
|
||||
baseUrl: '',
|
||||
path: '/items',
|
||||
query: query,
|
||||
}),
|
||||
}),
|
||||
@ -41,7 +41,7 @@ describe('Decorator', () => {
|
||||
page: undefined,
|
||||
limit: undefined,
|
||||
sortBy: undefined,
|
||||
path: 'http://localhost/items/all',
|
||||
path: 'http://localhost/items',
|
||||
})
|
||||
})
|
||||
|
||||
@ -61,7 +61,7 @@ describe('Decorator', () => {
|
||||
['id', 'ASC'],
|
||||
['createdAt', 'DESC'],
|
||||
],
|
||||
path: 'http://localhost/items/all',
|
||||
path: 'http://localhost/items',
|
||||
})
|
||||
})
|
||||
})
|
||||
|
@ -79,7 +79,7 @@ describe('paginate', () => {
|
||||
expect(links.last).toBe('?page=3&limit=2&sortBy=id:ASC')
|
||||
})
|
||||
|
||||
it('should default to defaultOrderby if query sortBy does not exist', async () => {
|
||||
it('should default to defaultSortBy if query sortBy does not exist', async () => {
|
||||
const config: PaginateConfig<CatEntity> = {
|
||||
sortableColumns: ['id', 'createdAt'],
|
||||
defaultSortBy: [['createdAt', 'DESC']],
|
||||
@ -93,6 +93,26 @@ describe('paginate', () => {
|
||||
expect(results.meta.sortBy).toStrictEqual([['createdAt', 'DESC']])
|
||||
})
|
||||
|
||||
it('should accept multiple columns to sort', async () => {
|
||||
const config: PaginateConfig<CatEntity> = {
|
||||
sortableColumns: ['id', 'createdAt'],
|
||||
}
|
||||
const query: PaginateQuery = {
|
||||
path: '',
|
||||
sortBy: [
|
||||
['createdAt', 'DESC'],
|
||||
['id', 'ASC'],
|
||||
],
|
||||
}
|
||||
|
||||
const { meta } = await paginate<CatEntity>(query, repo, config)
|
||||
|
||||
expect(meta.sortBy).toStrictEqual([
|
||||
['createdAt', 'DESC'],
|
||||
['id', 'ASC'],
|
||||
])
|
||||
})
|
||||
|
||||
it('should throw an error when no sortableColumns', async () => {
|
||||
const config: PaginateConfig<CatEntity> = {
|
||||
sortableColumns: [],
|
||||
|
Loading…
Reference in New Issue
Block a user