DigitalConsumer.ISS/playwright-tests/tests/0004_EssentialTpaEnabled.ts
2026-03-25 10:06:26 -04:00

83 lines
No EOL
2.9 KiB
TypeScript

import ClientData from "@business-logic/data/ClientData";
import TestCase from "@business-logic/types/TestCase";
import { DamageType, ServiceLocation, ServicePackage, VehicleDamage } 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 essentialTpaEnabledData: Partial<ITestData> = {
clientTag: 'ALL_ESSENTIAL',
isDuplicateClaim: false,
isPolicyFound: false,
endorsements: [],
isReplace: false,
partQuestions: undefined,
isSafelite: false,
bailoutFlags: {
isTpaNotEnabledBailout: false
},
servicePackage: faker.helpers.enumValue(ServicePackage),
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]/),
// phoneNumber: faker.phone.toString(),
notes: 'Automated Test',
address: {
// street: faker.location.streetAddress(),
street: '1343 Cameron Ave',
city: 'Lewis Center',
state: 'OH',
postalCode: '43035',
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: '2015',
make: 'Honda',
model: 'Accord',
style: '4 door sedan'
},
vehicleDamage: [
VehicleDamage.WindshieldThreeChips,
// VehicleDamage.WindshieldCrack,
// VehicleDamage.DriverFrontDoor,
// VehicleDamage.DriverQuarterPanel,
// VehicleDamage.DriverRearDoor,
// VehicleDamage.PassengerFrontDoor,
// VehicleDamage.PassengerQuarterPanel,
// VehicleDamage.PassengerRearDoor,
// VehicleDamage.RearWindow
],
appointmentDetails: {
serviceLocation: ServiceLocation.InShop,
shopAddress: '6826 Sawmill Rd, Columbus, OH 43235',
appointmentDate: nextWeekday
}
}
const essentialClients = ClientData.getEssentialClientsWithTpaEnabled();
const essentialTpaEnabled_0004: TestCase[] = [];
for (const client of essentialClients) {
const data = {...essentialTpaEnabledData};
data.clientTag = client.clientTag;
data.isAuthenticationRequired = client.clientFlags.isAuthenticationEnabled ?? false
const tc = new TestCase({
name: `0004 Essential TPA Enabled Client: "${client.accountName}"`,
tags: [`@${client.clientTag}`, `@${client.accountName}`, '@TpaEnabled', '@Essentials','@0004'],
testData: data
}, undefined, '0004');
essentialTpaEnabled_0004.push(tc);
}
export default essentialTpaEnabled_0004;