commit
85af0596bd
3 changed files with 933 additions and 949 deletions
|
|
@ -30,8 +30,8 @@ jest.mock("@/store", () => ({
|
||||||
dispatch: jest.fn(),
|
dispatch: jest.fn(),
|
||||||
getters: {
|
getters: {
|
||||||
order: {
|
order: {
|
||||||
customer: { emailAddress: "test@test.com"},
|
customer: { emailAddress: "test@test.com" },
|
||||||
serviceLocation: {zip: "11111"},
|
serviceLocation: { zip: "11111" },
|
||||||
},
|
},
|
||||||
vehicle: {
|
vehicle: {
|
||||||
carId: "TESTID",
|
carId: "TESTID",
|
||||||
|
|
@ -48,382 +48,353 @@ jest.mock("@/store", () => ({
|
||||||
}));
|
}));
|
||||||
|
|
||||||
describe("license-plate-lookup.vue", () => {
|
describe("license-plate-lookup.vue", () => {
|
||||||
test("CarId set, arePagePrerequisitesValid should be true ", async () => {
|
describe("get values from store", () => {
|
||||||
//Arrange
|
test("getLicensePlateFromStore returns store license plate", async () => {
|
||||||
const { wrapper } = setupMocks({});
|
// Arrange
|
||||||
|
const { wrapper } = setupMocks({});
|
||||||
|
|
||||||
//Act
|
// ACT
|
||||||
licensePlateLookup.beforeRouteEnter.call(
|
const licensePlate = wrapper.vm.getLicensePlateFromStore();
|
||||||
wrapper.vm,
|
|
||||||
{ query: { fmgPage: "license-plate-lookup" } },
|
|
||||||
undefined,
|
|
||||||
(c) => c(wrapper.vm)
|
|
||||||
);
|
|
||||||
|
|
||||||
let arePagePrerequisitesValid = wrapper.vm.arePagePrerequisitesValid();
|
// Assert
|
||||||
await nextTick();
|
expect(licensePlate).toEqual("TESTPLATE");
|
||||||
|
});
|
||||||
|
|
||||||
//Assert
|
test("getRegistrationZipFromStore returns store registration zip", async () => {
|
||||||
expect(arePagePrerequisitesValid).toBe(true);
|
// Arrange
|
||||||
|
const { wrapper } = setupMocks({});
|
||||||
|
|
||||||
|
// ACT
|
||||||
|
const registrationZip = wrapper.vm.getRegistrationZipFromStore();
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
expect(registrationZip).toEqual("12345");
|
||||||
|
});
|
||||||
|
|
||||||
|
test("getEmailFromStore returns store customer email", async () => {
|
||||||
|
// Arrange
|
||||||
|
const { wrapper } = setupMocks({});
|
||||||
|
|
||||||
|
// ACT
|
||||||
|
const customerEmail = wrapper.vm.getEmailFromStore();
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
expect(customerEmail).toEqual("test@test.com");
|
||||||
|
});
|
||||||
|
|
||||||
|
test("getServiceZipFromStore returns store service zip", async () => {
|
||||||
|
// Arrange
|
||||||
|
const { wrapper } = setupMocks({});
|
||||||
|
|
||||||
|
// ACT
|
||||||
|
const serviceZip = wrapper.vm.getServiceZipFromStore();
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
expect(serviceZip).toEqual("11111");
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
|
||||||
describe("license-plate-lookup.vue", () => {
|
describe("navigation", () => {
|
||||||
test("BackButtonAction triggers a router.navigate change", async () => {
|
test("BackButtonAction triggers a router.navigate change", async () => {
|
||||||
|
|
||||||
//Arrange
|
//Arrange
|
||||||
const { wrapper } = setupMocks({});
|
const { wrapper } = setupMocks({});
|
||||||
|
|
||||||
|
//Act
|
||||||
|
licensePlateLookup.beforeRouteEnter.call(
|
||||||
|
wrapper.vm,
|
||||||
|
{ query: { fmgPage: "license-plate-lookup" } },
|
||||||
|
undefined,
|
||||||
|
(c) => c(wrapper.vm)
|
||||||
|
);
|
||||||
|
|
||||||
|
wrapper.vm.backButtonAction();
|
||||||
|
|
||||||
|
//Assert
|
||||||
|
expect(wrapper.vm.$router.navigate).toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
//Act
|
describe("on forwardButtonAction click", () => {
|
||||||
licensePlateLookup.beforeRouteEnter.call(
|
test("Navigate forward should be called and isCarId should be set to false when data entered matches store data on forwardButtonAction click", async () => {
|
||||||
wrapper.vm,
|
|
||||||
{ query: { fmgPage: "license-plate-lookup" } },
|
|
||||||
undefined,
|
|
||||||
(c) => c(wrapper.vm)
|
|
||||||
);
|
|
||||||
|
|
||||||
wrapper.vm.backButtonAction();
|
// Arrange
|
||||||
|
const { wrapper } = setupMocks({});
|
||||||
//Assert
|
|
||||||
expect(wrapper.vm.$router.navigate).toHaveBeenCalled();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe("license-plate-lookup.vue", () => {
|
|
||||||
test("getLicensePlateFromStore returns store license plate", async () => {
|
|
||||||
|
|
||||||
// Arrange
|
wrapper.vm.validateZip = jest.fn().mockImplementation(() => {
|
||||||
const { wrapper } = setupMocks({});
|
return { data: { isServiceable: true } };
|
||||||
|
});
|
||||||
// ACT
|
wrapper.vm.getCmsContent = jest.fn().mockImplementation(() => {
|
||||||
const licensePlate = wrapper.vm.getLicensePlateFromStore();
|
return '';
|
||||||
|
});
|
||||||
// Assert
|
const vinLookup = { data: { vehicle: { carId: "TESTID" } } }
|
||||||
expect(licensePlate).toEqual("TESTPLATE");
|
wrapper.vm.lookupVin = jest.fn().mockImplementation(() => {
|
||||||
});
|
return { catch: () => vinLookup };
|
||||||
});
|
});
|
||||||
|
wrapper.vm.navigateForward = jest.fn();
|
||||||
describe("license-plate-lookup.vue", () => {
|
|
||||||
test("getRegistrationZipFromStore returns store registration zip", async () => {
|
|
||||||
|
|
||||||
// Arrange
|
//Act
|
||||||
const { wrapper } = setupMocks({});
|
licensePlateLookup.beforeRouteEnter.call(
|
||||||
|
wrapper.vm,
|
||||||
// ACT
|
{ query: { fmgPage: "license-plate-lookup" } },
|
||||||
const registrationZip = wrapper.vm.getRegistrationZipFromStore();
|
undefined,
|
||||||
|
(c) => c(wrapper.vm)
|
||||||
// Assert
|
);
|
||||||
expect(registrationZip).toEqual("12345");
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe("license-plate-lookup.vue", () => {
|
|
||||||
test("getEmailFromStore returns store customer email", async () => {
|
|
||||||
|
|
||||||
// Arrange
|
await wrapper.vm.forwardButtonAction();
|
||||||
const { wrapper } = setupMocks({});
|
|
||||||
|
|
||||||
// ACT
|
|
||||||
const customerEmail = wrapper.vm.getEmailFromStore();
|
|
||||||
|
|
||||||
// Assert
|
|
||||||
expect(customerEmail).toEqual("test@test.com");
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe("license-plate-lookup.vue", () => {
|
|
||||||
test("getServiceZipFromStore returns store service zip", async () => {
|
|
||||||
|
|
||||||
// Arrange
|
//Assert
|
||||||
const { wrapper } = setupMocks({});
|
expect(wrapper.vm.navigateForward).toHaveBeenCalled();
|
||||||
|
expect(wrapper.vm.isCarIdDifferent).toEqual(false);
|
||||||
|
});
|
||||||
|
|
||||||
// ACT
|
test("Function should stop and datam isRegistrationZipServicable should be set to false when service zip entered returns false on forwardButtonAction click", async () => {
|
||||||
const serviceZip = wrapper.vm.getServiceZipFromStore();
|
// Arrange
|
||||||
|
const { wrapper } = setupMocks({});
|
||||||
|
|
||||||
|
wrapper.vm.validateZip = jest.fn().mockImplementation(() => {
|
||||||
|
return { data: { isServiceable: false } };
|
||||||
|
});
|
||||||
|
wrapper.vm.getCmsContent = jest.fn().mockImplementation(() => {
|
||||||
|
return '';
|
||||||
|
});
|
||||||
|
wrapper.vm.$refs.funnelFooter.removeLoader = jest.fn();
|
||||||
|
|
||||||
// Assert
|
//Act
|
||||||
expect(serviceZip).toEqual("11111");
|
licensePlateLookup.beforeRouteEnter.call(
|
||||||
});
|
wrapper.vm,
|
||||||
});
|
{ query: { fmgPage: "license-plate-lookup" } },
|
||||||
|
undefined,
|
||||||
|
(c) => c(wrapper.vm)
|
||||||
|
);
|
||||||
|
|
||||||
|
await wrapper.vm.forwardButtonAction();
|
||||||
|
|
||||||
|
//Assert
|
||||||
|
expect(wrapper.vm.isRegistrationZipServicable).toEqual(false);
|
||||||
|
});
|
||||||
|
|
||||||
describe("license-plate-lookup.vue", () => {
|
test("Function should stop and datam isCarIdDifferent should be set to true when carId entered doesn't match store carId or previously entered carId on forwardButtonAction click", async () => {
|
||||||
test("Navigate forward should be called and isCarId should be set to false when data entered matches store data on forwardButtonAction click", async () => {
|
// Arrange
|
||||||
|
const { wrapper } = setupMocks({});
|
||||||
|
|
||||||
|
wrapper.vm.validateZip = jest.fn().mockImplementation(() => {
|
||||||
|
return { data: { isServiceable: true } };
|
||||||
|
});
|
||||||
|
wrapper.vm.getCmsContent = jest.fn().mockImplementation(() => {
|
||||||
|
return '';
|
||||||
|
});
|
||||||
|
const vinLookup = { data: { vehicle: { carId: "TESTID1" } } }
|
||||||
|
wrapper.vm.lookupVin = jest.fn().mockImplementation(() => {
|
||||||
|
return { catch: () => vinLookup };
|
||||||
|
});
|
||||||
|
wrapper.vm.$refs.funnelFooter.removeLoader = jest.fn();
|
||||||
|
wrapper.vm.$refs.funnelFooter.updateButtonText = jest.fn();
|
||||||
|
|
||||||
|
//Act
|
||||||
|
licensePlateLookup.beforeRouteEnter.call(
|
||||||
|
wrapper.vm,
|
||||||
|
{ query: { fmgPage: "license-plate-lookup" } },
|
||||||
|
undefined,
|
||||||
|
(c) => c(wrapper.vm)
|
||||||
|
);
|
||||||
|
|
||||||
|
await wrapper.vm.forwardButtonAction();
|
||||||
|
|
||||||
|
//Assert
|
||||||
|
expect(wrapper.vm.isCarIdDifferent).toEqual(true);
|
||||||
|
});
|
||||||
|
|
||||||
// Arrange
|
test("Navigate forward should be called and isCarId should be set to true when carId entered matches previously entered carId and rest of data entered matches store data on forwardButtonAction click", async () => {
|
||||||
const { wrapper } = setupMocks({});
|
|
||||||
|
|
||||||
wrapper.vm.validateZip = jest.fn().mockImplementation(() => {
|
// Arrange
|
||||||
return {data: {isServiceable: true}};
|
const { wrapper } = setupMocks({});
|
||||||
|
|
||||||
|
wrapper.vm.validateZip = jest.fn().mockImplementation(() => {
|
||||||
|
return { data: { isServiceable: true } };
|
||||||
|
});
|
||||||
|
wrapper.vm.getCmsContent = jest.fn().mockImplementation(() => {
|
||||||
|
return '';
|
||||||
|
});
|
||||||
|
const vinLookup = { data: { vehicle: { carId: "TESTID1" } } }
|
||||||
|
wrapper.vm.lookupVin = jest.fn().mockImplementation(() => {
|
||||||
|
return { catch: () => vinLookup };
|
||||||
|
});
|
||||||
|
wrapper.vm.previouslyEnteredCarId = "TESTID1";
|
||||||
|
wrapper.vm.navigateForward = jest.fn();
|
||||||
|
|
||||||
|
//Act
|
||||||
|
licensePlateLookup.beforeRouteEnter.call(
|
||||||
|
wrapper.vm,
|
||||||
|
{ query: { fmgPage: "license-plate-lookup" } },
|
||||||
|
undefined,
|
||||||
|
(c) => c(wrapper.vm)
|
||||||
|
);
|
||||||
|
|
||||||
|
await wrapper.vm.forwardButtonAction();
|
||||||
|
|
||||||
|
//Assert
|
||||||
|
expect(wrapper.vm.navigateForward).toHaveBeenCalled();
|
||||||
|
expect(wrapper.vm.isCarIdDifferent).toEqual(true);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
wrapper.vm.getCmsContent = jest.fn().mockImplementation(() => {
|
|
||||||
return '';
|
describe("navigateForward", () => {
|
||||||
});
|
test("NavigateAfterSave should be called if isCarIdDifferent is true and isSelectedGlassAvailableForVehicle is false when navigateForward is called", async () => {
|
||||||
const vinLookup = {data: {vehicle: {carId: "TESTID"}}}
|
|
||||||
wrapper.vm.lookupVin = jest.fn().mockImplementation(() => {
|
// Arrange
|
||||||
return {catch: () => vinLookup};
|
const { wrapper } = setupMocks({});
|
||||||
|
|
||||||
|
//Act
|
||||||
|
wrapper.vm.isCarIdDifferent = true;
|
||||||
|
wrapper.vm.isSelectedGlassAvailableForVehicle = false;
|
||||||
|
wrapper.vm.$router.navigateAfterSave = jest.fn();
|
||||||
|
wrapper.vm.getCmsContent = jest.fn().mockImplementation(() => {
|
||||||
|
return '';
|
||||||
|
});
|
||||||
|
store.dispatch = jest.fn();
|
||||||
|
|
||||||
|
await wrapper.vm.navigateForward();
|
||||||
|
|
||||||
|
//Assert
|
||||||
|
expect(wrapper.vm.$router.navigateAfterSave).toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
test("navigateAfterSaveToHeritageFunnel should be called if isCarIdDifferent is false or isSelectedGlassAvailableForVehicle is true when navigateForward is called", async () => {
|
||||||
|
|
||||||
|
// Arrange
|
||||||
|
const { wrapper } = setupMocks({});
|
||||||
|
|
||||||
|
//Act
|
||||||
|
wrapper.vm.isCarIdDifferent = false;
|
||||||
|
wrapper.vm.$refs.loadingModal.showModal = jest.fn();
|
||||||
|
wrapper.vm.getCmsContent = jest.fn().mockImplementation(() => {
|
||||||
|
return '';
|
||||||
|
});
|
||||||
|
navigateToHeritage.navigateAfterSaveToHeritageFunnel = jest.fn();
|
||||||
|
await wrapper.vm.navigateForward();
|
||||||
|
|
||||||
|
//Assert
|
||||||
|
expect(navigateToHeritage.navigateAfterSaveToHeritageFunnel).toHaveBeenCalled();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
wrapper.vm.navigateForward = jest.fn();
|
|
||||||
|
|
||||||
//Act
|
|
||||||
licensePlateLookup.beforeRouteEnter.call(
|
|
||||||
wrapper.vm,
|
|
||||||
{ query: { fmgPage: "license-plate-lookup" } },
|
|
||||||
undefined,
|
|
||||||
(c) => c(wrapper.vm)
|
|
||||||
);
|
|
||||||
|
|
||||||
await wrapper.vm.forwardButtonAction();
|
|
||||||
|
|
||||||
//Assert
|
|
||||||
expect(wrapper.vm.navigateForward).toHaveBeenCalled();
|
|
||||||
expect(wrapper.vm.isCarIdDifferent).toEqual(false);
|
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
|
||||||
describe("license-plate-lookup.vue", () => {
|
describe("button text", () => {
|
||||||
test("Function should stop and datam isRegistrationZipServicable should be set to false when service zip entered returns false on forwardButtonAction click", async () => {
|
test("Button Text should revert to initial value when licensePlate textfield has new text", async () => {
|
||||||
|
|
||||||
// Arrange
|
// Arrange
|
||||||
const { wrapper } = setupMocks({});
|
const { wrapper } = setupMocks({});
|
||||||
|
|
||||||
wrapper.vm.validateZip = jest.fn().mockImplementation(() => {
|
//Act
|
||||||
return {data: {isServiceable: false}};
|
wrapper.vm.licensePlate = "NEWPLATE";
|
||||||
|
wrapper.vm.getCmsContent = jest.fn();
|
||||||
|
wrapper.vm.$refs.funnelFooter.updateButtonText = jest.fn();
|
||||||
|
await wrapper.vm.$nextTick();
|
||||||
|
|
||||||
|
//Assert
|
||||||
|
expect(wrapper.vm.$refs.funnelFooter.updateButtonText).toHaveBeenCalled();
|
||||||
});
|
});
|
||||||
wrapper.vm.getCmsContent = jest.fn().mockImplementation(() => {
|
|
||||||
return '';
|
|
||||||
});
|
|
||||||
wrapper.vm.$refs.funnelFooter.removeLoader = jest.fn();
|
|
||||||
//Act
|
|
||||||
licensePlateLookup.beforeRouteEnter.call(
|
|
||||||
wrapper.vm,
|
|
||||||
{ query: { fmgPage: "license-plate-lookup" } },
|
|
||||||
undefined,
|
|
||||||
(c) => c(wrapper.vm)
|
|
||||||
);
|
|
||||||
|
|
||||||
await wrapper.vm.forwardButtonAction();
|
|
||||||
|
|
||||||
//Assert
|
test("Button Text should revert to initial value when registrationZip textfield has new text", async () => {
|
||||||
expect(wrapper.vm.isRegistrationZipServicable).toEqual(false);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe("license-plate-lookup.vue", () => {
|
// Arrange
|
||||||
test("Function should stop and datam isCarIdDifferent should be set to true when carId entered doesn't match store carId or previously entered carId on forwardButtonAction click", async () => {
|
const { wrapper } = setupMocks({});
|
||||||
|
|
||||||
// Arrange
|
//Act
|
||||||
const { wrapper } = setupMocks({});
|
wrapper.vm.registrationZip = "55555";
|
||||||
|
wrapper.vm.getCmsContent = jest.fn();
|
||||||
wrapper.vm.validateZip = jest.fn().mockImplementation(() => {
|
wrapper.vm.$refs.funnelFooter.updateButtonText = jest.fn();
|
||||||
return {data: {isServiceable: true}};
|
await wrapper.vm.$nextTick();
|
||||||
|
|
||||||
|
//Assert
|
||||||
|
expect(wrapper.vm.$refs.funnelFooter.updateButtonText).toHaveBeenCalled();
|
||||||
});
|
});
|
||||||
wrapper.vm.getCmsContent = jest.fn().mockImplementation(() => {
|
|
||||||
return '';
|
test("Button Text should revert to initial value when serviceZip textfield has new text", async () => {
|
||||||
});
|
|
||||||
const vinLookup = {data: {vehicle: {carId: "TESTID1"}}}
|
// Arrange
|
||||||
wrapper.vm.lookupVin = jest.fn().mockImplementation(() => {
|
const { wrapper } = setupMocks({});
|
||||||
return {catch: () => vinLookup};
|
|
||||||
|
//Act
|
||||||
|
wrapper.vm.serviceZip = "55555";
|
||||||
|
wrapper.vm.getCmsContent = jest.fn();
|
||||||
|
wrapper.vm.$refs.funnelFooter.updateButtonText = jest.fn();
|
||||||
|
await wrapper.vm.$nextTick();
|
||||||
|
|
||||||
|
//Assert
|
||||||
|
expect(wrapper.vm.$refs.funnelFooter.updateButtonText).toHaveBeenCalled();
|
||||||
});
|
});
|
||||||
wrapper.vm.$refs.funnelFooter.removeLoader = jest.fn();
|
})
|
||||||
wrapper.vm.$refs.funnelFooter.updateButtonText = jest.fn();
|
|
||||||
|
|
||||||
//Act
|
describe("miscellaneous", () => {
|
||||||
licensePlateLookup.beforeRouteEnter.call(
|
test("CarId set, arePagePrerequisitesValid should be true ", async () => {
|
||||||
wrapper.vm,
|
//Arrange
|
||||||
{ query: { fmgPage: "license-plate-lookup" } },
|
const { wrapper } = setupMocks({});
|
||||||
undefined,
|
|
||||||
(c) => c(wrapper.vm)
|
//Act
|
||||||
);
|
licensePlateLookup.beforeRouteEnter.call(
|
||||||
|
wrapper.vm,
|
||||||
await wrapper.vm.forwardButtonAction();
|
{ query: { fmgPage: "license-plate-lookup" } },
|
||||||
|
undefined,
|
||||||
//Assert
|
(c) => c(wrapper.vm)
|
||||||
expect(wrapper.vm.isCarIdDifferent).toEqual(true);
|
);
|
||||||
});
|
|
||||||
});
|
let arePagePrerequisitesValid = wrapper.vm.arePagePrerequisitesValid();
|
||||||
|
await nextTick();
|
||||||
describe("license-plate-lookup.vue", () => {
|
|
||||||
test("Navigate forward should be called and isCarId should be set to true when carId entered matches previously entered carId and rest of data entered matches store data on forwardButtonAction click", async () => {
|
//Assert
|
||||||
|
expect(arePagePrerequisitesValid).toBe(true);
|
||||||
// Arrange
|
|
||||||
const { wrapper } = setupMocks({});
|
|
||||||
|
|
||||||
wrapper.vm.validateZip = jest.fn().mockImplementation(() => {
|
|
||||||
return {data: {isServiceable: true}};
|
|
||||||
});
|
});
|
||||||
wrapper.vm.getCmsContent = jest.fn().mockImplementation(() => {
|
|
||||||
return '';
|
test("Dispatch reset damage and dependencies should be called if isCarIdDifferent is true and isSelectedGlassAvailableForVehicle is false when updateCustomerInfo is called", async () => {
|
||||||
});
|
|
||||||
const vinLookup = {data: {vehicle: {carId: "TESTID1"}}}
|
// Arrange
|
||||||
wrapper.vm.lookupVin = jest.fn().mockImplementation(() => {
|
const { wrapper } = setupMocks({});
|
||||||
return {catch: () => vinLookup};
|
|
||||||
|
//Act
|
||||||
|
wrapper.vm.isCarIdDifferent = true;
|
||||||
|
wrapper.vm.isSelectedGlassAvailableForVehicle = false;
|
||||||
|
wrapper.vm.getCmsContent = jest.fn().mockImplementation(() => {
|
||||||
|
return '';
|
||||||
|
});
|
||||||
|
store.commit = jest.fn();
|
||||||
|
store.dispatch = jest.fn();
|
||||||
|
|
||||||
|
const vehicleInfo = { year: "2020", make: "honda", model: "civic", style: "2 door", carId: "TestId", category: "testCat", imageUrl: "image.jpg", imageVifNumber: "123", imageColor: "blue" }
|
||||||
|
await wrapper.vm.updateCustomerInfo('vin', vehicleInfo, 'registrationState');
|
||||||
|
|
||||||
|
//Assert
|
||||||
|
expect(store.dispatch).toHaveBeenCalled();
|
||||||
});
|
});
|
||||||
wrapper.vm.previouslyEnteredCarId = "TESTID1";
|
|
||||||
wrapper.vm.navigateForward = jest.fn();
|
|
||||||
|
|
||||||
//Act
|
test("dispatch non blocking store action called on validate zip", async () => {
|
||||||
licensePlateLookup.beforeRouteEnter.call(
|
|
||||||
wrapper.vm,
|
|
||||||
{ query: { fmgPage: "license-plate-lookup" } },
|
|
||||||
undefined,
|
|
||||||
(c) => c(wrapper.vm)
|
|
||||||
);
|
|
||||||
|
|
||||||
await wrapper.vm.forwardButtonAction();
|
|
||||||
|
|
||||||
//Assert
|
// Arrange
|
||||||
expect(wrapper.vm.navigateForward).toHaveBeenCalled();
|
const { wrapper } = setupMocks({});
|
||||||
expect(wrapper.vm.isCarIdDifferent).toEqual(true);
|
|
||||||
});
|
//Act
|
||||||
});
|
await wrapper.vm.validateZip("12345");
|
||||||
|
|
||||||
describe("license-plate-lookup.vue", () => {
|
|
||||||
test("Button Text should revert to initial value when licensePlate textfield has new text", async () => {
|
//Assert
|
||||||
|
expect(baseMixin.methods.dispatchStoreAction).toHaveBeenCalled();
|
||||||
// Arrange
|
|
||||||
const { wrapper } = setupMocks({});
|
|
||||||
|
|
||||||
//Act
|
|
||||||
wrapper.vm.licensePlate = "NEWPLATE";
|
|
||||||
wrapper.vm.getCmsContent = jest.fn();
|
|
||||||
wrapper.vm.$refs.funnelFooter.updateButtonText = jest.fn();
|
|
||||||
await wrapper.vm.$nextTick();
|
|
||||||
|
|
||||||
//Assert
|
|
||||||
expect(wrapper.vm.$refs.funnelFooter.updateButtonText).toHaveBeenCalled();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe("license-plate-lookup.vue", () => {
|
|
||||||
test("Button Text should revert to initial value when registrationZip textfield has new text", async () => {
|
|
||||||
|
|
||||||
// Arrange
|
|
||||||
const { wrapper } = setupMocks({});
|
|
||||||
|
|
||||||
//Act
|
|
||||||
wrapper.vm.registrationZip = "55555";
|
|
||||||
wrapper.vm.getCmsContent = jest.fn();
|
|
||||||
wrapper.vm.$refs.funnelFooter.updateButtonText = jest.fn();
|
|
||||||
await wrapper.vm.$nextTick();
|
|
||||||
|
|
||||||
//Assert
|
|
||||||
expect(wrapper.vm.$refs.funnelFooter.updateButtonText).toHaveBeenCalled();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe("license-plate-lookup.vue", () => {
|
|
||||||
test("Button Text should revert to initial value when serviceZip textfield has new text", async () => {
|
|
||||||
|
|
||||||
// Arrange
|
|
||||||
const { wrapper } = setupMocks({});
|
|
||||||
|
|
||||||
//Act
|
|
||||||
wrapper.vm.serviceZip = "55555";
|
|
||||||
wrapper.vm.getCmsContent = jest.fn();
|
|
||||||
wrapper.vm.$refs.funnelFooter.updateButtonText = jest.fn();
|
|
||||||
await wrapper.vm.$nextTick();
|
|
||||||
|
|
||||||
//Assert
|
|
||||||
expect(wrapper.vm.$refs.funnelFooter.updateButtonText).toHaveBeenCalled();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe("license-plate-lookup.vue", () => {
|
|
||||||
test("Dispatch reset damage and dependencies should be called if isCarIdDifferent is true and isSelectedGlassAvailableForVehicle is false when updateCustomerInfo is called", async () => {
|
|
||||||
|
|
||||||
// Arrange
|
|
||||||
const { wrapper } = setupMocks({});
|
|
||||||
|
|
||||||
//Act
|
|
||||||
wrapper.vm.isCarIdDifferent = true;
|
|
||||||
wrapper.vm.isSelectedGlassAvailableForVehicle = false;
|
|
||||||
wrapper.vm.getCmsContent = jest.fn().mockImplementation(() => {
|
|
||||||
return '';
|
|
||||||
});
|
});
|
||||||
store.commit = jest.fn();
|
|
||||||
store.dispatch = jest.fn();
|
|
||||||
|
|
||||||
const vehicleInfo = {year: "2020", make: "honda", model: "civic", style: "2 door", carId: "TestId", category: "testCat", imageUrl: "image.jpg", imageVifNumber: "123", imageColor: "blue"}
|
test("dispatch non blocking store action called on lookup vin", async () => {
|
||||||
await wrapper.vm.updateCustomerInfo('vin', vehicleInfo, 'registrationState');
|
|
||||||
|
|
||||||
//Assert
|
// Arrange
|
||||||
expect(store.dispatch).toHaveBeenCalled();
|
const { wrapper } = setupMocks({});
|
||||||
});
|
|
||||||
});
|
//Act
|
||||||
|
await wrapper.vm.lookupVin("zzz123fqsfwg");
|
||||||
describe("license-plate-lookup.vue", () => {
|
|
||||||
test("NavigateAfterSave should be called if isCarIdDifferent is true and isSelectedGlassAvailableForVehicle is false when navigateForward is called", async () => {
|
|
||||||
|
//Assert
|
||||||
// Arrange
|
expect(baseMixin.methods.dispatchStoreAction).toHaveBeenCalled();
|
||||||
const { wrapper } = setupMocks({});
|
|
||||||
|
|
||||||
//Act
|
|
||||||
wrapper.vm.isCarIdDifferent = true;
|
|
||||||
wrapper.vm.isSelectedGlassAvailableForVehicle = false;
|
|
||||||
wrapper.vm.$router.navigateAfterSave = jest.fn();
|
|
||||||
wrapper.vm.getCmsContent = jest.fn().mockImplementation(() => {
|
|
||||||
return '';
|
|
||||||
});
|
});
|
||||||
store.dispatch = jest.fn();
|
})
|
||||||
|
|
||||||
await wrapper.vm.navigateForward();
|
|
||||||
|
|
||||||
//Assert
|
|
||||||
expect(wrapper.vm.$router.navigateAfterSave).toHaveBeenCalled();
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("license-plate-lookup.vue", () => {
|
|
||||||
test("navigateAfterSaveToHeritageFunnel should be called if isCarIdDifferent is false or isSelectedGlassAvailableForVehicle is true when navigateForward is called", async () => {
|
|
||||||
|
|
||||||
// Arrange
|
|
||||||
const { wrapper } = setupMocks({});
|
|
||||||
|
|
||||||
//Act
|
|
||||||
wrapper.vm.isCarIdDifferent = false;
|
|
||||||
wrapper.vm.$refs.loadingModal.showModal = jest.fn();
|
|
||||||
wrapper.vm.getCmsContent = jest.fn().mockImplementation(() => {
|
|
||||||
return '';
|
|
||||||
});
|
|
||||||
navigateToHeritage.navigateAfterSaveToHeritageFunnel = jest.fn();
|
|
||||||
await wrapper.vm.navigateForward();
|
|
||||||
|
|
||||||
//Assert
|
|
||||||
expect(navigateToHeritage.navigateAfterSaveToHeritageFunnel).toHaveBeenCalled();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe("license-plate-lookup.vue", () => {
|
|
||||||
test("dispatch non blocking store action called on validate zip", async () => {
|
|
||||||
|
|
||||||
// Arrange
|
|
||||||
const { wrapper } = setupMocks({});
|
|
||||||
|
|
||||||
//Act
|
|
||||||
await wrapper.vm.validateZip("12345");
|
|
||||||
|
|
||||||
|
|
||||||
//Assert
|
|
||||||
expect(baseMixin.methods.dispatchStoreAction).toHaveBeenCalled();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
describe("license-plate-lookup.vue", () => {
|
|
||||||
test("dispatch non blocking store action called on lookup vin", async () => {
|
|
||||||
|
|
||||||
// Arrange
|
|
||||||
const { wrapper } = setupMocks({});
|
|
||||||
|
|
||||||
//Act
|
|
||||||
await wrapper.vm.lookupVin("zzz123fqsfwg");
|
|
||||||
|
|
||||||
|
|
||||||
//Assert
|
|
||||||
expect(baseMixin.methods.dispatchStoreAction).toHaveBeenCalled();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function setupMocks({
|
function setupMocks({
|
||||||
pageHeaderWidgetHeaderText = {},
|
pageHeaderWidgetHeaderText = {},
|
||||||
mountOptionsMockData = {
|
mountOptionsMockData = {
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -405,7 +405,7 @@ export default {
|
||||||
shouldDisplayVehicleChangeAlert() {
|
shouldDisplayVehicleChangeAlert() {
|
||||||
return this.$route.params[this.routerParams.DISPLAY_VEHICLE_CHANGE_ALERT];
|
return this.$route.params[this.routerParams.DISPLAY_VEHICLE_CHANGE_ALERT];
|
||||||
},
|
},
|
||||||
shouldHideBackButton(){
|
shouldHideBackButton() {
|
||||||
return this.$store.getters.payment.insuranceCoverage.isVerified || getFunnelCookie().HasDelayedClaimRegistration;
|
return this.$store.getters.payment.insuranceCoverage.isVerified || getFunnelCookie().HasDelayedClaimRegistration;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue