Skip to content

Commit

Permalink
✨ api: seeds with reconciliation date
Browse files Browse the repository at this point in the history
  • Loading branch information
Steph0 committed Sep 23, 2024
1 parent e9ffe1f commit 70b49da
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions api/db/seeds/data/common/tooling/session-tooling.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ async function createDraftScoSession({
databaseBuilder,
sessionId,
organizationId,
hasJoinSession: false,
hasJoinedSession: false,
configSession,
version,
});
Expand Down Expand Up @@ -169,7 +169,7 @@ async function createDraftSession({
const certificationCandidates = await _registerCandidatesToSession({
databaseBuilder,
sessionId,
hasJoinSession: false,
hasJoinedSession: false,
configSession,
certificationCenterId,
version,
Expand Down Expand Up @@ -398,7 +398,7 @@ async function createPublishedScoSession({
databaseBuilder,
sessionId,
organizationId,
hasJoinSession: true,
hasJoinedSession: true,
configSession,
});

Expand Down Expand Up @@ -521,7 +521,7 @@ async function createPublishedSession({
const certificationCandidates = await _registerCandidatesToSession({
databaseBuilder,
sessionId,
hasJoinSession: true,
hasJoinedSession: true,
configSession,
certificationCenterId,
version,
Expand Down Expand Up @@ -551,7 +551,7 @@ async function _registerOrganizationLearnersToSession({
databaseBuilder,
sessionId,
organizationId,
hasJoinSession,
hasJoinedSession,
configSession,
version,
}) {
Expand All @@ -566,7 +566,7 @@ async function _registerOrganizationLearnersToSession({
databaseBuilder,
sessionId,
extraTimePercentages,
hasJoinSession,
hasJoinedSession,
version,
);
}
Expand All @@ -579,7 +579,7 @@ function _addCertificationCandidatesToScoSession(
databaseBuilder,
sessionId,
extraTimePercentages,
hasJoinSession,
hasJoinedSession,
version,
) {
organizationLearners.forEach((organizationLearner, index) => {
Expand All @@ -597,7 +597,8 @@ function _addCertificationCandidatesToScoSession(
sessionId,
createdAt: new Date(),
extraTimePercentage: extraTimePercentages[index % extraTimePercentages.length],
userId: hasJoinSession ? organizationLearner.userId : null,
userId: hasJoinedSession ? organizationLearner.userId : null,
reconciledAt: hasJoinedSession ? new Date() : null,
organizationLearnerId: organizationLearner.id,
authorizedToStart: false,
billingMode: null,
Expand All @@ -623,7 +624,7 @@ function _hasLearnersToRegister(configSession) {
async function _registerCandidatesToSession({
databaseBuilder,
sessionId,
hasJoinSession,
hasJoinedSession,
configSession,
certificationCenterId,
version,
Expand Down Expand Up @@ -657,7 +658,7 @@ async function _registerCandidatesToSession({

for (let i = 0; i < configSession.candidatesToRegisterCount; i++) {
let userId = null;
if (hasJoinSession) {
if (hasJoinedSession) {
userId = databaseBuilder.factory.buildUser.withRawPassword({
firstName: `firstname${i}-${sessionId}`,
lastName: `lastname${i}-${sessionId}`,
Expand Down Expand Up @@ -685,6 +686,7 @@ async function _registerCandidatesToSession({
createdAt: configSession.sessionDate,
extraTimePercentage: randomExtraTimePercentage,
userId,
reconciledAt: hasJoinedSession ? new Date() : null,
organizationLearnerId: null,
authorizedToStart: false,
billingMode: randomBillingMode,
Expand Down Expand Up @@ -770,6 +772,7 @@ async function _registerSomeCandidatesToSession({ databaseBuilder, sessionId, co
createdAt: new Date(),
extraTimePercentage: randomExtraTimePercentage,
userId: hasJoinedSession ? userId : null,
reconciledAt: hasJoinedSession ? new Date() : null,
organizationLearnerId: null,
authorizedToStart: false,
billingMode: randomBillingMode,
Expand Down

0 comments on commit 70b49da

Please sign in to comment.