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 essentialVehicleNotFoundVINLookupData: Partial = { clientTag: 'ALL_ESSENTIAL', isDuplicateClaim: false, isPolicyFound: false, endorsements: [], isReplace: false, partQuestions: undefined, isSafelite: true, bailoutFlags: { isVehicleSelectBailout: true }, 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]/), notes: 'Automated Test', address: { street: '71529 Maple Street', 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: '2022', make: 'Honda', model: 'Civic', style: '4 door hatchback', vin: '0HGCR2E30FA099831', vehicleLookupType: VehicleLookupType.Vin }, vehicleDamage: [ VehicleDamage.WindshieldCrack, ], appointmentDetails: { serviceLocation: ServiceLocation.InShop, shopAddress: '6826 Sawmill Rd, Columbus, OH 43235', appointmentDate: nextWeekday } } const essentialClients = ClientData.getEssentialClients(); const essentialVehicleNotFoundVINLookupTests: TestCase[] = []; for (const client of essentialClients) { const data = {...essentialVehicleNotFoundVINLookupData}; data.clientTag = client.clientTag; data.isAuthenticationRequired = client.clientFlags.isAuthenticationEnabled ?? false const tc = new TestCase({ name: `0010 Essential Vehicle Not Found VIN Lookup Client: "${client.accountName}"`, tags: [`@${client.clientTag}`, `@${client.accountName}`,'@Essentials', '@VehicleNotFound'], testData: data }, undefined, '0010'); essentialVehicleNotFoundVINLookupTests.push(tc); } export default essentialVehicleNotFoundVINLookupTests;