Mocha测试与DB的连接

时间:2016-01-26 09:58:54

标签: mysql node.js express mocha

我想使用Mocha测试与我的数据库的连接,但似乎我做错了,因为无论凭据是什么,我总是通过我的测试......

以下是我使用的代码:

describe('Access to DB', function(){
   describe('#fail', function(){
        it('should return -1 because wrong credentials', function(){
            var connection = mysql.createConnection({
                host: 'right host',
                user: 'wrong user',
                password: 'wrong password',
                database: 'right database'
            });
            connection.connect(function(err){
                assert.equal(7,err.stack.indexOf("ER_ACCESS_DENIED_ERROR"));
            });
        });
    })
});

我在我的程序上测试了代码,当连接实际失败时,它会抛出错误。在此错误中,我得到等于7的indexOf(ER_ACCESS_DENIED_ERROR)

知道这一点,为什么我的测试总是通过,我如何纠正它以满足我的需要?

1 个答案:

答案 0 :(得分:8)

你需要告诉mocha你正在编写的测试是异步的。向it函数调用添加完成回调,并从connection.connect调用此完成回调。完成回调非常聪明,可以确定错误是否作为第一个参数传递,如果传递错误,测试将失败。

describe('Access to DB', function(){
   describe('#fail', function(){
        it('should return -1 because wrong credentials', function(done){
            var connection = mysql.createConnection({
                host: 'right host',
                user: 'wrong user',
                password: 'wrong password',
                database: 'right database'
            });
            connection.connect(done);
        });
    })
});