Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: replace usage of Bluebird Promise.tap with native Promise.then #3287

Merged
merged 3 commits into from Jun 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/client.js
Expand Up @@ -251,12 +251,13 @@ assign(Client.prototype, {

return Object.assign(poolConfig, {
create: () => {
return this.acquireRawConnection().tap((connection) => {
return this.acquireRawConnection().then(async (connection) => {
connection.__knexUid = uniqueId('__knexUid');

if (poolConfig.afterCreate) {
return Bluebird.promisify(poolConfig.afterCreate)(connection);
await Bluebird.promisify(poolConfig.afterCreate)(connection);
}
return connection;
});
},

Expand Down Expand Up @@ -306,8 +307,9 @@ assign(Client.prototype, {
}
try {
return Bluebird.try(() => this.pool.acquire().promise)
.tap((connection) => {
.then((connection) => {
debug('acquired connection from pool: %s', connection.__knexUid);
return connection;
})
.catch(TimeoutError, () => {
throw new Bluebird.TimeoutError(
Expand Down
3 changes: 2 additions & 1 deletion src/dialects/mssql/transaction.js
Expand Up @@ -70,12 +70,13 @@ module.exports = class Transaction_MSSQL extends Transaction {
reject(e);
}
})
.tap(function(conn) {
.then(function(conn) {
conn.__knexTxId = t.txid;
if (!t.outerTx) {
t.conn = conn;
conn.tx_ = conn.transaction();
}
return conn;
})
.disposer(function(conn) {
if (t.outerTx) return;
Expand Down
4 changes: 1 addition & 3 deletions src/dialects/mysql/schema/tablecompiler.js
Expand Up @@ -95,9 +95,7 @@ assign(TableCompiler_MySQL.prototype, {
}
})
.then(function() {
let sql = `alter table ${table} change ${wrapped} ${
column.Type
}`;
let sql = `alter table ${table} change ${wrapped} ${column.Type}`;

if (String(column.Null).toUpperCase() !== 'YES') {
sql += ` NOT NULL`;
Expand Down
3 changes: 2 additions & 1 deletion src/dialects/mysql/transaction.js
Expand Up @@ -26,14 +26,15 @@ assign(Transaction_MySQL.prototype, {
t._completed = true;
debug('%s error running transaction query', t.txid);
})
.tap(function() {
.then(function(res) {
if (status === 1) t._resolver(value);
if (status === 2) {
if (isUndefined(value)) {
value = new Error(`Transaction rejected with non-error: ${value}`);
}
t._rejecter(value);
}
return res;
});
if (status === 1 || status === 2) {
t._completed = true;
Expand Down
3 changes: 2 additions & 1 deletion src/dialects/mysql2/transaction.js
Expand Up @@ -25,13 +25,14 @@ assign(Transaction_MySQL2.prototype, {
t._completed = true;
debug('%s error running transaction query', t.txid);
})
.tap(function() {
.then(function(res) {
if (status === 1) t._resolver(value);
if (status === 2) {
if (isUndefined(value)) {
value = new Error(`Transaction rejected with non-error: ${value}`);
}
t._rejecter(value);
return res;
}
});
if (status === 1 || status === 2) {
Expand Down
3 changes: 2 additions & 1 deletion src/dialects/oracle/transaction.js
Expand Up @@ -50,10 +50,11 @@ module.exports = class Oracle_Transaction extends Transaction {

return connection;
})
.tap((connection) => {
.then((connection) => {
if (!t.outerTx) {
connection.setAutoCommit(false);
}
return connection;
})
.disposer((connection) => {
debugTx('%s: releasing connection', t.txid);
Expand Down
5 changes: 3 additions & 2 deletions src/dialects/postgres/index.js
Expand Up @@ -125,8 +125,9 @@ assign(Client_PG.prototype, {
}
resolver(connection);
});
}).tap(function setSearchPath(connection) {
return client.setSchemaSearchPath(connection);
}).then(function setSearchPath(connection) {
client.setSchemaSearchPath(connection);
return connection;
});
},

Expand Down
1 change: 0 additions & 1 deletion src/interface.js
Expand Up @@ -91,7 +91,6 @@ module.exports = function(Target) {
'spread',
'map',
'reduce',
'tap',
'thenReturn',
'return',
'yield',
Expand Down
27 changes: 19 additions & 8 deletions src/migrate/Migrator.js
Expand Up @@ -64,7 +64,10 @@ class Migrator {

return migrationListResolver
.listAllAndCompleted(this.config, this.knex)
.tap((value) => validateMigrationList(this.config.migrationSource, value))
.then((value) => {
validateMigrationList(this.config.migrationSource, value);
return value;
})
.then(([all, completed]) => {
const migrations = getNewMigrations(
this.config.migrationSource,
Expand Down Expand Up @@ -100,7 +103,10 @@ class Migrator {

return migrationListResolver
.listAllAndCompleted(this.config, this.knex)
.tap((value) => validateMigrationList(this.config.migrationSource, value))
.then((value) => {
validateMigrationList(this.config.migrationSource, value);
return value;
})
.then(([all, completed]) => {
const migrationToRun = getNewMigrations(
this.config.migrationSource,
Expand Down Expand Up @@ -141,9 +147,10 @@ class Migrator {
}
migrationListResolver
.listAllAndCompleted(this.config, this.knex)
.tap((value) =>
validateMigrationList(this.config.migrationSource, value)
)
.then((value) => {
validateMigrationList(this.config.migrationSource, value);
return value;
})
.then((val) => {
const [allMigrations, completedMigrations] = val;

Expand All @@ -168,8 +175,9 @@ class Migrator {

return migrationListResolver
.listAllAndCompleted(this.config, this.knex)
.tap((value) => {
return validateMigrationList(this.config.migrationSource, value);
.then((value) => {
validateMigrationList(this.config.migrationSource, value);
return value;
})
.then(([all, completed]) => {
const migrationToRun = all
Expand Down Expand Up @@ -306,7 +314,10 @@ class Migrator {
.then((batchNo) => {
return this._waterfallBatch(batchNo, migrations, direction, trx);
})
.tap(() => this._freeLock(trx))
.then(async (res) => {
await this._freeLock(trx);
return res;
})
.catch(async (error) => {
let cleanupReady = Promise.resolve();

Expand Down
3 changes: 2 additions & 1 deletion src/runner.js
Expand Up @@ -52,8 +52,9 @@ assign(Runner.prototype, {

// Fire a single "end" event on the builder when
// all queries have successfully completed.
.tap(function() {
.then(function(res) {
runner.builder.emit('end');
return res;
})
);
},
Expand Down
4 changes: 2 additions & 2 deletions src/transaction.js
Expand Up @@ -156,7 +156,7 @@ class Transaction extends EventEmitter {
this._completed = true;
debug('%s error running transaction query', this.txid);
})
.tap(() => {
.then((res) => {
if (status === 1) {
this._resolver(value);
}
Expand All @@ -166,6 +166,7 @@ class Transaction extends EventEmitter {
}
this._rejecter(value);
}
return res;
});
if (status === 1 || status === 2) {
this._completed = true;
Expand Down Expand Up @@ -322,7 +323,6 @@ const promiseInterface = [
'spread',
'map',
'reduce',
'tap',
'thenReturn',
'return',
'yield',
Expand Down
3 changes: 2 additions & 1 deletion test/integration/logger.js
Expand Up @@ -66,12 +66,13 @@ module.exports = function(knex) {
const oldThen = qb.then;
qb.then = function() {
let promise = oldThen.apply(this, []);
promise = promise.tap(function(resp) {
promise = promise.then(function(resp) {
if (typeof returnval === 'function') {
expect(!!returnval(resp)).to.equal(true);
} else {
expect(stripDates(resp)).to.eql(returnval);
}
return resp;
});
return promise.then.apply(promise, arguments);
};
Expand Down