真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Node.jsassert斷言原理與用法分析

本文實(shí)例講述了Node.js assert斷言原理與用法。分享給大家供大家參考,具體如下:

創(chuàng)新互聯(lián)堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的梁河網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!

node.js官方API中文版 http://nodeapi.ucdok.com/#/api/assert.html

assert 模塊主要用于編寫(xiě)程序的單元測(cè)試時(shí)使用,通過(guò)斷言可以提早發(fā)現(xiàn)和排查出錯(cuò)誤。

class : assert
- assert.fail(actual, expected, message, operator)
- assert(value, message), assert.ok(value, [message])
- assert.equal(actual, expected, [message])
- assert.notEqual(actual, expected, [message])
- assert.deepEqual(actual, expected, [message])
- assert.notDeepEqual(actual, expected, [message])
- assert.strictEqual(actual, expected, [message])
- assert.notStrictEqual(actual, expected, [message])
- assert.throws(block, [error], [message])
- assert.doesNotThrow(block, [message])
- assert.ifError(value)

console.log(assert);
/*
輸出如下
{ [Function: ok]
 AssertionError:
  { [Function: AssertionError]
   super_:
   { [Function: Error]
    captureStackTrace: [Function: captureStackTrace],
    stackTraceLimit: 10 } },
 fail: [Function: fail],
 ok: [Circular],
 equal: [Function: equal],
 notEqual: [Function: notEqual],
 deepEqual: [Function: deepEqual],
 notDeepEqual: [Function: notDeepEqual],
 strictEqual: [Function: strictEqual],
 notStrictEqual: [Function: notStrictEqual],
 throws: [Function],
 doesNotThrow: [Function],
 ifError: [Function] }
 */

assert是個(gè)函數(shù),函數(shù)名為ok。javascript中函數(shù)是Function類(lèi)的實(shí)例,也就是對(duì)象,所以可為其添加fail和equal等屬性。注意輸出結(jié)果第9行 ok:[Circular] 這個(gè)表述,這是指針循環(huán)的意思,即ok屬性指向了本身,所以調(diào)用assert.ok就相當(dāng)于調(diào)用了assert本身。

測(cè)試如下:

var test = function ok() {
  console.log('test ok');
}
//輸出 undefined
test.ok = test;
//輸出 { [Function: ok] ok: [Circular] }
test.fail = function fail() {
  console.log('test fail');
}
//輸出 [Function: fail]
console.log(test);
//輸出 {[Function: ok] ok: [Circular], fail: [Function: fail] }

比較相等操作符 ‘==' 會(huì)根據(jù)前面的參數(shù)進(jìn)行類(lèi)型轉(zhuǎn)換。

true == 1;  // true
1 == true;  // true
true == 2;  // false
2 == true;  // false
'' == false; // true
false == ''; // true
1 == '1';  // true

全等操作符 ‘===' 會(huì)先比較元素的類(lèi)型,只有類(lèi)型和值都一樣才算相等。

true === 1; // false
1 === '1'; // false

轉(zhuǎn)回正題:

注意:如果不設(shè)置message,就會(huì)將value打印出來(lái)。

assert.fail(actual, expected, message, operator)

在不檢查任何條件的情況下使斷言失敗。如果有錯(cuò)誤信息則輸出錯(cuò)誤信息,否則輸出actual和expected,中間用operator隔開(kāi)。

assert.fail(1, 1);
//輸出 AssertionError: 1 undefined 1
assert.fail(1, 1, undefined, '==');
//輸出 AssertionError: 1 == 1
assert.fail(1, 2, undefined, '>');
//輸出 AssertionError: 1 > 2
assert.fail(1, 2, 'whoops', '>');
//輸出 AssertionError: whoops

assert(value, message), assert.ok(value, [message])

assert(true, 'message');
//輸出 undefined
assert(false, 'message');
//輸出 AssertionError: message
assert.ok(true, 'message');
//輸出 undefined
assert.ok(false, 'message');
//輸出 AssertionError: message

assert.equal(actual, expected, [message])

