You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
657 B
27 lines
657 B
var common = require('../../common');
|
|
var connection = common.createConnection({password: 'INVALID PASSWORD'});
|
|
var assert = require('assert');
|
|
|
|
var endErr;
|
|
connection.on('end', function(err) {
|
|
assert.equal(endErr, undefined);
|
|
endErr = err;
|
|
});
|
|
|
|
var connectErr;
|
|
connection.connect(function(err) {
|
|
assert.equal(connectErr, undefined);
|
|
connectErr = err;
|
|
|
|
connection.end();
|
|
});
|
|
|
|
process.on('exit', function() {
|
|
if (process.env.NO_GRANT == '1' && typeof endErr == 'undefined') return;
|
|
|
|
assert.equal(endErr.code, 'ER_ACCESS_DENIED_ERROR');
|
|
assert.ok(/access denied/i.test(endErr.message));
|
|
|
|
assert.strictEqual(endErr, connectErr);
|
|
});
|
|
|