89 lines
No EOL
3.1 KiB
TypeScript
89 lines
No EOL
3.1 KiB
TypeScript
import ClientData from "@business-logic/data/ClientData";
|
|
import TestCase from "@business-logic/types/TestCase";
|
|
import { DamageType, EndorsementType, 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";
|
|
import MockPolicyData from "@business-logic/data/MockPolicyData";
|
|
import { ICustomerDetails } from "@business-logic/types/CustomerDetails";
|
|
import { IAddress } from "@business-logic/types/IAddress";
|
|
|
|
const nextWeekday = getNextWeekday();
|
|
const customerAddress: IAddress = {
|
|
street: '474 1st St',
|
|
city: 'Lindsay',
|
|
state: 'CA',
|
|
postalCode: '93247',
|
|
country: 'United States'
|
|
}
|
|
const customerDetails: ICustomerDetails = {
|
|
firstName: faker.person.firstName(),
|
|
lastName: faker.person.lastName(),
|
|
email: 'itqatest@safelite.com',
|
|
phoneNumber: '614-531-0031',
|
|
notes: 'Automated Test',
|
|
address: customerAddress
|
|
}
|
|
|
|
const policyNumber = `~AutomatedScenario0030a${crypto.randomUUID().replace(/-/g, '').slice(0, 16).toUpperCase()}`; // Ensure unique policy number for each test run since same key in request can cause 500 error
|
|
const policySoap = MockPolicyData.getPolicySoapByScenario('0030a', customerDetails, policyNumber);
|
|
|
|
const advancedScenario0030aData: Partial<ITestData> = {
|
|
clientTag: '',
|
|
isDuplicateClaim: false,
|
|
isPolicyFound: false,
|
|
isNoComp: true,
|
|
isItac: false,
|
|
hasStateLawPopup: false,
|
|
bailoutFlags: {
|
|
isAPIErrorBailout: true,
|
|
},
|
|
|
|
vehiclePartQuestions: [
|
|
],
|
|
isSafelite: true,
|
|
servicePackage: faker.helpers.enumValue(ServicePackage),
|
|
customerDetails: customerDetails,
|
|
claimDetails: {
|
|
policyNumber: policyNumber,
|
|
policyDeductible: 9999,
|
|
damageDate: '2023-08-01',
|
|
damageCause: faker.helpers.enumValue(DamageType)
|
|
},
|
|
policySoap: policySoap,
|
|
vehicleDetails: {
|
|
year: '2012',
|
|
make: 'Dodge',
|
|
model: 'Charger',
|
|
style: '',
|
|
vin: '2C3CDXBG6CH260654',
|
|
vehicleLookupType: VehicleLookupType.Vin
|
|
},
|
|
vehicleDamage: [
|
|
VehicleDamage.WindshieldCrack
|
|
],
|
|
appointmentDetails: {
|
|
serviceLocation: ServiceLocation.Mobile,
|
|
serviceAddress: customerAddress,
|
|
appointmentDate: nextWeekday
|
|
},
|
|
paymentDetailsAdyen: ClientData.getDefaultCreditCardDetailsAdyen()
|
|
|
|
}
|
|
|
|
// TODO: Add validation for deductible/covered amount
|
|
|
|
const advancedClients = ClientData.getAdvancedClients();
|
|
const advancedScenario0030aTestCases: TestCase[] = [];
|
|
for (const client of advancedClients) {
|
|
const data = { ...advancedScenario0030aData };
|
|
data.clientTag = client.clientTag;
|
|
const tc = new TestCase({
|
|
name: `0030a Advanced API Error Bailout: "${client.accountName}"`,
|
|
tags: [`@${client.clientTag}`, `@${client.accountName}`, '@Advanced', '@INSR-2057'],
|
|
testData: data
|
|
}, undefined, '0030a');
|
|
advancedScenario0030aTestCases.push(tc);
|
|
}
|
|
|
|
export default advancedScenario0030aTestCases; |