* Initial import of playwright tests * Pipeline changes for automated tests * Modified pipeline for testing * Attempt #2 * Attempt #3 * Added missing paren * Removed debug stuff from pipeline * Changes from playwright repo * Changed pipeline for debugging * Fix for ServiceLocationPage playwright locators * Change pipeline to run with TEST APIs * Moved more of Siraj's changes to this repo * Changed where updating env occurs * Changed location of env update again * Escaped double quotes * Added visible report in Azure * Moved changes into main pipeline * Made it so dotenv only runs config in local
93 lines
No EOL
3.1 KiB
TypeScript
93 lines
No EOL
3.1 KiB
TypeScript
import ClientData from "@business-logic/data/ClientData";
|
|
import TestCase from "@business-logic/types/TestCase";
|
|
import { DamageType, PartQuestionType, PaymentType, 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";
|
|
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: faker.location.streetAddress(),
|
|
city: 'Hamden',
|
|
state: 'CT',
|
|
postalCode: '06517',
|
|
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 = `~AutomatedScenario0008a${faker.string.uuid().substring(0,6)}`;
|
|
const policySoap = MockPolicyData.getPolicySoapByScenario('0008a', customerDetails, policyNumber);
|
|
|
|
const advancedScenario0008Data: Partial<ITestData> = {
|
|
clientTag: '',
|
|
isDuplicateClaim: false,
|
|
isPolicyFound: true,
|
|
isNoComp: false,
|
|
hasStateLawPopup: true,
|
|
endorsements: undefined,
|
|
vehiclePartQuestions: [
|
|
// {
|
|
// partQuestionType: PartQuestionType.WindshieldColor,
|
|
// isOnPage: true,
|
|
// optionToSelect: 'Green Tint'
|
|
// },
|
|
// {
|
|
// partQuestionType: PartQuestionType.PassengerRearColor,
|
|
// isOnPage: true,
|
|
// optionToSelect: 'Green Tint'
|
|
// },
|
|
],
|
|
isSafelite: false,
|
|
servicePackage: faker.helpers.enumValue(ServicePackage),
|
|
customerDetails: customerDetails,
|
|
claimDetails: {
|
|
policyNumber: policyNumber,
|
|
policyDeductible: 0,
|
|
damageDate: '2023-08-01',
|
|
damageCause: faker.helpers.enumValue(DamageType)
|
|
},
|
|
policySoap: policySoap,
|
|
vehicleDetails: {
|
|
year: '2019',
|
|
make: 'Volkswagen',
|
|
model: 'Golf',
|
|
style: ''
|
|
},
|
|
vehicleDamage: [
|
|
VehicleDamage.WindshieldThreeChips
|
|
],
|
|
appointmentDetails: {
|
|
serviceLocation: ServiceLocation.InShop,
|
|
shopAddress: undefined,
|
|
appointmentDate: nextWeekday
|
|
},
|
|
paymentDetails: undefined
|
|
|
|
}
|
|
|
|
// TODO: Add validation for deductible/covered amount
|
|
|
|
const advancedClients = ClientData.getAdvancedClients();
|
|
const advancedScenario0008TestCases: TestCase[] = [];
|
|
for (const client of advancedClients) {
|
|
const data = {...advancedScenario0008Data};
|
|
data.clientTag = client.clientTag;
|
|
const tc = new TestCase({
|
|
name: `0008a Advanced Repair TPA Client: "${client.accountName}"`,
|
|
tags: [`@${client.clientTag}`, `@${client.accountName}`, '@Advanced'],
|
|
testData: data
|
|
}, undefined, '0008a');
|
|
advancedScenario0008TestCases.push(tc);
|
|
}
|
|
|
|
export default advancedScenario0008TestCases; |