revert random TTL in favour of delay in archiving

there could be some issues with newer packs expiring before older ones
This commit is contained in:
Brian Gough 2017-01-31 15:07:58 +00:00
parent 29da5797e3
commit ac5d59211d
2 changed files with 29 additions and 29 deletions

View file

@ -526,13 +526,13 @@ module.exports = PackManager =
setTTLOnArchivedPack: (project_id, doc_id, pack_id, callback) ->
db.docHistory.findAndModify {
query: {_id: pack_id}
update: {$set: {expiresAt: PackManager._getOneDayInFutureWithRandomDelay()}}
update: {$set: {expiresAt: new Date(Date.now() + 1*DAYS)}}
}, (err) ->
logger.log {project_id, doc_id, pack_id}, "set expiry on pack"
callback()
_getOneDayInFutureWithRandomDelay: ->
thirtyMins = 1000 * 60 * 30
randomThirtyMinMax = Math.ceil(Math.random() * thirtyMins)
return new Date(Date.now() + randomThirtyMinMax + 1*DAYS)
# _getOneDayInFutureWithRandomDelay: ->
# thirtyMins = 1000 * 60 * 30
# randomThirtyMinMax = Math.ceil(Math.random() * thirtyMins)
# return new Date(Date.now() + randomThirtyMinMax + 1*DAYS)

View file

@ -334,32 +334,32 @@ describe "PackManager", ->
it "should return with no error", ->
@callback.calledWith(undefined).should.equal true
describe "setTTLOnArchivedPack", ->
beforeEach ->
@pack_id = "somepackid"
@onedayinms = 86400000
@db.docHistory =
findAndModify : sinon.stub().callsArgWith(1)
# describe "setTTLOnArchivedPack", ->
# beforeEach ->
# @pack_id = "somepackid"
# @onedayinms = 86400000
# @db.docHistory =
# findAndModify : sinon.stub().callsArgWith(1)
it "should set expires to 1 day", (done)->
@PackManager._getOneDayInFutureWithRandomDelay = sinon.stub().returns(@onedayinms)
@PackManager.setTTLOnArchivedPack @project_id, @doc_id, @pack_id, =>
args = @db.docHistory.findAndModify.args[0][0]
args.query._id.should.equal @pack_id
args.update['$set'].expiresAt.should.equal @onedayinms
done()
# it "should set expires to 1 day", (done)->
# #@PackManager._getOneDayInFutureWithRandomDelay = sinon.stub().returns(@onedayinms)
# @PackManager.setTTLOnArchivedPack @project_id, @doc_id, @pack_id, =>
# args = @db.docHistory.findAndModify.args[0][0]
# args.query._id.should.equal @pack_id
# args.update['$set'].expiresAt.should.equal @onedayinms
# done()
describe "_getOneDayInFutureWithRandomDelay", ->
beforeEach ->
@onedayinms = 86400000
@thirtyMins = 1000 * 60 * 30
# describe "_getOneDayInFutureWithRandomDelay", ->
# beforeEach ->
# @onedayinms = 86400000
# @thirtyMins = 1000 * 60 * 30
it "should give 1 day + 30 mins random time", (done)->
loops = 10000
while --loops > 0
randomDelay = @PackManager._getOneDayInFutureWithRandomDelay() - new Date(Date.now() + @onedayinms)
randomDelay.should.be.above(0)
randomDelay.should.be.below(@thirtyMins + 1)
done()
# it "should give 1 day + 30 mins random time", (done)->
# loops = 10000
# while --loops > 0
# randomDelay = @PackManager._getOneDayInFutureWithRandomDelay() - new Date(Date.now() + @onedayinms)
# randomDelay.should.be.above(0)
# randomDelay.should.be.below(@thirtyMins + 1)
# done()