assert 모듈은 기능 주장에 사용되는 다양한 기능을 제공합니다. 그 중 하나는 deepStrictEqual() 함수입니다. 이 함수는 실제 매개변수와 예상 매개변수 사이의 깊은 동등성을 테스트하는 데 사용됩니다. 조건이 충족되지 않으면 주장 오류가 발생합니다.
구문
assert.deepStrictEqual(actual, expected[, message])
매개변수
위의 매개변수는 다음과 같이 설명됩니다 -
-
실제 – 이것은 예상 매개변수에 대해 평가될 실제 값입니다.
-
예상 – 실제 값과 일치하는 예상 매개변수 값입니다.
-
메시지 – 이 매개변수는 실제 매개변수와 예상 매개변수가 일치하지 않을 경우 인쇄할 문자열 메시지 값을 보유합니다. 선택사항입니다.
Assert 모듈 설치
npm install assert
assert 모듈은 내장된 Node.js 모듈이므로 이 단계도 건너뛸 수 있습니다. 최신 assert 모듈을 얻으려면 다음 명령을 사용하여 assert 버전을 확인할 수 있습니다.
npm version assert
함수에서 모듈 가져오기
const assert = require("assert");
예시
이름이 assertDeepStrict.js인 파일을 만들고 아래 코드 조각을 복사합니다. 파일을 생성한 후 다음 명령어를 사용하여 이 코드를 실행합니다.
node assertDeepStrict.js
assertDeepStrict.js
// Importing the assert module const assert = require('assert').strict; try { // Calling the deep strict function assert.deepStrictEqual({ a: 3 }, { a: '3' }); console.log("No Error Occured...") } catch(error) { console.log("Error: ", error) }
출력
C:\home\node>> node assertDeepStrict.js Error: { AssertionError [ERR_ASSERTION]: Input A expected to strictly deepequal input B: + expected - actual { - a: 3 + a: '3' } at Object.<anonymous> (/home/node/mysql-test/assert.js:6:9) at Module._compile (internal/modules/cjs/loader.js:778:30) at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10) at Module.load (internal/modules/cjs/loader.js:653:32) at tryModuleLoad (internal/modules/cjs/loader.js:593:12) at Function.Module._load (internal/modules/cjs/loader.js:585:3) at Function.Module.runMain (internal/modules/cjs/loader.js:831:12) at startup (internal/bootstrap/node.js:283:19) at bootstrapNodeJSCore (internal/bootstrap/node.js:623:3) generatedMessage: true, name: 'AssertionError [ERR_ASSERTION]', code: 'ERR_ASSERTION', actual: { a: 3 }, expected: { a: '3' }, operator: 'deepStrictEqual' }
위의 예에서 한 값은 정수이고 다른 값은 문자열임을 알 수 있습니다. 이로 인해 메서드에서 위의 오류가 발생했습니다.
예시
예를 하나 더 살펴보겠습니다.
// Importing the assert module const assert = require('assert').strict; try { // Calling the deep strict function // Both the values are string assert.deepStrictEqual({ a: '3' }, { a: '3' }); console.log("No Error Occured...") } catch(error) { console.log("Error: ", error) }
출력
C:\home\node>> node assertDeepStrict.js No Error Occured...