From d6e3d465e1ea507c5b427318e88b0ae930a06427 Mon Sep 17 00:00:00 2001 From: Ed Brannin Date: Wed, 30 Oct 2019 22:16:46 -0400 Subject: [PATCH] Test coverage for EleventyErrorUtil --- test/EleventyErrorUtilTest.js | 51 +++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 test/EleventyErrorUtilTest.js diff --git a/test/EleventyErrorUtilTest.js b/test/EleventyErrorUtilTest.js new file mode 100644 index 000000000..9fa210ec1 --- /dev/null +++ b/test/EleventyErrorUtilTest.js @@ -0,0 +1,51 @@ +import test from "ava"; +import EleventyErrorUtil from "../src/EleventyErrorUtil"; + +const SAMPLE_ERROR = new Error("Nothing to see here"); + +const { + cleanMessage, + hasEmbeddedError, + convertErrorToString, + deconvertErrorToObject +} = EleventyErrorUtil; + +test("hasEmbeddedError()", t => { + t.false(hasEmbeddedError("")); + t.true(hasEmbeddedError(convertErrorToString(SAMPLE_ERROR))); +}); + +test("cleanMessage()", t => { + const text = "I am the very model of a sample text input"; + t.is(cleanMessage(text), text); + t.is(cleanMessage(text + convertErrorToString(SAMPLE_ERROR)), text); +}); + +test("deconvertErrorToObject() should throw on invalid inputs", t => { + t.throws( + () => deconvertErrorToObject(undefined), + "Could not convert error object from: undefined" + ); + t.throws( + () => deconvertErrorToObject(""), + "Could not convert error object from: " + ); + t.throws( + () => deconvertErrorToObject("Not an error"), + "Could not convert error object from: Not an error" + ); +}); + +test("deconvertErrorToObject() should return its argument if it does not contain another error", t => { + t.is(deconvertErrorToObject(SAMPLE_ERROR), SAMPLE_ERROR); +}); + +test("deconvertErrorToObject() should get message and stack from convertErrorToString()", t => { + const nestingError = new Error( + "This error contains a sample error: " + convertErrorToString(SAMPLE_ERROR) + ); + const result = deconvertErrorToObject(nestingError); + t.is(result.name, nestingError.name); + t.is(result.message, SAMPLE_ERROR.message); + t.is(result.stack, SAMPLE_ERROR.stack); +});