-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for using promises in Cursor methods (#2554)
* Add similar promise variables to read() and close() as seen in query() * Add testing for promise specific usage * Simplify tests as no real callbacks are involved Removes usage of `done()` since we can end the test when we exit the function Co-Authored-By: Charmander <[email protected]> * Switch to let over var Co-authored-by: Charmander <[email protected]>
- Loading branch information
1 parent
9d2c977
commit aedaa59
Showing
2 changed files
with
81 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
const assert = require('assert') | ||
const Cursor = require('../') | ||
const pg = require('pg') | ||
|
||
const text = 'SELECT generate_series as num FROM generate_series(0, 5)' | ||
|
||
describe('cursor using promises', function () { | ||
beforeEach(function (done) { | ||
const client = (this.client = new pg.Client()) | ||
client.connect(done) | ||
|
||
this.pgCursor = function (text, values) { | ||
return client.query(new Cursor(text, values || [])) | ||
} | ||
}) | ||
|
||
afterEach(function () { | ||
this.client.end() | ||
}) | ||
|
||
it('resolve with result', async function () { | ||
const cursor = this.pgCursor(text) | ||
const res = await cursor.read(6) | ||
assert.strictEqual(res.length, 6) | ||
}) | ||
|
||
it('reject with error', function (done) { | ||
const cursor = this.pgCursor('select asdfasdf') | ||
cursor.read(1).error((err) => { | ||
assert(err) | ||
done() | ||
}) | ||
}) | ||
|
||
it('read multiple times', async function () { | ||
const cursor = this.pgCursor(text) | ||
let res | ||
|
||
res = await cursor.read(2) | ||
assert.strictEqual(res.length, 2) | ||
|
||
res = await cursor.read(3) | ||
assert.strictEqual(res.length, 3) | ||
|
||
res = await cursor.read(1) | ||
assert.strictEqual(res.length, 1) | ||
|
||
res = await cursor.read(1) | ||
assert.strictEqual(res.length, 0) | ||
}) | ||
}) |