| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395 |
- import mongodb from 'mongodb-legacy'
- import DocstoreApp from './helpers/DocstoreApp.js'
- import DocstoreClient from './helpers/DocstoreClient.js'
- const { ObjectId } = mongodb
- describe('Applying updates to a doc', function () {
- beforeEach(async function () {
- this.project_id = new ObjectId()
- this.doc_id = new ObjectId()
- this.originalLines = ['original', 'lines', '$1.00', '$foo']
- this.newLines = ['new', 'lines', '$2.00', '$bar']
- this.originalRanges = {
- changes: [
- {
- id: new ObjectId().toString(),
- op: { i: '$foo', p: 3 },
- meta: {
- user_id: new ObjectId().toString(),
- ts: new Date().toString(),
- },
- },
- ],
- }
- this.newRanges = {
- changes: [
- {
- id: new ObjectId().toString(),
- op: { i: '$bar', p: 6 },
- meta: {
- user_id: new ObjectId().toString(),
- ts: new Date().toString(),
- },
- },
- ],
- }
- this.version = 42
- await DocstoreApp.ensureRunning()
- await DocstoreClient.createDoc(
- this.project_id,
- this.doc_id,
- this.originalLines,
- this.version,
- this.originalRanges
- )
- })
- describe('when nothing has been updated', function () {
- beforeEach(async function () {
- this.body = await DocstoreClient.updateDoc(
- this.project_id,
- this.doc_id,
- this.originalLines,
- this.version,
- this.originalRanges
- )
- })
- it('should return modified = false', function () {
- this.body.modified.should.equal(false)
- })
- it('should not update the doc in the API', async function () {
- const doc = await DocstoreClient.getDoc(this.project_id, this.doc_id)
- doc.lines.should.deep.equal(this.originalLines)
- doc.version.should.equal(this.version)
- doc.ranges.should.deep.equal(this.originalRanges)
- })
- })
- describe('when the lines have changed', function () {
- beforeEach(async function () {
- this.body = await DocstoreClient.updateDoc(
- this.project_id,
- this.doc_id,
- this.newLines,
- this.version,
- this.originalRanges
- )
- })
- it('should return modified = true', function () {
- this.body.modified.should.equal(true)
- })
- it('should return the rev', function () {
- this.body.rev.should.equal(2)
- })
- it('should update the doc in the API', async function () {
- const doc = await DocstoreClient.getDoc(this.project_id, this.doc_id)
- doc.lines.should.deep.equal(this.newLines)
- doc.version.should.equal(this.version)
- doc.ranges.should.deep.equal(this.originalRanges)
- })
- })
- describe('when the version has changed', function () {
- beforeEach(async function () {
- this.body = await DocstoreClient.updateDoc(
- this.project_id,
- this.doc_id,
- this.originalLines,
- this.version + 1,
- this.originalRanges
- )
- })
- it('should return modified = true', function () {
- this.body.modified.should.equal(true)
- })
- it('should return the rev', function () {
- this.body.rev.should.equal(1)
- })
- it('should update the doc in the API', async function () {
- const doc = await DocstoreClient.getDoc(this.project_id, this.doc_id)
- doc.lines.should.deep.equal(this.originalLines)
- doc.version.should.equal(this.version + 1)
- doc.ranges.should.deep.equal(this.originalRanges)
- })
- })
- describe('when the version was decremented', function () {
- let statusCode
- beforeEach(async function () {
- try {
- this.body = await DocstoreClient.updateDoc(
- this.project_id,
- this.doc_id,
- this.newLines,
- this.version - 1,
- this.newRanges
- )
- } catch (error) {
- statusCode = error.info.status
- }
- })
- it('should return 409', function () {
- statusCode.should.equal(409)
- })
- it('should not update the doc in the API', async function () {
- const doc = await DocstoreClient.getDoc(this.project_id, this.doc_id)
- doc.lines.should.deep.equal(this.originalLines)
- doc.version.should.equal(this.version)
- doc.ranges.should.deep.equal(this.originalRanges)
- })
- })
- describe('when the ranges have changed', function () {
- beforeEach(async function () {
- this.body = await DocstoreClient.updateDoc(
- this.project_id,
- this.doc_id,
- this.originalLines,
- this.version,
- this.newRanges
- )
- })
- it('should return modified = true', function () {
- this.body.modified.should.equal(true)
- })
- it('should return the rev', function () {
- this.body.rev.should.equal(2)
- })
- it('should update the doc in the API', async function () {
- const doc = await DocstoreClient.getDoc(this.project_id, this.doc_id)
- doc.lines.should.deep.equal(this.originalLines)
- doc.version.should.equal(this.version)
- doc.ranges.should.deep.equal(this.newRanges)
- })
- })
- describe('when the doc does not exist', function () {
- beforeEach(async function () {
- this.missing_doc_id = new ObjectId()
- this.body = await DocstoreClient.updateDoc(
- this.project_id,
- this.missing_doc_id,
- this.originalLines,
- 0,
- this.originalRanges
- )
- })
- it('should create the doc', function () {
- this.body.rev.should.equal(1)
- })
- it('should be retreivable', async function () {
- const doc = await DocstoreClient.getDoc(
- this.project_id,
- this.missing_doc_id
- )
- doc.lines.should.deep.equal(this.originalLines)
- doc.version.should.equal(0)
- doc.ranges.should.deep.equal(this.originalRanges)
- })
- })
- describe('when malformed doc lines are provided', function () {
- describe('when the lines are not an array', function () {
- let statusCode
- beforeEach(async function () {
- try {
- this.body = await DocstoreClient.updateDoc(
- this.project_id,
- this.doc_id,
- { foo: 'bar' },
- this.version,
- this.originalRanges
- )
- } catch (error) {
- statusCode = error.info.status
- }
- })
- it('should return 400', function () {
- statusCode.should.equal(400)
- })
- it('should not update the doc in the API', async function () {
- const doc = await DocstoreClient.getDoc(this.project_id, this.doc_id)
- doc.lines.should.deep.equal(this.originalLines)
- })
- })
- describe('when the lines are not present', function () {
- let statusCode
- beforeEach(async function () {
- try {
- this.body = await DocstoreClient.updateDoc(
- this.project_id,
- this.doc_id,
- null,
- this.version,
- this.originalRanges
- )
- } catch (error) {
- statusCode = error.info.status
- }
- })
- it('should return 400', function () {
- statusCode.should.equal(400)
- })
- it('should not update the doc in the API', async function () {
- const doc = await DocstoreClient.getDoc(this.project_id, this.doc_id)
- doc.lines.should.deep.equal(this.originalLines)
- })
- })
- })
- describe('when no version is provided', function () {
- let statusCode
- beforeEach(async function () {
- try {
- this.body = await DocstoreClient.updateDoc(
- this.project_id,
- this.doc_id,
- this.originalLines,
- null,
- this.originalRanges
- )
- } catch (error) {
- statusCode = error.info.status
- }
- })
- it('should return 400', function () {
- statusCode.should.equal(400)
- })
- it('should not update the doc in the API', async function () {
- const doc = await DocstoreClient.getDoc(this.project_id, this.doc_id)
- doc.lines.should.deep.equal(this.originalLines)
- doc.version.should.equal(this.version)
- })
- })
- describe('when the content is large', function () {
- beforeEach(async function () {
- const line = new Array(1025).join('x') // 1kb
- this.largeLines = Array.apply(null, Array(1024)).map(() => line) // 1mb
- this.body = await DocstoreClient.updateDoc(
- this.project_id,
- this.doc_id,
- this.largeLines,
- this.version,
- this.originalRanges
- )
- })
- it('should return modified = true', function () {
- this.body.modified.should.equal(true)
- })
- it('should update the doc in the API', async function () {
- const doc = await DocstoreClient.getDoc(this.project_id, this.doc_id)
- doc.lines.should.deep.equal(this.largeLines)
- })
- })
- describe('when there is a large json payload', function () {
- beforeEach(async function () {
- const line = new Array(1025).join('x') // 1kb
- this.largeLines = Array.apply(null, Array(1024)).map(() => line) // 1kb
- this.originalRanges.padding = Array.apply(null, Array(2049)).map(
- () => line
- ) // 2mb + 1kb
- this.body = await DocstoreClient.updateDoc(
- this.project_id,
- this.doc_id,
- this.largeLines,
- this.version,
- this.originalRanges
- )
- })
- it('should return modified = true', function () {
- this.body.modified.should.equal(true)
- })
- it('should update the doc in the API', async function () {
- const doc = await DocstoreClient.getDoc(this.project_id, this.doc_id)
- doc.lines.should.deep.equal(this.largeLines)
- })
- })
- describe('when the document body is too large', function () {
- let statusCode, body
- beforeEach(async function () {
- const line = new Array(1025).join('x') // 1kb
- this.largeLines = Array.apply(null, Array(2049)).map(() => line) // 2mb + 1kb
- try {
- this.body = await DocstoreClient.updateDoc(
- this.project_id,
- this.doc_id,
- this.largeLines,
- this.version,
- this.originalRanges
- )
- } catch (error) {
- statusCode = error.info.status
- body = error.body
- }
- })
- it('should return 413', function () {
- statusCode.should.equal(413)
- })
- it('should report body too large', function () {
- body.should.equal('document body too large')
- })
- it('should not update the doc in the API', async function () {
- const doc = await DocstoreClient.getDoc(this.project_id, this.doc_id)
- doc.lines.should.deep.equal(this.originalLines)
- })
- })
- describe('when the json payload is too large', function () {
- beforeEach(async function () {
- const line = new Array(1024).join('x') // 1 KB
- this.largeLines = new Array(8192).fill(line) // 8 MB
- this.originalRanges.padding = new Array(6144).fill(line) // 6 MB
- try {
- this.body = await DocstoreClient.updateDoc(
- this.project_id,
- this.doc_id,
- this.largeLines,
- this.version,
- this.originalRanges
- )
- } catch (error) {
- // ignore error response
- }
- })
- it('should not update the doc in the API', async function () {
- const doc = await DocstoreClient.getDoc(this.project_id, this.doc_id)
- doc.lines.should.deep.equal(this.originalLines)
- })
- })
- })
|