和比較操作符(==)的判斷結(jié)果相同。當(dāng)兩邊都是基本變量的時(shí)候轉(zhuǎn)化為同一類(lèi)型的變量再進(jìn)行比較;如果是引用類(lèi)型的變量,則直接比較其內(nèi)存地址。

assert.equal(1, 1, 'message');
//輸出 undefined
assert.equal(1, '1', 'message');
//輸出 AssertionError: message

assert.strictEqual(actual, expected, [message])

Tests strict equality, as determined by the strict equality operator ( === )
嚴(yán)格相等,和全等符號(hào)(===)的判斷結(jié)果相同。

assert.strictEqual(1, 1, 'message');
//輸出 undefined
assert.strictEqual(1, '1', 'message');
//輸出 AssertionError: message
assert.strictEqual(1, '1', 'message');
//輸出 AssertionError: message

assert.deepEqual(actual, expected, [message])

當(dāng)比較的雙方均為基本類(lèi)型時(shí),等價(jià)于euqal()。
當(dāng)比較的雙方均為引用類(lèi)型時(shí),即將引用類(lèi)型中的每一個(gè)屬性用equal()進(jìn)行比較。

assert.equal(1, '1');
//輸出 undefined
assert.deepEqual(1, '1');
//輸出 undefined
assert.strictEqual(1, '1');
//輸出 assert.strictEqual(1, '1');
assert.equal({a:1}, {a:'1'});
//輸出 AssertionError: { a: 1 } == {a: '1'}
assert.deepEqual({a:1}, {a:'1'});
//輸出 undefined
assert.strictEqual({a:1}, {a:'1'});
//輸出 AssertionError: { a: 1 } == {a: '1'}

assert.throws(block, [error], [message])

Expects the function block to throw an error.
If specified, error can be a constructor, RegExp, or validation function.
If specified, message will be the message provided by the AssertionError if the block fails to throw.

assert.throws(
 () => {},
 Error
);
//輸出 AssertionError: Missing expected exception (Error)..
assert.throws(
 () => {throw new Error('Wrong value');},
 Error
);
//輸出 undefined
assert.throws(
 () => {throw new Error('Wrong value');},
 /Wrong/
);
//輸出 undefined
assert.throws(
 () => {throw new Error('Wrong value');},
 /wrong/
);
//輸出 Error: Wrong value
assert.throws(
 () => {throw new Error('Wrong value');},
 (err) => {
  if ((err instanceof Error) && /value/.test(err)) { return true;
  }
 },
 'unexpected error'
);
//輸出 undefined

Note that error can not be a string. If a string is provided as the second argument, then error is assumed to be omitted and the string will be used for message instead. This can lead to easy-to-miss mistakes:

注意:錯(cuò)誤信息不能是一個(gè)字符串。如果字符串被作為第二個(gè)參數(shù),那么錯(cuò)誤就會(huì)被假定為省略,并且字符串將會(huì)被用作提示信息,這樣很容易導(dǎo)致錯(cuò)誤。

assert.throws(()=>{throw new Error('Wrong value');}, 'Wrong', 'did not throw with expected message');
//輸出 undefined
assert.throws(()=>{}, 'Wrong', 'did not throw with expected message');
//輸出 AssertionError: Missing expected exception. Wrong
assert.throws(()=>{}, /Wrong/, 'did not throw with expected message');
//輸出 AssertionError: Missing expected exception. did not with expected message.

assert.ifError(value)

Throws value if value is truthy. This is useful when testing the error argument in callbacks.

當(dāng)值為真時(shí),拋出AssertionError錯(cuò)誤。該方法在測(cè)試回調(diào)函數(shù)的參數(shù)時(shí)非常有用。

assert.ifError(0);
//輸出 undefined
assert.ifError(1);
//輸出 1
assert.ifError('error');
//輸出 error
assert.ifError(new Error('there maybe wrong'));
//輸出 Error: there maybe wrong

希望本文所述對(duì)大家nodejs程序設(shè)計(jì)有所幫助。


名稱欄目:Node.jsassert斷言原理與用法分析
標(biāo)題URL:http://weahome.cn/article/jgccgp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部