DigitalConsumer.ISS/playwright-tests/tests/0024_EssentialNonServiceableBigTruckVin.ts
2026-03-30 20:46:59 -04:00

83 lines
3 KiB
TypeScript

import ClientData from "@business-logic/data/ClientData";
import TestCase from "@business-logic/types/TestCase";
import { DamageType, PartQuestionType, ServiceLocation, ServicePackage, VehicleDamage, VehicleLookupType } from "@business-logic/types/Enums";
import { ITestData } from "@business-logic/types/ITestData"
import { faker } from "@faker-js/faker";
import { getNextWeekday } from "@impl/utils/DateUtils";
const nextWeekday = getNextWeekday();
const essentialNonServiceableBigTruckVinData: Partial<ITestData> = {
clientTag: 'ALL_ESSENTIAL',
isDuplicateClaim: false,
isPolicyFound: false,
endorsements: [],
isReplace: true,
isNonServiceable: true,
bailoutFlags: {
isHeavyTruckVehicleBailout: true,
isBailoutAfterVinLookup: true,
},
vehiclePartQuestions: [
{
partQuestionType: PartQuestionType.WindshieldColor,
isOnPage: true,
optionToSelect: 'Green Tint',
secondaryQuestionOptionToSelect: 'One-Piece, With Lane Departure Warning System',
},
],
isSafelite: true,
servicePackage: faker.helpers.enumValue(ServicePackage),
customerDetails: {
firstName: 'John',
lastName: 'Doe',
email: "itqatest@safelite.com",
phoneNumber: faker.helpers.fromRegExp(/[2-9][0-9][0-9]-[0-9]{3}-[0-9]{4}/),
notes: 'Automated Test',
address: {
street: '9799 Heartland Court',
city: 'Dublin',
state: 'OHIO',
postalCode: '43016',
country: 'United States'
}
},
claimDetails: {
policyNumber: faker.string.alphanumeric(5),
policyDeductible: -1, // Not advanced, so we don't care about deductible.
damageDate: '2024-10-10',
damageCause: DamageType.Other
},
vehicleDetails: {
year: '2021',
make: 'Freightliner',
model: 'Cascadia',
style: 'conventional cab',
vin: '2G5ZJ2TZ4S9105926',
vehicleLookupType: VehicleLookupType.Vin,
},
vehicleDamage: [
VehicleDamage.WindshieldCrackSingleWindshield,
],
appointmentDetails: {
serviceLocation: ServiceLocation.InShop,
shopAddress: '6826 Sawmill Rd, Columbus, OH 43235',
appointmentDate: nextWeekday
},
}
const essentialClients = ClientData.getEssentialClients();
const essentialNonServiceableBigTruckVinTestCases: TestCase[] = [];
for (const client of essentialClients) {
const data = { ...essentialNonServiceableBigTruckVinData };
data.clientTag = client.clientTag;
data.isAuthenticationRequired = client.clientFlags.isAuthenticationEnabled ?? false
const tc = new TestCase({
name: `0024 Essential Non-Serviceable Big Truck Vin Client: "${client.accountName}"`,
tags: [`@${client.clientTag}`, `@${client.accountName}`, '@BigTruck', '@Essentials'],
testData: data
}, undefined, '0024');
essentialNonServiceableBigTruckVinTestCases.push(tc);
}
export default essentialNonServiceableBigTruckVinTestCases;