本文整理汇总了TypeScript中test/common/checks/not-defendant-in-case-check.checkNotDefendantInCaseGuard函数的典型用法代码示例。如果您正苦于以下问题:TypeScript checkNotDefendantInCaseGuard函数的具体用法?TypeScript checkNotDefendantInCaseGuard怎么用?TypeScript checkNotDefendantInCaseGuard使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了checkNotDefendantInCaseGuard函数的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: describe
describe('on POST', () => {
const method = 'post'
checkAuthorizationGuards(app, method, pagePath)
checkNotDefendantInCaseGuard(app, method, pagePath)
describe('when user authorised', () => {
beforeEach(() => {
idamServiceMock.resolveRetrieveUserFor('1', 'citizen')
})
it('should redirect to task list page when court offer is accepted', async () => {
claimStoreServiceMock.resolveRetrieveClaimByExternalId(defendantFullAdmissionResponse)
draftStoreServiceMock.resolveFind('claimantResponse', draftOverrideForClaimantReponse)
draftStoreServiceMock.resolveSave()
await request(app)
.post(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.send({ accept: 'yes' })
.expect(res => expect(res).to.be.redirect.toLocation(taskListPagePath))
})
it('should redirect to rejection reason page when court offer is rejected', async () => {
claimStoreServiceMock.resolveRetrieveClaimByExternalId(defendantFullAdmissionResponse)
draftStoreServiceMock.resolveFind('claimantResponse', draftOverrideForClaimantReponse)
draftStoreServiceMock.resolveSave()
await request(app)
.post(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.send({ accept: 'no' })
.expect(res => expect(res).to.be.redirect.toLocation(rejectionReasonPagePath))
})
})
})
示例2: describe
describe('on GET', () => {
const method = 'get'
checkAuthorizationGuards(app, method, pagePath)
checkNotDefendantInCaseGuard(app, method, pagePath)
describe('for authorized user', () => {
beforeEach(() => {
idamServiceMock.resolveRetrieveUserFor(claimStoreServiceMock.sampleClaimObj.defendantId, 'citizen')
})
checkCountyCourtJudgmentRequestedGuard(app, method, pagePath)
it('should return 500 and render error page when cannot retrieve claim', async () => {
claimStoreServiceMock.rejectRetrieveClaimByExternalId('HTTP error')
await request(app)
.get(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.expect(res => expect(res).to.be.serverError.withText('Error'))
})
it('should render page when everything is fine', async () => {
draftStoreServiceMock.resolveFind('response')
claimStoreServiceMock.resolveRetrieveClaimByExternalId()
feesServiceMock.resolveGetIssueFeeRangeGroup()
feesServiceMock.resolveGetHearingFeeRangeGroup()
await request(app)
.get(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.expect(res => expect(res).to.successful.withText('Complete and email the defence and counterclaim form by'))
})
})
})
示例3: describe
describe('on GET', () => {
const method = 'get'
checkAuthorizationGuards(app, method, pagePath)
checkNotDefendantInCaseGuard(app, method, pagePath)
context('when user authorised', () => {
beforeEach(() => {
idamServiceMock.resolveRetrieveUserFor(claimStoreServiceMock.sampleClaimObj.defendantId, 'citizen')
})
checkAlreadySubmittedGuard(app, method, pagePath)
checkCountyCourtJudgmentRequestedGuard(app, method, pagePath)
context('when response not submitted', () => {
it('should return 500 and render error page when cannot retrieve claim', async () => {
claimStoreServiceMock.rejectRetrieveClaimByExternalId('HTTP error')
await request(app)
.get(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.expect(res => expect(res).to.be.serverError.withText('Error'))
})
it('should render page when everything is fine', async () => {
draftStoreServiceMock.resolveFind('response')
claimStoreServiceMock.resolveRetrieveClaimByExternalId()
await request(app)
.get(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.expect(res => expect(res).to.be.successful.withText('Free mediation'))
})
})
})
})
示例4: describe
describe('on GET', () => {
const method = 'get'
checkAuthorizationGuards(app, method, pagePath)
checkNotDefendantInCaseGuard(app, method, pagePath)
describe('for authorized user', () => {
beforeEach(() => {
idamServiceMock.resolveRetrieveUserFor(claimStoreServiceMock.sampleClaimObj.defendantId, 'citizen')
})
checkCountyCourtJudgmentRequestedGuard(app, method, pagePath)
it('should render page when everything is fine', async () => {
claimStoreServiceMock.resolveRetrieveClaimByExternalIdWithResponse()
await request(app)
.get(ResponsePaths.confirmationPage.evaluateUri({ externalId: claimStoreServiceMock.sampleClaimObj.externalId }))
.set('Cookie', `${cookieName}=ABC`)
.expect(res => expect(res).to.be.successful.withText('Youâve submitted your response'))
})
it('should return 500 and render error page when cannot retrieve claim', async () => {
claimStoreServiceMock.rejectRetrieveClaimByExternalId('internal service error when retrieving response')
await request(app)
.get(ResponsePaths.confirmationPage.evaluateUri({ externalId: claimStoreServiceMock.sampleClaimObj.externalId }))
.set('Cookie', `${cookieName}=ABC`)
.expect(res => expect(res).to.be.serverError.withText('Error'))
})
})
})
示例5: describe
describe('on GET', () => {
const method = 'get'
checkNotDefendantInCaseGuard(app, method, pagePath)
describe('for authorized user', () => {
beforeEach(() => {
idamServiceMock.resolveRetrieveUserFor(claimStoreServiceMock.sampleClaimObj.defendantId, 'citizen')
})
checkCountyCourtJudgmentRequestedGuard(app, method, pagePath)
})
it('should render page when everything is fine', async () => {
idamServiceMock.resolveRetrieveUserFor(claimStoreServiceMock.sampleClaimObj.defendantId, 'citizen')
draftStoreServiceMock.resolveFind('response')
draftStoreServiceMock.resolveFind('mediation')
claimStoreServiceMock.resolveRetrieveClaimByExternalId()
await request(app)
.get(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.expect(res => expect(res).to.be.successful
.withText('You need to complete all sections before you submit your response'))
})
})
示例6: describe
describe('on POST', () => {
const method = 'post'
checkAuthorizationGuards(app, method, pagePath)
checkNotDefendantInCaseGuard(app, method, pagePath)
context('when user authorised', () => {
beforeEach(() => {
idamServiceMock.resolveRetrieveUserFor(claimStoreServiceMock.sampleClaimObj.defendantId, 'citizen')
})
checkAlreadySubmittedGuard(app, method, pagePath)
checkCountyCourtJudgmentRequestedGuard(app, method, pagePath)
context('when response not submitted', () => {
beforeEach(() => {
claimStoreServiceMock.resolveRetrieveClaimByExternalId()
})
context('when form is invalid', () => {
it('should render page when everything is fine', async () => {
draftStoreServiceMock.resolveFind('response')
await request(app)
.post(pagePath)
.send({ type: 'individual' })
.set('Cookie', `${cookieName}=ABC`)
.expect(res => expect(res).to.be.successful.withText('Confirm your details', 'div class="error-summary"'))
})
})
context('when form is valid', () => {
it('should return 500 and render error page when cannot save draft', async () => {
draftStoreServiceMock.resolveFind('response')
draftStoreServiceMock.rejectSave()
await request(app)
.post(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.send({ type: 'individual', name: 'John Smith', address: { line1: 'Apartment 99', line2: '', line3: '', city: 'London', postcode: 'E10AA' } })
.expect(res => expect(res).to.be.serverError.withText('Error'))
})
it('should redirect to your address page when everything is fine', async () => {
draftStoreServiceMock.resolveFind('response')
draftStoreServiceMock.resolveSave()
await request(app)
.post(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.send({ type: 'individual', name: 'John Smith', address: { line1: 'Apartment 99', line2: '', line3: '', city: 'London', postcode: 'E10AA' } })
.expect(res => expect(res).to.be.redirect
.toLocation(ResponsePaths.defendantDateOfBirthPage
.evaluateUri({ externalId: claimStoreServiceMock.sampleClaimObj.externalId })))
})
})
})
})
})
示例7: describe
describe('on POST', () => {
const method = 'post'
checkAuthorizationGuards(app, method, pagePath)
checkNotDefendantInCaseGuard(app, method, pagePath)
describe('for authorized user', () => {
beforeEach(() => {
idamServiceMock.resolveRetrieveUserFor(claimStoreServiceMock.sampleClaimObj.defendantId, 'citizen')
})
checkAlreadySubmittedGuard(app, method, pagePath)
checkCountyCourtJudgmentRequestedGuard(app, method, pagePath)
describe('errors are handled properly', () => {
it('should return 500 and render error page when cannot retrieve claim', async () => {
claimStoreServiceMock.rejectRetrieveClaimByExternalId('HTTP error')
await request(app)
.post(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.expect(res => expect(res).to.be.serverError.withText('Error'))
})
it('should return 500 and render error page when cannot retrieve draft', async () => {
claimStoreServiceMock.resolveRetrieveClaimByExternalId()
draftStoreServiceMock.rejectFind('Error')
await request(app)
.post(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.expect(res => expect(res).to.be.serverError.withText('Error'))
})
})
describe('update', () => {
it('should update draft store and redirect', async () => {
claimStoreServiceMock.resolveRetrieveClaimByExternalId()
draftStoreServiceMock.resolveFind('response:full-admission', draftOverride)
draftStoreServiceMock.resolveSave()
await request(app)
.post(pagePath)
.send({ jobTitle: 'my role', annualTurnover: 10, areYouBehindOnTax: false })
.set('Cookie', `${cookieName}=ABC`)
.expect(res => expect(res).to.be.redirect
.toLocation(StatementOfMeansPaths.onTaxPaymentsPage.evaluateUri(
{ externalId: claimStoreServiceMock.sampleClaimObj.externalId })
)
)
})
})
})
})
示例8: describe
describe('on POST', () => {
const method = 'post'
checkAuthorizationGuards(app, method, pagePath)
checkNotDefendantInCaseGuard(app, method, pagePath)
context('when user authorised', () => {
beforeEach(() => {
idamServiceMock.resolveRetrieveUserFor(claimStoreServiceMock.sampleClaimObj.defendantId, 'citizen')
})
checkAlreadySubmittedGuard(app, method, pagePath)
checkCountyCourtJudgmentRequestedGuard(app, method, pagePath)
context('when response not submitted', () => {
beforeEach(() => {
claimStoreServiceMock.resolveRetrieveClaimByExternalId()
})
context('when form is invalid', () => {
it('should render page when everything is fine', async () => {
draftStoreServiceMock.resolveFind('response')
await request(app)
.post(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.expect(res => expect(res).to.be.successful.withText(headerText, 'div class="error-summary"'))
})
})
context('when form is valid', () => {
it('should return 500 and render error page when cannot save draft', async () => {
draftStoreServiceMock.resolveFind('response')
draftStoreServiceMock.rejectSave()
await request(app)
.post(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.send({ number: '07123456789' })
.expect(res => expect(res).to.be.serverError.withText('Error'))
})
it('should redirect to task list page when everything is fine', async () => {
draftStoreServiceMock.resolveFind('response')
draftStoreServiceMock.resolveSave()
await request(app)
.post(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.send({ number: '07123456789' })
.expect(res => expect(res).to.be.redirect
.toLocation(ResponsePaths.taskListPage
.evaluateUri({ externalId: claimStoreServiceMock.sampleClaimObj.externalId })))
})
})
})
})
})
示例9: describe
describe('on GET', () => {
const method = 'get'
checkAuthorizationGuards(app, method, pagePath)
checkNotDefendantInCaseGuard(app, method, pagePath)
describe('for authorized user', () => {
beforeEach(() => {
idamServiceMock.resolveRetrieveUserFor(claimStoreServiceMock.sampleClaimObj.defendantId, 'citizen')
})
it('should render page when everything is fine', async () => {
claimStoreServiceMock.resolveRetrieveClaimByExternalId()
draftStoreServiceMock.resolveFindNoDraftFound()
await request(app)
.get(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.expect(res => expect(res).to.be.successful.withText('Claim details'))
})
it('should return 500 and render error page when cannot retrieve claim', async () => {
claimStoreServiceMock.rejectRetrieveClaimByExternalId('internal service error when retrieving response')
await request(app)
.get(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.expect(res => expect(res).to.be.serverError.withText('Error'))
})
it('should include evidence section when evidence was provided', async () => {
claimStoreServiceMock.resolveRetrieveClaimByExternalId({
claim: {
...claimStoreServiceMock.sampleClaimObj.claim,
evidence: { rows: [{ type: EvidenceType.PHOTO.value, description: 'my photo evidence' }] }
}
})
draftStoreServiceMock.resolveFindNoDraftFound()
await request(app)
.get(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.expect(res => expect(res).to.be.successful.withText('Evidence'))
})
it('should not include evidence section when evidence was not provided', async () => {
claimStoreServiceMock.resolveRetrieveClaimByExternalId(
{ claim: { ...claimStoreServiceMock.sampleClaimObj.claim, evidence: null } })
draftStoreServiceMock.resolveFindNoDraftFound()
await request(app)
.get(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.expect(res => expect(res).to.be.successful.withoutText('Evidence'))
})
})
})
示例10: describe
describe('on POST', () => {
const method = 'post'
checkAuthorizationGuards(app, method, pagePath)
checkNotDefendantInCaseGuard(app, method, pagePath)
context('when user authorised', () => {
beforeEach(() => {
idamServiceMock.resolveRetrieveUserFor(claimStoreServiceMock.sampleClaimObj.defendantId, 'citizen')
})
checkAlreadySubmittedGuard(app, method, pagePath)
checkCountyCourtJudgmentRequestedGuard(app, method, pagePath)
context('when response not submitted', () => {
describe('should redirect to request more time page', () => {
it('when no option is selected', async () => {
draftStoreServiceMock.resolveFind('response', { moreTimeNeeded: { option: undefined } })
claimStoreServiceMock.resolveRetrieveClaimByExternalId()
await request(app)
.post(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.expect(res => expect(res).to.redirect
.toLocation(ResponsePaths.moreTimeRequestPage
.evaluateUri({ externalId: claimStoreServiceMock.sampleClaimObj.externalId })))
})
it('when answer is "no', async () => {
draftStoreServiceMock.resolveFind('response', { moreTimeNeeded: { option: MoreTimeNeededOption.NO } })
claimStoreServiceMock.resolveRetrieveClaimByExternalId()
await request(app)
.post(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.expect(res => expect(res).to.redirect
.toLocation(ResponsePaths.moreTimeRequestPage
.evaluateUri({ externalId: claimStoreServiceMock.sampleClaimObj.externalId })))
})
})
it('should redirect to task list page when "yes" selected and everything is fine', async () => {
claimStoreServiceMock.resolveRetrieveClaimByExternalId({ moreTimeRequested: true })
draftStoreServiceMock.resolveFind('response', { moreTimeNeeded: { option: MoreTimeNeededOption.YES } })
await request(app)
.post(pagePath)
.set('Cookie', `${cookieName}=ABC`)
.expect(res => expect(res).to.redirect
.toLocation(ResponsePaths.taskListPage
.evaluateUri({ externalId: claimStoreServiceMock.sampleClaimObj.externalId })))
})
})
})
})