test(user): write test for startTrialPeriod
This commit is contained in:
@@ -407,7 +407,7 @@ class User extends Base {
|
||||
}
|
||||
}
|
||||
|
||||
async startTrialPeriod() {
|
||||
startTrialPeriod() {
|
||||
this.trialExpiryDate = DateTime.now().plus({ days: 30 }).toISODate();
|
||||
}
|
||||
|
||||
@@ -590,7 +590,7 @@ class User extends Base {
|
||||
await this.generateHash();
|
||||
|
||||
if (appConfig.isCloud) {
|
||||
await this.startTrialPeriod();
|
||||
this.startTrialPeriod();
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -856,4 +856,19 @@ describe('User model', () => {
|
||||
expect(user.password).toBe(undefined);
|
||||
});
|
||||
});
|
||||
|
||||
it('startTrialPeriod should assign trialExpiryDate 30 days from now', () => {
|
||||
vi.useFakeTimers();
|
||||
|
||||
const date = new Date(2024, 10, 14, 16, 0, 0, 0);
|
||||
vi.setSystemTime(date);
|
||||
|
||||
const user = new User();
|
||||
|
||||
user.startTrialPeriod();
|
||||
|
||||
expect(user.trialExpiryDate).toBe('2024-12-14');
|
||||
|
||||
vi.useRealTimers();
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user