Mock some API methods

This commit is contained in:
Michael Shamoon 2022-03-23 20:57:25 -07:00
parent 474050ba6b
commit 32a4587bd3
3 changed files with 55 additions and 17 deletions

View File

@ -1 +0,0 @@
{"count":1,"next":null,"previous":null,"results":[{"id":3,"correspondent":null,"document_type":1,"title":"lorem-ipsum","content":"Test document PDF","tags":[2],"created":"2022-03-24T07:24:18Z","modified":"2022-03-24T07:24:23.264859Z","added":"2022-03-24T07:24:22.922631Z","archive_serial_number":null,"original_file_name":"2022-03-24 lorem-ipsum.pdf","archived_file_name":"2022-03-24 lorem-ipsum.pdf"}]}

File diff suppressed because one or more lines are too long

View File

@ -1,17 +1,70 @@
describe('documents-list', () => { describe('documents-list', () => {
beforeEach(() => { beforeEach(() => {
cy.intercept('http://localhost:8000/api/documents/*', { this.bulkEdits = {}
fixture: 'documents/documents.json',
// mock API methods
cy.fixture('documents/documents.json').then((documentsJson) => {
// bulk edit
cy.intercept(
'POST',
'http://localhost:8000/api/documents/bulk_edit/',
(req) => {
this.bulkEdits = req.body // store this for later
req.reply({ result: 'OK' })
}
)
cy.intercept('GET', 'http://localhost:8000/api/documents/*', (req) => {
let response = { ...documentsJson }
// bulkEdits was set earlier by bulk_edit intercept
if (this.bulkEdits.hasOwnProperty('documents')) {
response.results = response.results.map((d) => {
if ((this.bulkEdits['documents'] as Array<number>).includes(d.id)) {
switch (this.bulkEdits['method']) {
case 'modify_tags':
d.tags = (d.tags as Array<number>).concat([
this.bulkEdits['parameters']['add_tags'],
])
break
case 'set_correspondent':
d.correspondent =
this.bulkEdits['parameters']['correspondent']
break
case 'set_document_type':
d.document_type =
this.bulkEdits['parameters']['document_type']
break
}
}
return d
})
} else if (req.query.hasOwnProperty('tags__id__all')) {
// filtering e.g. http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&tags__id__all=2
const tag_id = +req.query['tags__id__all']
response.results = (documentsJson.results as Array<any>).filter((d) =>
(d.tags as Array<number>).includes(tag_id)
)
response.count = response.results.length
}
req.reply(response)
})
}) })
cy.intercept('http://localhost:8000/api/documents/1/thumb/', { cy.intercept('http://localhost:8000/api/documents/1/thumb/', {
fixture: 'documents/lorem-ipsum.png', fixture: 'documents/lorem-ipsum.png',
}) })
cy.intercept('http://localhost:8000/api/tags/*', { cy.intercept('http://localhost:8000/api/tags/*', {
fixture: 'documents/tags.json', fixture: 'documents/tags.json',
}) })
cy.intercept('http://localhost:8000/api/correspondents/*', { cy.intercept('http://localhost:8000/api/correspondents/*', {
fixture: 'documents/correspondents.json', fixture: 'documents/correspondents.json',
}) })
cy.intercept('http://localhost:8000/api/document_types/*', { cy.intercept('http://localhost:8000/api/document_types/*', {
fixture: 'documents/doctypes.json', fixture: 'documents/doctypes.json',
}) })
@ -38,10 +91,6 @@ describe('documents-list', () => {
}) })
it('should filter tags', () => { it('should filter tags', () => {
// e.g. http://localhost:8000/api/documents/?page=1&page_size=50&ordering=-created&tags__id__all=2
cy.intercept('http://localhost:8000/api/documents/*', {
fixture: 'documents/documents_filtered.json',
})
cy.get('app-filter-editor app-filterable-dropdown[title="Tags"]').within( cy.get('app-filter-editor app-filterable-dropdown[title="Tags"]').within(
() => { () => {
cy.contains('button', 'Tags').click() cy.contains('button', 'Tags').click()
@ -52,9 +101,6 @@ describe('documents-list', () => {
}) })
it('should apply tags', () => { it('should apply tags', () => {
cy.intercept('http://localhost:8000/api/documents/*', {
fixture: 'documents/documents_saved.json',
})
cy.get('app-document-card-small:first-of-type').click() cy.get('app-document-card-small:first-of-type').click()
cy.get('app-bulk-editor app-filterable-dropdown[title="Tags"]').within( cy.get('app-bulk-editor app-filterable-dropdown[title="Tags"]').within(
() => { () => {
@ -68,9 +114,6 @@ describe('documents-list', () => {
}) })
it('should apply correspondent', () => { it('should apply correspondent', () => {
cy.intercept('http://localhost:8000/api/documents/*', {
fixture: 'documents/documents_saved.json',
})
cy.get('app-document-card-small:first-of-type').click() cy.get('app-document-card-small:first-of-type').click()
cy.get( cy.get(
'app-bulk-editor app-filterable-dropdown[title="Correspondent"]' 'app-bulk-editor app-filterable-dropdown[title="Correspondent"]'
@ -86,9 +129,6 @@ describe('documents-list', () => {
}) })
it('should apply document type', () => { it('should apply document type', () => {
cy.intercept('http://localhost:8000/api/documents/*', {
fixture: 'documents/documents_saved.json',
})
cy.get('app-document-card-small:first-of-type').click() cy.get('app-document-card-small:first-of-type').click()
cy.get( cy.get(
'app-bulk-editor app-filterable-dropdown[title="Document type"]' 'app-bulk-editor app-filterable-dropdown[title="Document type"]'