CSR-222: updates to unit tests and helper

This commit is contained in:
Adam Caouette 2021-12-17 18:56:14 -05:00
parent 42b1bbe031
commit 9c44e35058
3 changed files with 37 additions and 6 deletions

View file

@ -1,5 +1,6 @@
import { storeActions } from "@/constants/store-actions";
import { storeMutations } from "@/constants/store-mutations.js";
import { navigationScenarios } from "@/router/router-constants/navigation-scenarios.js";
export function getMountOptions(mockData) {
// Define our mocks to attached to the 'global' object for Vue/Jest.
@ -21,6 +22,7 @@ export function getMountOptions(mockData) {
// Mock const files
mocks.storeActions = storeActions;
mocks.storeMutations = storeMutations;
mocks.navigationScenarios = navigationScenarios;
// Mock $store and $router when accessing this.$store/$router
mocks.$store = mockData.store;

View file

@ -13,7 +13,7 @@ jest.mock("@/helpers/layout-helper.js", () => ({
describe("vehicle-make.vue", () => {
test("Make question component is initized with api data", async (done) => {
//Arange
//Arrange
const radioQuestionCmsContent = { QuestionText: "What make is your vehicle?" };
const makeQuestionInitialData = ["honda", "ford", "dodge"];
const { wrapper, apiPromise } = setupMocks( {
@ -35,7 +35,7 @@ describe("vehicle-make.vue", () => {
describe("vehicle-make.vue", () => {
test("Page header is passed data from CMS", async (done) => {
//Arange
//Arrange
const { wrapper, apiPromise } = setupMocks( { pageHeaderWidgetHeaderText: "Select a make to get started" });
//Act
@ -50,10 +50,38 @@ describe("vehicle-make.vue", () => {
});
});
describe("vehicle-make.vue", () => {
test("BackButtonAction triggers a router.navigate change", async (done) => {
//Arrange
const { wrapper, apiPromise } = setupMocks( {
pageHeaderWidgetHeaderText: "Select a make to get started",
mountOptionsMockData: {
router: {
navigate: jest.fn()
},
},
});
const backButtonActionMethod = jest.spyOn(wrapper.vm, "backButtonAction");
//Act
vehicleMake.beforeRouteEnter.call(wrapper.vm, { query: { fmgPage: "vehicle-make" } }, undefined, (c) => c(wrapper.vm));
wrapper.vm.backButtonAction();
await nextTick();
//Assert
apiPromise.finally(() => {
expect(wrapper.vm.$router.navigate).toHaveBeenCalled();
done();
});
});
});
function setupMocks({
radioQuestionCmsContent = {},
makeQuestionInitialData = {},
pageHeaderWidgetHeaderText = {},
mountOptionsMockData = {},
}) {
//Mock api responses
@ -84,7 +112,7 @@ function setupMocks({
loadInitialData: jest.fn(),
initializeComponent: jest.fn(),
};
const mountOptions = getMountOptions({ });
const mountOptions = getMountOptions(mountOptionsMockData);
const wrapper = shallowMount(vehicleMake, mountOptions);
const makeQuestionWrapper = wrapper.findComponent({ name: "makeQuestion" });
makeQuestionWrapper.vm.initializeComponent = makeQuestion.methods.initializeComponent;

View file

@ -13,7 +13,7 @@ jest.mock("@/helpers/layout-helper.js", () => ({
describe("vehicle-year.vue", () => {
test("Year question component is initized with api data", async (done) => {
//Arange
//Arrange
const radioQuestionCmsContent = { QuestionText: "What year is your vehicle?" };
const yearQuestionInitialData = ["2023", "2022", "2021"];
const { wrapper, apiPromise } = setupMocks( {
@ -35,7 +35,7 @@ describe("vehicle-year.vue", () => {
describe("vehicle-year.vue", () => {
test("Page header is passed data from CMS", async (done) => {
//Arange
//Arrange
const { wrapper, apiPromise } = setupMocks( { pageHeaderWidgetHeaderText: "Select a year to get started" });
//Act
@ -54,6 +54,7 @@ function setupMocks({
radioQuestionCmsContent = {},
yearQuestionInitialData = {},
pageHeaderWidgetHeaderText = {},
mountOptionsMockData = {},
}) {
//Mock api responses
@ -84,7 +85,7 @@ function setupMocks({
loadInitialData: jest.fn(),
initializeComponent: jest.fn(),
};
const mountOptions = getMountOptions({ });
const mountOptions = getMountOptions(mountOptionsMockData);
const wrapper = shallowMount(vehicleYear, mountOptions);
const yearQuestionWrapper = wrapper.findComponent({ name: "yearQuestion" });
yearQuestionWrapper.vm.initializeComponent = yearQuestion.methods.initializeComponent;