mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-03-25 01:51:37 -04:00
* Added Database checks to the onboarding flow * Added compatibility page setup Added more compatibility questions * Finished up the onboarding flow suite Added compatibility question tests and verifications Updated tests to cover Keywords and Headline changes recently made Updated tests to cover all of the big5 personality traits * Fix: Added 'tsconfig-paths/register' to playwright config so it applies tsconfig/ts-node to test files and imported modules....there was a syntax error: SyntaxError: tests/e2e/web/pages/homePage.ts: Unexpected token (2:0) * . * Updated ProfilePage: In some cases removed the use of "one shot grabs" using .textContent() to prevent flaky tests Added test for entering profile information post signup flow * Linting and Prettier * Fix: Merge conflict * Fix: Modified sortedAndFilteredAnswers to use "UseMemo" so that it doesnt run every time something changes * . * . * Merged "verifyInterestedInConnectingWith" and "verifyRelationShipTypeAndInterest" into "verifySeeking" to match ui changes * Added error message outlining the minimum character requirement for display names and usernames * Updated displayName error message to show when editing the user profile post signup * Fix: Added fix for None discriptive error issue #36 Updated signUp.spec.ts to use new fixture Updated Account information variable names Deleted "deleteUserFixture.ts" as it was incorporated into the "base.ts" file * Linting and Prettier * Minor cleaning * Organizing helper func * Linting and Prettier --------- Co-authored-by: MartinBraquet <martin.braquet@gmail.com>
234 lines
6.5 KiB
TypeScript
234 lines
6.5 KiB
TypeScript
import {faker} from '@faker-js/faker'
|
|
import {
|
|
ConnectionTypeTuple,
|
|
DietTuple,
|
|
EducationTuple,
|
|
EthnicityTuple,
|
|
GenderTuple,
|
|
InterestedInGenderTuple,
|
|
LanguageTuple,
|
|
PersonalityKey,
|
|
PoliticalTuple,
|
|
RelationshipStatusTuple,
|
|
RelationshipStyleTuple,
|
|
ReligionTuple,
|
|
} from 'common/choices'
|
|
import {ImportanceTuple} from 'web/components/answers/answer-compatibility-question-content'
|
|
|
|
import {Causes, ChildrenExpectation, Interests, Platforms} from '../pages/signUpPage'
|
|
|
|
export type UserAccountInformation = {
|
|
email: string
|
|
password: string
|
|
display_name: string
|
|
username: string
|
|
current_location?: string
|
|
birth_location?: string
|
|
headline?: string
|
|
keywords?: string
|
|
bio?: string
|
|
gender?: GenderTuple
|
|
age?: string
|
|
height?: Height
|
|
ethnicity_origin?: EthnicityTuple
|
|
interested_in?: InterestedInGenderTuple
|
|
Interested_in_ages?: InterestedInAges
|
|
connection_type?: ConnectionTypeTuple
|
|
relationship_status?: RelationshipStatusTuple
|
|
relationship_style?: RelationshipStyleTuple
|
|
number_of_kids?: string
|
|
children_expectation?: ChildrenExpectation
|
|
interests?: (Interests | string)[]
|
|
causes?: (Causes | string)[]
|
|
education_level?: EducationTuple
|
|
university?: string
|
|
job_title?: string
|
|
company?: string
|
|
work_area?: string[]
|
|
beliefs?: BeliefDetails
|
|
personality_type?: PersonalityKey
|
|
big_five_personality_traits?: FiveBigPersonalityTraits
|
|
diet?: DietTuple
|
|
is_smoker?: boolean
|
|
alcohol_consumed_per_month?: string
|
|
languages?: LanguageTuple[]
|
|
social_media?: Socials[]
|
|
compatibility?: Compatibility
|
|
}
|
|
|
|
type Height = {
|
|
feet: string
|
|
inches: string
|
|
centimeters: string
|
|
}
|
|
|
|
type InterestedInAges = {
|
|
min: string
|
|
max?: string
|
|
}
|
|
|
|
export type Compatibility = {
|
|
answer: string | null
|
|
acceptableAnswers: (string | null)[]
|
|
importance: ImportanceTuple
|
|
explanation: string
|
|
}
|
|
type BeliefDetails = {
|
|
political?: {
|
|
belief?: PoliticalTuple
|
|
details?: string
|
|
}
|
|
religious?: {
|
|
belief?: ReligionTuple
|
|
details?: string
|
|
}
|
|
}
|
|
|
|
export type Socials = {
|
|
platform: Platforms
|
|
urlOrUsername: string
|
|
}
|
|
|
|
type FiveBigPersonalityTraits = {
|
|
openness?: number
|
|
conscientiousness?: number
|
|
extraversion?: number
|
|
agreeableness?: number
|
|
neuroticism?: number
|
|
}
|
|
|
|
type AccountConfig = {
|
|
faker_account: () => UserAccountInformation
|
|
spec_account: () => UserAccountInformation
|
|
dev_one_account: () => UserAccountInformation
|
|
dev_two_account: () => UserAccountInformation
|
|
account_all_info: () => UserAccountInformation
|
|
}
|
|
|
|
export const testAccounts: AccountConfig = {
|
|
// Use a function so email is unique per test call
|
|
faker_account: () => {
|
|
const id = crypto.randomUUID().slice(0, 6)
|
|
return {
|
|
email: `faker${id}@test.com`,
|
|
password: faker.internet.password(),
|
|
display_name: faker.internet.displayName(),
|
|
username: `user_${id}`,
|
|
gender: ['Man', 'male'],
|
|
age: '35',
|
|
height: {
|
|
feet: '5',
|
|
inches: '0',
|
|
centimeters: '152.4',
|
|
},
|
|
}
|
|
},
|
|
|
|
spec_account: () => {
|
|
const id = crypto.randomUUID().slice(0, 6)
|
|
return {
|
|
email: `spec${id}@compass.com`,
|
|
password: 'compassConnections1!',
|
|
display_name: 'Spec.Compass',
|
|
username: `Spec.Connections_${id}`,
|
|
}
|
|
},
|
|
|
|
dev_one_account: () => {
|
|
const id = crypto.randomUUID().slice(0, 6)
|
|
return {
|
|
email: `dev_1_${id}@compass.com`,
|
|
password: 'dev_1Password',
|
|
display_name: 'Dev1.Compass',
|
|
username: `Dev1.Connections_${id}`,
|
|
}
|
|
},
|
|
|
|
dev_two_account: () => {
|
|
const id = crypto.randomUUID().slice(0, 6)
|
|
return {
|
|
email: 'dev_2@compass.com',
|
|
password: 'dev_2Password',
|
|
display_name: 'Dev2.Compass',
|
|
username: `Dev2.Connections_${id}`,
|
|
}
|
|
},
|
|
|
|
account_all_info: () => {
|
|
const id = crypto.randomUUID().slice(0, 6)
|
|
return {
|
|
// Use a non-real TLD like @test.compass to make it obvious these are test accounts and prevent accidental emails
|
|
email: `testAccounts${id}@test.compass`,
|
|
password: 'CompassTest',
|
|
display_name: 'Compass Onboarding',
|
|
username: `TheGreatOnboarding_${id}`, // username max length is 25 (see /create-user)
|
|
keywords: 'Spicey noodles, Chocolate milk',
|
|
headline:
|
|
'I went out before dawn to hunt the mantis shrimp, the small bright terror that cracked shells like glass and watched me with colors no man could name. In the quiet water, I felt its strikes through the line as if the sea itself were warning me.',
|
|
bio: 'Born beneath twin moons, this wanderer maps forgotten roads, trades riddles for shelter, and keeps stories in glass bottles. Drawn to ancient libraries and glowing forests, they seek lost spells, quiet taverns, and adventures that rewrite fate. Their compass points to wonder. Ever onward. Always. Go',
|
|
gender: ['Woman', 'female'],
|
|
age: '25',
|
|
height: {
|
|
feet: '6',
|
|
inches: '0',
|
|
centimeters: '182.88',
|
|
},
|
|
ethnicity_origin: ['South/Southeast Asian', 'south_asian'],
|
|
interested_in: ['Men', 'male'],
|
|
Interested_in_ages: {
|
|
min: '20',
|
|
max: '30',
|
|
},
|
|
connection_type: ['Relationship', 'relationship'],
|
|
relationship_status: ['In open relationship', 'open'],
|
|
relationship_style: ['Open Relationship', 'open'],
|
|
number_of_kids: '2',
|
|
children_expectation: ['Neutral', 2],
|
|
interests: ['Chess', 'Eating'],
|
|
causes: ['Animal Rights', 'Free Spotify'],
|
|
education_level: ['Bachelors', 'bachelors'],
|
|
university: 'Open-Source University',
|
|
job_title: 'Unemployed',
|
|
company: 'Home',
|
|
work_area: ['Engineering', 'Academia'],
|
|
beliefs: {
|
|
political: {
|
|
belief: ['Green / Eco-Socialist', 'green'],
|
|
details: 'This will be details',
|
|
},
|
|
religious: {
|
|
belief: ['Shinto', 'shinto'],
|
|
details: 'This will be details',
|
|
},
|
|
},
|
|
personality_type: 'ENFJ',
|
|
big_five_personality_traits: {
|
|
openness: 43,
|
|
agreeableness: 20,
|
|
conscientiousness: 32,
|
|
extraversion: 63,
|
|
neuroticism: 12,
|
|
},
|
|
diet: ['Omnivore', 'omnivore'],
|
|
is_smoker: false,
|
|
alcohol_consumed_per_month: '4',
|
|
languages: [
|
|
['Akan', 'akan'],
|
|
['Cebuano', 'cebuano'],
|
|
],
|
|
social_media: [
|
|
{
|
|
platform: 'Bluesky',
|
|
urlOrUsername: 'TheGreatConnection',
|
|
},
|
|
],
|
|
compatibility: {
|
|
answer: '1',
|
|
acceptableAnswers: ['0', '2'],
|
|
importance: ['Important', 2],
|
|
explanation: 'This is my explanation one',
|
|
},
|
|
}
|
|
},
|
|
}
|