X-Git-Url: http://git.squeep.com/?p=websub-hub;a=blobdiff_plain;f=test%2Fsrc%2Fdb%2Fpostgres.js;h=4a0ecd98516372ecc1adada38595c1ce4c63fa61;hp=0f037d6fae91b6dd4eed3098626317c9797f9d79;hb=d5e7908d3e60ee0cb3149163d4749563cdfafeb3;hpb=a03352195c7ecfde25a8cf9aba6dd9666e1a3fea diff --git a/test/src/db/postgres.js b/test/src/db/postgres.js index 0f037d6..4a0ecd9 100644 --- a/test/src/db/postgres.js +++ b/test/src/db/postgres.js @@ -227,11 +227,24 @@ describe('DatabasePostgres', function () { }); it('covers migration', async function() { sinon.stub(db.db, 'oneOrNone').resolves({}); - sinon.stub(db.db, 'multiResult'); - sinon.stub(db, '_currentSchema').resolves(db.schemaVersionsSupported.max); + sinon.stub(db.db, 'multiResult').resolves({}); + sinon.stub(db, '_currentSchema').resolves(db.schemaVersionsSupported.min); sinon.stub(db.db, 'one').resolves(db.schemaVersionsSupported.max); await db.initialize(); }); + it('covers migration failure', async function() { + const expected = new Error('oh no'); + sinon.stub(db.db, 'oneOrNone').resolves({}); + sinon.stub(db.db, 'multiResult').rejects(expected); + sinon.stub(db, '_currentSchema').resolves(db.schemaVersionsSupported.min); + sinon.stub(db.db, 'one').resolves(db.schemaVersionsSupported.max); + try { + await db.initialize(); + assert.fail(noExpectedException); + } catch (e) { + assert.deepStrictEqual(e, expected); + } + }); it('covers listener', async function() { db.listener = { start: sinon.stub(), @@ -659,12 +672,16 @@ describe('DatabasePostgres', function () { }); // subscriptionDeliveryClaimById describe('subscriptionDeliveryComplete', function () { + let topicContentUpdated; + before(function () { + topicContentUpdated = new Date(); + }); it('success', async function() { const dbResult = { rowCount: 1, }; sinon.stub(db.db, 'result').resolves(dbResult); - await db.subscriptionDeliveryComplete(dbCtx, callback, topicId); + await db.subscriptionDeliveryComplete(dbCtx, callback, topicId, topicContentUpdated); }); it('failure', async function () { const dbResult = { @@ -672,7 +689,7 @@ describe('DatabasePostgres', function () { }; sinon.stub(db.db, 'result').onCall(0).resolves(dbResult); try { - await db.subscriptionDeliveryComplete(dbCtx, callback, topicId); + await db.subscriptionDeliveryComplete(dbCtx, callback, topicId, topicContentUpdated); assert.fail(noExpectedException); } catch (e) { assert(e instanceof DBErrors.UnexpectedResult); @@ -687,7 +704,7 @@ describe('DatabasePostgres', function () { }; sinon.stub(db.db, 'result').onCall(0).resolves(dbResult0).onCall(1).resolves(dbResult1); try { - await db.subscriptionDeliveryComplete(dbCtx, callback, topicId); + await db.subscriptionDeliveryComplete(dbCtx, callback, topicId, topicContentUpdated); assert.fail(noExpectedException); } catch (e) { assert(e instanceof DBErrors.UnexpectedResult);