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

78 lines
No EOL
2.7 KiB
TypeScript

import ClientData from "@business-logic/data/ClientData";
import TestCase from "@business-logic/types/TestCase";
import { DamageType, 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 essentialReplaceDynamicAdasData: Partial<ITestData> = {
clientTag: 'ALL_ESSENTIAL',
isDuplicateClaim: false,
isPolicyFound: false,
endorsements: [],
isReplace: false,
partQuestions: undefined,
isSafelite: true,
servicePackage: ServicePackage.Premium,
customerDetails: {
firstName: faker.person.firstName(),
lastName: faker.person.lastName(),
email: "itqatest@safelite.com",
phoneNumber: faker.helpers.fromRegExp(/[2-9][0-9][0-9]-[0-9][0-9][0-9]-[0-9][0-9][0-9][0-9]/),
notes: 'Automated Test',
address: {
street: faker.location.streetAddress(),
city: 'Chicago',
state: 'ILLINOIS',
postalCode: '60645',
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: '2020',
make: 'BMW',
model: '740',
style: '4 door sedan',
vin: 'WBA7T2C01LGL17632',
vehicleLookupType: VehicleLookupType.Vin,
},
vehicleDamage: [
VehicleDamage.WindshieldCrack,
],
appointmentDetails: {
serviceLocation: ServiceLocation.Mobile,
serviceAddress: {
street: "2088 Haviland Road, Columbus, OH, USA",
city:"Vermillion",
state: "Ohio",
postalCode: "44089",
country: "undefined"
},
appointmentDate: nextWeekday
}
}
const essentialClients = ClientData.getEssentialClients();
const essentialReplaceDynamicAdasTests: TestCase[] = [];
for (const client of essentialClients) {
const data = {...essentialReplaceDynamicAdasData};
data.clientTag = client.clientTag;
data.isAuthenticationRequired = client.clientFlags.isAuthenticationEnabled ?? false
const tc = new TestCase({
name: `0005 Essential Replace Dynamic ADAS Client: "${client.accountName}"`,
tags: [`@${client.clientTag}`, `@${client.accountName}`],
testData: data
}, undefined, '0005');
essentialReplaceDynamicAdasTests.push(tc);
}
export default essentialReplaceDynamicAdasTests;