From 07a54cbf291049cd43affe3d88708c08ffafe95a Mon Sep 17 00:00:00 2001 From: Leah Schumann Date: Thu, 23 Feb 2023 07:53:17 -0500 Subject: [PATCH] Added vehicle-protected-question unit tests --- src/digital-components/modal/modal.spec.js | 1 - .../text-block/text-block.spec.js | 5 +- .../vehicle-protected-question.spec.js | 72 +++++++++++++++++++ .../service-zip-question.spec.js | 7 +- .../button-main/button-main.spec.js | 16 ++--- 5 files changed, 83 insertions(+), 18 deletions(-) create mode 100644 src/layouts/service-location/mobile-location-modal-questions/vehicle-protected-question/vehicle-protected-question.spec.js diff --git a/src/digital-components/modal/modal.spec.js b/src/digital-components/modal/modal.spec.js index bcd6303bd..b738ac6ae 100644 --- a/src/digital-components/modal/modal.spec.js +++ b/src/digital-components/modal/modal.spec.js @@ -196,5 +196,4 @@ describe("modal.vue", () => { // Assert expect(hideMock).toHaveBeenCalled(); }); - }); diff --git a/src/digital-components/text-block/text-block.spec.js b/src/digital-components/text-block/text-block.spec.js index 170a91876..89b2fdf36 100644 --- a/src/digital-components/text-block/text-block.spec.js +++ b/src/digital-components/text-block/text-block.spec.js @@ -15,8 +15,8 @@ describe("modal.vue", () => { const wrapper = shallowMount(TextBlock, { mixins: [mockMixin], props: { - customText: "customText" - } + customText: "customText", + }, }); expect(wrapper.html()).toEqual(expect.stringContaining("customText")); @@ -48,7 +48,6 @@ describe("modal.vue", () => { }); expect(wrapper.html()).toEqual(expect.stringContaining(mockProps["fontWeight"])); }); - }); /////////////// diff --git a/src/layouts/service-location/mobile-location-modal-questions/vehicle-protected-question/vehicle-protected-question.spec.js b/src/layouts/service-location/mobile-location-modal-questions/vehicle-protected-question/vehicle-protected-question.spec.js new file mode 100644 index 000000000..c1e246707 --- /dev/null +++ b/src/layouts/service-location/mobile-location-modal-questions/vehicle-protected-question/vehicle-protected-question.spec.js @@ -0,0 +1,72 @@ +import { shallowMount } from "@vue/test-utils"; +import vehicleProtectedQuestion from "./vehicle-protected-question"; + +jest.mock("@/digital-components/textbox-question/textbox-question", () => ({ + getCmsContent: jest.fn(), +})); + +const mockMixin = { + methods: { + getCmsContent: jest.fn((widgetName, cmsFieldName) => { + if (cmsFieldName === "Answers") { + return [ + { + "AnswerImageUrl": "", + "Name": "YesAnswer", + "SubText": "", + "SubWidgetName": "", + "Text": "Yes" + }, + { + "AnswerImageUrl": "", + "Name": "NoAnswer", + "SubText": "", + "SubWidgetName": "", + "Text": "No" + } + ] + } + return "QuestionText"; + }), + }, +}; + +describe("service-zip-question.vue", () => { + it("Should get the modelValue", async () => { + // Arrange + const answer = "YesAnswer"; + const wrapper = shallowMount(vehicleProtectedQuestion, { + mixins: [mockMixin], + props: { + modelValue: answer, + }, + attachTo: document.body, + }); + + // Act + const modelValueAnswer = wrapper.vm.selectedValue; + + // Assert + expect(modelValueAnswer).toEqual(answer); + + }); + + it("Should emit to set value", async () => { + // Arrange + const yesAnswer = "YesAnswer"; + const noAnswer = "NoAnswer" + const wrapper = shallowMount(vehicleProtectedQuestion, { + mixins: [mockMixin], + props: { + modelValue: yesAnswer, + }, + attachTo: document.body, + }); + + // Act + wrapper.vm.selectedValue = noAnswer; + + // Assert + expect(wrapper.emitted("update:modelValue")).toEqual([[noAnswer]]); + }); +}); diff --git a/src/layouts/service-location/service-zip-modal-question/service-zip-question/service-zip-question.spec.js b/src/layouts/service-location/service-zip-modal-question/service-zip-question/service-zip-question.spec.js index d6b861a75..b51ecc9d3 100644 --- a/src/layouts/service-location/service-zip-modal-question/service-zip-question/service-zip-question.spec.js +++ b/src/layouts/service-location/service-zip-modal-question/service-zip-question/service-zip-question.spec.js @@ -14,7 +14,7 @@ describe("service-zip-question.vue", () => { // Act const modelValueText = wrapper.vm.value; - wrapper.vm.value = "test also" + wrapper.vm.value = "test also"; // Assert expect(modelValueText).toEqual("test"); @@ -32,10 +32,9 @@ describe("service-zip-question.vue", () => { // Act const modelValueText = wrapper.vm.value; - wrapper.vm.value = "test also" + wrapper.vm.value = "test also"; // Assert expect(wrapper.emitted("update:modelValue")).toEqual([["test also"]]); - }) - + }); }); diff --git a/src/ux-components/button-main/button-main.spec.js b/src/ux-components/button-main/button-main.spec.js index c746bb24d..41e244a72 100644 --- a/src/ux-components/button-main/button-main.spec.js +++ b/src/ux-components/button-main/button-main.spec.js @@ -91,7 +91,7 @@ describe("buttonMain.vue", () => { ); wrapper.setData({ - isLoaderDisplayed: true + isLoaderDisplayed: true, }); // Act @@ -116,7 +116,7 @@ describe("buttonMain.vue", () => { ); wrapper.setData({ - isLoaderDisplayed: true + isLoaderDisplayed: true, }); // Act @@ -125,7 +125,6 @@ describe("buttonMain.vue", () => { // Assert expect(wrapper.vm.isLoaderDisplayed).toBe(false); - }); it("Should emit 'click-event' event when clicking if the button is enabled", async () => { @@ -136,22 +135,20 @@ describe("buttonMain.vue", () => { props: { loaderPosition: "right", loaderEnabled: true, - isDisabled: false + isDisabled: false, }, }) ); - const buttonElement = wrapper.find("button"); - // Act + // Act buttonElement.trigger("click"); await nextTick(); // Assert expect(wrapper.emitted("click-event")).toBeTruthy(); - }); it("Should not emit 'click-event' event when clicking if the button is disabled", async () => { @@ -162,21 +159,20 @@ describe("buttonMain.vue", () => { props: { loaderPosition: "right", loaderEnabled: true, - isDisabled: true + isDisabled: true, }, }) ); const buttonElement = wrapper.find("button"); - // Act + // Act buttonElement.trigger("click"); await nextTick(); // Assert expect(wrapper.emitted("click-event")).toBeFalsy(); - }); });