2020-06-26 21:25:03 +00:00
|
|
|
import { ROUTE_ARGS_METADATA } from '@nestjs/common/constants'
|
|
|
|
import { HttpArgumentsHost, CustomParamFactory, ExecutionContext } from '@nestjs/common/interfaces'
|
|
|
|
import { Request } from 'express'
|
|
|
|
import { Paginate, PaginateQuery } from './decorator'
|
|
|
|
|
|
|
|
function getParamDecoratorFactory<T>(decorator: Function): CustomParamFactory {
|
|
|
|
class Test {
|
|
|
|
public test(@decorator() _value: T): void {
|
|
|
|
//
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const args = Reflect.getMetadata(ROUTE_ARGS_METADATA, Test, 'test')
|
|
|
|
return args[Object.keys(args)[0]].factory
|
|
|
|
}
|
|
|
|
const decoratorfactory = getParamDecoratorFactory<PaginateQuery>(Paginate)
|
|
|
|
|
|
|
|
function contextFactory(query: Request['query']): Partial<ExecutionContext> {
|
|
|
|
const mockContext: Partial<ExecutionContext> = {
|
|
|
|
switchToHttp: (): HttpArgumentsHost =>
|
|
|
|
Object({
|
|
|
|
getRequest: (): Partial<Request> =>
|
|
|
|
Object({
|
|
|
|
protocol: 'http',
|
|
|
|
get: () => 'localhost',
|
2020-06-27 18:54:14 +00:00
|
|
|
baseUrl: '',
|
|
|
|
path: '/items',
|
2020-06-26 21:25:03 +00:00
|
|
|
query: query,
|
|
|
|
}),
|
|
|
|
}),
|
|
|
|
}
|
|
|
|
return mockContext
|
|
|
|
}
|
|
|
|
|
|
|
|
describe('Decorator', () => {
|
|
|
|
it('should handle undefined query fields', () => {
|
|
|
|
const context = contextFactory({})
|
|
|
|
|
|
|
|
const result: PaginateQuery = decoratorfactory(null, context)
|
|
|
|
|
|
|
|
expect(result).toStrictEqual({
|
|
|
|
page: undefined,
|
|
|
|
limit: undefined,
|
|
|
|
sortBy: undefined,
|
2020-06-27 18:54:14 +00:00
|
|
|
path: 'http://localhost/items',
|
2020-06-26 21:25:03 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should handle defined query fields', () => {
|
|
|
|
const context = contextFactory({
|
|
|
|
page: '1',
|
|
|
|
limit: '20',
|
|
|
|
sortBy: ['id:ASC', 'createdAt:DESC'],
|
|
|
|
})
|
|
|
|
|
|
|
|
const result: PaginateQuery = decoratorfactory(null, context)
|
|
|
|
|
|
|
|
expect(result).toStrictEqual({
|
|
|
|
page: 1,
|
|
|
|
limit: 20,
|
|
|
|
sortBy: [
|
|
|
|
['id', 'ASC'],
|
|
|
|
['createdAt', 'DESC'],
|
|
|
|
],
|
2020-06-27 18:54:14 +00:00
|
|
|
path: 'http://localhost/items',
|
2020-06-26 21:25:03 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|