这是mongoDB驱动程序文档中的一个示例。我一直试图找出assert.equal在示例中的作用,但是Node.js网站上的官方文档并没有给我太多帮助 - 官方文档说"测试浅,与平等比较运算符(==)的强制相等。"所以我首先怀疑它会根据相等的真值重新判断是真还是假。但它似乎并没有。
我确实看过这篇文章:Assert module use in nodejs?。它确实有所帮助 - 但还不够。我还是真的不明白"单元测试"已经完成了。任何帮助将不胜感激,但坚实的例子将是非常有用的!
var Db = require('mongodb').Db,
MongoClient = require('mongodb').MongoClient,
Server = require('mongodb').Server,
ReplSetServers = require('mongodb').ReplSetServers,
ObjectID = require('mongodb').ObjectID,
Binary = require('mongodb').Binary,
GridStore = require('mongodb').GridStore,
Grid = require('mongodb').Grid,
Code = require('mongodb').Code,
BSON = require('mongodb').pure().BSON,
assert = require('assert');
// Set up the connection to the local db
var mongoclient = new MongoClient(new Server("localhost", 27017), {native_parser: true});
// Open the connection to the server
mongoclient.open(function(err, mongoclient) {
// Get the first db and do an update document on it
var db = mongoclient.db("integration_tests");
db.collection('mongoclient_test').update({a:1}, {b:1}, {upsert:true}, function(err, result) {
assert.equal(null, err);
assert.equal(1, result);
// Get another db and do an update document on it
var db2 = mongoclient.db("integration_tests2");
db2.collection('mongoclient_test').update({a:1}, {b:1}, {upsert:true}, function(err, result) {
assert.equal(null, err);
assert.equal(1, result);
// Close the connection
mongoclient.close();
});
});
});
答案 0 :(得分:7)
Assert用于执行简单测试,以将预期结果与实际结果进行比较。如果实际结果与预期结果不匹配,则抛出异常。此功能仅用于开发目的。
它将停止执行。我运行了一个包含断言(assert.equal(3, 1);
)的简单节点js服务器,它停止了执行,因为3不等于1.
如果参数err
不为null,则以下断言将抛出异常:
assert.equal(null, err);
有关详细信息,请参阅以下链接: https://nodejs.org/api/assert.html
以下是上述链接中断言的描述:
assert模块提供了一组简单的断言测试 用于测试不变量。该模块供内部使用 Node.js,但可以通过require('断言')在应用程序代码中使用。 但是,assert不是一个测试框架,并不打算这样做 用作通用断言库。