/* eslint-disable camelcase, handle-callback-err, no-unused-vars, */ // TODO: This file was created by bulk-decaffeinate. // Fix any style issues and re-enable lint. /* * decaffeinate suggestions: * DS101: Remove unnecessary use of Array.from * DS102: Remove unnecessary code created because of implicit returns * DS207: Consider shorter variations of null checks * Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md */ const sinon = require('sinon') const chai = require('chai') const should = chai.should() const { db, ObjectId, ISODate } = require('../../../app/js/mongojs') const async = require('async') const Settings = require('settings-sharelatex') const DocArchiveManager = require('../../../app/js/DocArchiveManager.js') const request = require('request') const DocstoreApp = require('./helpers/DocstoreApp') const DocstoreClient = require('./helpers/DocstoreClient') describe('Archiving', function() { before(function(done) { return DocstoreApp.ensureRunning(done) }) describe('multiple docs in a project', function() { before(function(done) { this.project_id = ObjectId() this.docs = [ { _id: ObjectId(), lines: ['one', 'two', 'three'], ranges: {}, version: 2 }, { _id: ObjectId(), lines: ['aaa', 'bbb', 'ccc'], ranges: {}, version: 4 } ] const jobs = Array.from(this.docs).map(doc => (doc => { return callback => { return DocstoreClient.createDoc( this.project_id, doc._id, doc.lines, doc.version, doc.ranges, callback ) } })(doc) ) return async.series(jobs, error => { if (error != null) { throw error } return DocstoreClient.archiveAllDoc(this.project_id, (error, res) => { this.res = res return done() }) }) }) it('should archive all the docs', function(done) { this.res.statusCode.should.equal(204) return done() }) it('should set inS3 and unset lines and ranges in each doc', function(done) { const jobs = Array.from(this.docs).map(doc => (doc => { return callback => { return db.docs.findOne({ _id: doc._id }, (error, doc) => { should.not.exist(doc.lines) should.not.exist(doc.ranges) doc.inS3.should.equal(true) return callback() }) } })(doc) ) return async.series(jobs, done) }) it('should set the docs in s3 correctly', function(done) { const jobs = Array.from(this.docs).map(doc => (doc => { return callback => { return DocstoreClient.getS3Doc( this.project_id, doc._id, (error, res, s3_doc) => { s3_doc.lines.should.deep.equal(doc.lines) s3_doc.ranges.should.deep.equal(doc.ranges) return callback() } ) } })(doc) ) return async.series(jobs, done) }) return describe('after unarchiving from a request for the project', function() { before(function(done) { return DocstoreClient.getAllDocs( this.project_id, (error, res, fetched_docs) => { this.fetched_docs = fetched_docs if (error != null) { throw error } return done() } ) }) it('should return the docs', function(done) { for (let i = 0; i < this.fetched_docs.length; i++) { const doc = this.fetched_docs[i] doc.lines.should.deep.equal(this.docs[i].lines) } return done() }) return it('should restore the docs to mongo', function(done) { const jobs = Array.from(this.docs).map((doc, i) => ((doc, i) => { return callback => { return db.docs.findOne({ _id: doc._id }, (error, doc) => { doc.lines.should.deep.equal(this.docs[i].lines) doc.ranges.should.deep.equal(this.docs[i].ranges) should.not.exist(doc.inS3) return callback() }) } })(doc, i) ) return async.series(jobs, done) }) }) }) describe('a deleted doc', function() { before(function(done) { this.project_id = ObjectId() this.doc = { _id: ObjectId(), lines: ['one', 'two', 'three'], ranges: {}, version: 2 } return DocstoreClient.createDoc( this.project_id, this.doc._id, this.doc.lines, this.doc.version, this.doc.ranges, error => { if (error != null) { throw error } return DocstoreClient.deleteDoc( this.project_id, this.doc._id, error => { if (error != null) { throw error } return DocstoreClient.archiveAllDoc( this.project_id, (error, res) => { this.res = res if (error != null) { throw error } return done() } ) } ) } ) }) it('should successully archive the docs', function(done) { this.res.statusCode.should.equal(204) return done() }) it('should set inS3 and unset lines and ranges in each doc', function(done) { return db.docs.findOne({ _id: this.doc._id }, (error, doc) => { if (error != null) { throw error } should.not.exist(doc.lines) should.not.exist(doc.ranges) doc.inS3.should.equal(true) doc.deleted.should.equal(true) return done() }) }) it('should set the doc in s3 correctly', function(done) { return DocstoreClient.getS3Doc( this.project_id, this.doc._id, (error, res, s3_doc) => { if (error != null) { throw error } s3_doc.lines.should.deep.equal(this.doc.lines) s3_doc.ranges.should.deep.equal(this.doc.ranges) return done() } ) }) return describe('after unarchiving from a request for the project', function() { before(function(done) { return DocstoreClient.getAllDocs( this.project_id, (error, res, fetched_docs) => { this.fetched_docs = fetched_docs if (error != null) { throw error } return done() } ) }) it('should not included the deleted', function(done) { this.fetched_docs.length.should.equal(0) return done() }) return it('should restore the doc to mongo', function(done) { return db.docs.findOne({ _id: this.doc._id }, (error, doc) => { if (error != null) { throw error } doc.lines.should.deep.equal(this.doc.lines) doc.ranges.should.deep.equal(this.doc.ranges) should.not.exist(doc.inS3) doc.deleted.should.equal(true) return done() }) }) }) }) describe('a doc with large lines', function() { before(function(done) { this.project_id = ObjectId() this.timeout(1000 * 30) const quarterMegInBytes = 250000 const big_line = require('crypto') .randomBytes(quarterMegInBytes) .toString('hex') this.doc = { _id: ObjectId(), lines: [big_line, big_line, big_line, big_line], ranges: {}, version: 2 } return DocstoreClient.createDoc( this.project_id, this.doc._id, this.doc.lines, this.doc.version, this.doc.ranges, error => { if (error != null) { throw error } return DocstoreClient.archiveAllDoc(this.project_id, (error, res) => { this.res = res if (error != null) { throw error } return done() }) } ) }) it('should successully archive the docs', function(done) { this.res.statusCode.should.equal(204) return done() }) it('should set inS3 and unset lines and ranges in each doc', function(done) { return db.docs.findOne({ _id: this.doc._id }, (error, doc) => { if (error != null) { throw error } should.not.exist(doc.lines) should.not.exist(doc.ranges) doc.inS3.should.equal(true) return done() }) }) it('should set the doc in s3 correctly', function(done) { return DocstoreClient.getS3Doc( this.project_id, this.doc._id, (error, res, s3_doc) => { if (error != null) { throw error } s3_doc.lines.should.deep.equal(this.doc.lines) s3_doc.ranges.should.deep.equal(this.doc.ranges) return done() } ) }) return describe('after unarchiving from a request for the project', function() { before(function(done) { return DocstoreClient.getAllDocs( this.project_id, (error, res, fetched_docs) => { this.fetched_docs = fetched_docs if (error != null) { throw error } return done() } ) }) return it('should restore the doc to mongo', function(done) { return db.docs.findOne({ _id: this.doc._id }, (error, doc) => { if (error != null) { throw error } doc.lines.should.deep.equal(this.doc.lines) doc.ranges.should.deep.equal(this.doc.ranges) should.not.exist(doc.inS3) return done() }) }) }) }) describe('a doc with naughty strings', function() { before(function(done) { this.project_id = ObjectId() this.doc = { _id: ObjectId(), lines: [ '', 'undefined', 'undef', 'null', 'NULL', '(null)', 'nil', 'NIL', 'true', 'false', 'True', 'False', 'None', '\\', '\\\\', '0', '1', '1.00', '$1.00', '1/2', '1E2', '1E02', '1E+02', '-1', '-1.00', '-$1.00', '-1/2', '-1E2', '-1E02', '-1E+02', '1/0', '0/0', '-2147483648/-1', '-9223372036854775808/-1', '0.00', '0..0', '.', '0.0.0', '0,00', '0,,0', ',', '0,0,0', '0.0/0', '1.0/0.0', '0.0/0.0', '1,0/0,0', '0,0/0,0', '--1', '-', '-.', '-,', '999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999', 'NaN', 'Infinity', '-Infinity', '0x0', '0xffffffff', '0xffffffffffffffff', '0xabad1dea', '123456789012345678901234567890123456789', '1,000.00', '1 000.00', "1'000.00", '1,000,000.00', '1 000 000.00', "1'000'000.00", '1.000,00', '1 000,00', "1'000,00", '1.000.000,00', '1 000i̳̞v̢͇ḙ͎͟-҉̭̩̼͔m̤̭̫i͕͇̝̦n̗͙ḍ̟ ̯̲͕͞ǫ̟̯̰̲͙̻̝f ̪̰̰̗̖̭̘͘c̦͍̲̞͍̩̙ḥ͚a̮͎̟̙͜ơ̩̹͎s̤.̝̝ ҉Z̡̖̜͖̰̣͉̜a͖̰͙̬͡l̲̫̳͍̩g̡̟̼̱͚̞̬ͅo̗͜.̟', '̦H̬̤̗̤͝e͜ ̜̥̝̻͍̟́w̕h̖̯͓o̝͙̖͎̱̮ ҉̺̙̞̟͈W̷̼̭a̺̪͍į͈͕̭͙̯̜t̶̼̮s̘͙͖̕ ̠̫̠B̻͍͙͉̳ͅe̵h̵̬͇̫͙i̹͓̳̳̮͎̫̕n͟d̴̪̜̖ ̰͉̩͇͙̲͞ͅT͖̼͓̪͢h͏͓̮̻e̬̝̟ͅ ̤̹̝W͙̞̝͔͇͝ͅa͏͓͔̹̼̣l̴͔̰̤̟͔ḽ̫.͕', 'Z̮̞̠͙͔ͅḀ̗̞͈̻̗Ḷ͙͎̯̹̞͓G̻O̭̗̮', "˙ɐnbᴉlɐ ɐuƃɐɯ ǝɹolop ʇǝ ǝɹoqɐl ʇn ʇunpᴉpᴉɔuᴉ ɹodɯǝʇ poɯsnᴉǝ op pǝs 'ʇᴉlǝ ƃuᴉɔsᴉdᴉpɐ ɹnʇǝʇɔǝsuoɔ 'ʇǝɯɐ ʇᴉs ɹolop ɯnsdᴉ ɯǝɹo˥", '00˙Ɩ$-', 'The quick brown fox jumps over the lazy dog', '𝐓𝐡𝐞 𝐪𝐮𝐢𝐜𝐤 𝐛𝐫𝐨𝐰𝐧 𝐟𝐨𝐱 𝐣𝐮𝐦𝐩𝐬 𝐨𝐯𝐞𝐫 𝐭𝐡𝐞 𝐥𝐚𝐳𝐲 𝐝𝐨𝐠', '𝕿𝖍𝖊 𝖖𝖚𝖎𝖈𝖐 𝖇𝖗𝖔𝖜𝖓 𝖋𝖔𝖝 𝖏𝖚𝖒𝖕𝖘 𝖔𝖛𝖊𝖗 𝖙𝖍𝖊 𝖑𝖆𝖟𝖞 𝖉𝖔𝖌', '𝑻𝒉𝒆 𝒒𝒖𝒊𝒄𝒌 𝒃𝒓𝒐𝒘𝒏 𝒇𝒐𝒙 𝒋𝒖𝒎𝒑𝒔 𝒐𝒗𝒆𝒓 𝒕𝒉𝒆 𝒍𝒂𝒛𝒚 𝒅𝒐𝒈', '𝓣𝓱𝓮 𝓺𝓾𝓲𝓬𝓴 𝓫𝓻𝓸𝔀𝓷 𝓯𝓸𝔁 𝓳𝓾𝓶𝓹𝓼 𝓸𝓿𝓮𝓻 𝓽𝓱𝓮 𝓵𝓪𝔃𝔂 𝓭𝓸𝓰', '𝕋𝕙𝕖 𝕢𝕦𝕚𝕔𝕜 𝕓𝕣𝕠𝕨𝕟 𝕗𝕠𝕩 𝕛𝕦𝕞𝕡𝕤 𝕠𝕧𝕖𝕣 𝕥𝕙𝕖 𝕝𝕒𝕫𝕪 𝕕𝕠𝕘', '𝚃𝚑𝚎 𝚚𝚞𝚒𝚌𝚔 𝚋𝚛𝚘𝚠𝚗 𝚏𝚘𝚡 𝚓𝚞𝚖𝚙𝚜 𝚘𝚟𝚎𝚛 𝚝𝚑𝚎 𝚕𝚊𝚣𝚢 𝚍𝚘𝚐', '⒯⒣⒠ ⒬⒰⒤⒞⒦ ⒝⒭⒪⒲⒩ ⒡⒪⒳ ⒥⒰⒨⒫⒮ ⒪⒱⒠⒭ ⒯⒣⒠ ⒧⒜⒵⒴ ⒟⒪⒢', '', '<script>alert('123');</script>', '', ' ', '">', "'>", '>', '', '< / script >< script >alert(123)< / script >', ' onfocus=JaVaSCript:alert(123) autofocus ', '" onfocus=JaVaSCript:alert(123) autofocus ', "' onfocus=JaVaSCript:alert(123) autofocus ", '<script>alert(123)</script>', 'ript>alert(123)ript>', '-->', '";alert(123);t="', "';alert(123);t='", 'JavaSCript:alert(123)', ';alert(123);', 'src=JaVaSCript:prompt(132)', '">javascript:alert(1);', 'javascript:alert(1);', 'javascript:alert(1);', 'javascript:alert(1);', 'javascript:alert(1);', 'javascript:alert(1);', 'javascript:alert(1);', '\'`"><\\x3Cscript>javascript:alert(1) ', '\'`"><\\x00script>javascript:alert(1)', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'ABC
DEF', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', 'test', '`"\'>', '`"\'>', '`"\'>', '`"\'>', '`"\'>', '`"\'>', '`"\'>', '`"\'>', '`"\'>', '`"\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '"`\'>', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'XXX', '', '', '', '<a href=http://foo.bar/#x=`y></a><img alt="`><img src=x:x onerror=javascript:alert(1)></a>">', '<!--[if]><script>javascript:alert(1)</script -->', '<!--[if<img src=x onerror=javascript:alert(1)//]> -->', '<script src="/\\%(jscript)s"></script>', '<script src="\\\\%(jscript)s"></script>', '<IMG """><SCRIPT>alert("XSS")</SCRIPT>">', '<IMG SRC=javascript:alert(String.fromCharCode(88,83,83))>', '<IMG SRC=# onmouseover="alert(\'xxs\')">', '<IMG SRC= onmouseover="alert(\'xxs\')">', '<IMG onmouseover="alert(\'xxs\')">', '<IMG SRC=javascript:alert('XSS')>', '<IMG SRC=javascript:alert('XSS')>', '<IMG SRC=javascript:alert('XSS')>', '<IMG SRC="jav ascript:alert(\'XSS\');">', '<IMG SRC="jav ascript:alert(\'XSS\');">', '<IMG SRC="jav ascript:alert(\'XSS\');">', '<IMG SRC="jav ascript:alert(\'XSS\');">', 'perl -e \'print "<IMG SRC=java\\0script:alert(\\"XSS\\")>";\' > out', '<IMG SRC="  javascript:alert(\'XSS\');">', '<SCRIPT/XSS SRC="http://ha.ckers.org/xss.js"></SCRIPT>', '<BODY onload!#$%&()*~+-_.,:;?@[/|\\]^`=alert("XSS")>', '<SCRIPT/SRC="http://ha.ckers.org/xss.js"></SCRIPT>', '<<SCRIPT>alert("XSS");//<</SCRIPT>', '<SCRIPT SRC=http://ha.ckers.org/xss.js?< B >', '<SCRIPT SRC=//ha.ckers.org/.j>', '<IMG SRC="javascript:alert(\'XSS\')"', '<iframe src=http://ha.ckers.org/scriptlet.html <', "\\\";alert('XSS');//", '<plaintext>', '1;DROP TABLE users', "1'; DROP TABLE users-- 1", "' OR 1=1 -- 1", "' OR '1'='1", '-', '--', '--version', '--help', '$USER', '/dev/null; touch /tmp/blns.fail ; echo', '`touch /tmp/blns.fail`', '$(touch /tmp/blns.fail)', '@{[system "touch /tmp/blns.fail"]}', 'eval("puts \'hello world\'")', 'System("ls -al /")', '`ls -al /`', 'Kernel.exec("ls -al /")', 'Kernel.exit(1)', "%x('ls -al /')", '<?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE foo [ <!ELEMENT foo ANY ><!ENTITY xxe SYSTEM "file:///etc/passwd" >]><foo>&xxe;</foo>', '$HOME', "$ENV{'HOME'}", '%d', '%s', '%*.*s', '../../../../../../../../../../../etc/passwd%00', '../../../../../../../../../../../etc/hosts', '() { 0; }; touch /tmp/blns.shellshock1.fail;', '() { _; } >_[$($())] { touch /tmp/blns.shellshock2.fail; }', 'CON', 'PRN', 'AUX', 'CLOCK$', 'NUL', 'A:', 'ZZ:', 'COM1', 'LPT1', 'LPT2', 'LPT3', 'COM2', 'COM3', 'COM4', 'Scunthorpe General Hospital', 'Penistone Community Church', 'Lightwater Country Park', 'Jimmy Clitheroe', 'Horniman Museum', 'shitake mushrooms', 'RomansInSussex.co.uk', 'http://www.cum.qc.ca/', 'Craig Cockburn, Software Specialist', 'Linda Callahan', 'Dr. Herman I. Libshitz', 'magna cum laude', 'Super Bowl XXX', 'medieval erection of parapets', 'evaluate', 'mocha', 'expression', 'Arsenal canal', 'classic', 'Tyson Gay', "If you're reading this, you've been in a coma for almost 20 years now. We're trying a new technique. We don't know where this message will end up in your dream, but we hope it works. Please wake up, we miss you.", 'Roses are \u001b[0;31mred\u001b[0m, violets are \u001b[0;34mblue. Hope you enjoy terminal hue', 'But now...\u001b[20Cfor my greatest trick...\u001b[8m', 'The quic\b\b\b\b\b\bk brown fo\u0007\u0007\u0007\u0007\u0007\u0007\u0007\u0007\u0007\u0007\u0007x... [Beeeep]', 'Powerلُلُصّبُلُلصّبُررً ॣ ॣh ॣ ॣ冗' ], ranges: {}, version: 2 } return DocstoreClient.createDoc( this.project_id, this.doc._id, this.doc.lines, this.doc.version, this.doc.ranges, error => { if (error != null) { throw error } return DocstoreClient.archiveAllDoc(this.project_id, (error, res) => { this.res = res if (error != null) { throw error } return done() }) } ) }) it('should successully archive the docs', function(done) { this.res.statusCode.should.equal(204) return done() }) it('should set inS3 and unset lines and ranges in each doc', function(done) { return db.docs.findOne({ _id: this.doc._id }, (error, doc) => { if (error != null) { throw error } should.not.exist(doc.lines) should.not.exist(doc.ranges) doc.inS3.should.equal(true) return done() }) }) it('should set the doc in s3 correctly', function(done) { return DocstoreClient.getS3Doc( this.project_id, this.doc._id, (error, res, s3_doc) => { if (error != null) { throw error } s3_doc.lines.should.deep.equal(this.doc.lines) s3_doc.ranges.should.deep.equal(this.doc.ranges) return done() } ) }) return describe('after unarchiving from a request for the project', function() { before(function(done) { return DocstoreClient.getAllDocs( this.project_id, (error, res, fetched_docs) => { this.fetched_docs = fetched_docs if (error != null) { throw error } return done() } ) }) return it('should restore the doc to mongo', function(done) { return db.docs.findOne({ _id: this.doc._id }, (error, doc) => { if (error != null) { throw error } doc.lines.should.deep.equal(this.doc.lines) doc.ranges.should.deep.equal(this.doc.ranges) should.not.exist(doc.inS3) return done() }) }) }) }) describe('a doc with ranges', function() { before(function(done) { this.project_id = ObjectId() this.doc = { _id: ObjectId(), lines: ['one', 'two', 'three'], ranges: { changes: [ { id: ObjectId(), op: { i: 'foo', p: 24 }, metadata: { user_id: ObjectId(), ts: new Date('2017-01-27T16:10:44.194Z') } }, { id: ObjectId(), op: { d: 'bar', p: 50 }, metadata: { user_id: ObjectId(), ts: new Date('2017-01-27T18:10:44.194Z') } } ], comments: [ { id: ObjectId(), op: { c: 'comment', p: 284, t: ObjectId() }, metadata: { user_id: ObjectId(), ts: new Date('2017-01-26T14:22:04.869Z') } } ] }, version: 2 } return DocstoreClient.createDoc( this.project_id, this.doc._id, this.doc.lines, this.doc.version, this.doc.ranges, error => { if (error != null) { throw error } return DocstoreClient.archiveAllDoc(this.project_id, (error, res) => { this.res = res if (error != null) { throw error } return done() }) } ) }) it('should successully archive the docs', function(done) { this.res.statusCode.should.equal(204) return done() }) it('should set inS3 and unset lines and ranges in each doc', function(done) { return db.docs.findOne({ _id: this.doc._id }, (error, doc) => { if (error != null) { throw error } should.not.exist(doc.lines) should.not.exist(doc.ranges) doc.inS3.should.equal(true) return done() }) }) it('should set the doc in s3 correctly', function(done) { return DocstoreClient.getS3Doc( this.project_id, this.doc._id, (error, res, s3_doc) => { if (error != null) { throw error } s3_doc.lines.should.deep.equal(this.doc.lines) const ranges = JSON.parse(JSON.stringify(this.doc.ranges)) // ObjectId -> String s3_doc.ranges.should.deep.equal(ranges) return done() } ) }) return describe('after unarchiving from a request for the project', function() { before(function(done) { return DocstoreClient.getAllDocs( this.project_id, (error, res, fetched_docs) => { this.fetched_docs = fetched_docs if (error != null) { throw error } return done() } ) }) return it('should restore the doc to mongo', function(done) { return db.docs.findOne({ _id: this.doc._id }, (error, doc) => { if (error != null) { throw error } doc.lines.should.deep.equal(this.doc.lines) doc.ranges.should.deep.equal(this.doc.ranges) should.not.exist(doc.inS3) return done() }) }) }) }) describe('a doc that is archived twice', function() { before(function(done) { this.project_id = ObjectId() this.doc = { _id: ObjectId(), lines: ['abc', 'def', 'ghi'], ranges: {}, version: 2 } return DocstoreClient.createDoc( this.project_id, this.doc._id, this.doc.lines, this.doc.version, this.doc.ranges, error => { if (error != null) { throw error } return DocstoreClient.archiveAllDoc(this.project_id, (error, res) => { this.res = res if (error != null) { throw error } this.res.statusCode.should.equal(204) return DocstoreClient.archiveAllDoc( this.project_id, (error, res1) => { this.res = res1 if (error != null) { throw error } this.res.statusCode.should.equal(204) return done() } ) }) } ) }) it('should set inS3 and unset lines and ranges in each doc', function(done) { return db.docs.findOne({ _id: this.doc._id }, (error, doc) => { if (error != null) { throw error } should.not.exist(doc.lines) should.not.exist(doc.ranges) doc.inS3.should.equal(true) return done() }) }) it('should set the doc in s3 correctly', function(done) { return DocstoreClient.getS3Doc( this.project_id, this.doc._id, (error, res, s3_doc) => { if (error != null) { throw error } s3_doc.lines.should.deep.equal(this.doc.lines) s3_doc.ranges.should.deep.equal(this.doc.ranges) return done() } ) }) return describe('after unarchiving from a request for the project', function() { before(function(done) { return DocstoreClient.getAllDocs( this.project_id, (error, res, fetched_docs) => { this.fetched_docs = fetched_docs if (error != null) { throw error } return done() } ) }) return it('should restore the doc to mongo', function(done) { return db.docs.findOne({ _id: this.doc._id }, (error, doc) => { if (error != null) { throw error } doc.lines.should.deep.equal(this.doc.lines) doc.ranges.should.deep.equal(this.doc.ranges) should.not.exist(doc.inS3) return done() }) }) }) }) return describe('a doc with the old schema (just an array of lines)', function() { before(function(done) { this.project_id = ObjectId() this.doc = { _id: ObjectId(), lines: ['abc', 'def', 'ghi'], ranges: {}, version: 2 } const options = DocArchiveManager.buildS3Options( `${this.project_id}/${this.doc._id}` ) options.json = this.doc.lines return request.put(options, (error, res, body) => { if (error != null) { throw error } res.statusCode.should.equal(200) return db.docs.insert( { project_id: this.project_id, _id: this.doc._id, rev: this.doc.version, inS3: true }, error => { if (error != null) { throw error } return DocstoreClient.getAllDocs( this.project_id, (error, res, fetched_docs) => { this.fetched_docs = fetched_docs if (error != null) { throw error } return done() } ) } ) }) }) it('should restore the doc to mongo', function(done) { return db.docs.findOne({ _id: this.doc._id }, (error, doc) => { if (error != null) { throw error } doc.lines.should.deep.equal(this.doc.lines) should.not.exist(doc.inS3) return done() }) }) return it('should return the doc', function(done) { this.fetched_docs[0].lines.should.deep.equal(this.doc.lines) return done() }) }) })