refs #6915 test_master24_8 #2067

Merged
alexm merged 561 commits from test_master24_8 into master 2024-02-22 07:31:34 +00:00
1 changed files with 16 additions and 16 deletions
Showing only changes of commit 391f418883 - Show all commits

View File

@ -13,8 +13,16 @@ describe('Client Create', () => {
businessTypeFk: 'florist',
provinceFk: 1
};
const errorMail = `An email is necessary`;
const newAccount2 = {
userName: 'Deadpool',
fi: '16195279J',
name: 'Wade',
socialName: 'DEADPOOL MARVEL',
street: 'WALL STREET',
city: 'New York',
businessTypeFk: 'florist',
provinceFk: 1
};
beforeAll(async() => {
const activeCtx = {
@ -53,26 +61,18 @@ describe('Client Create', () => {
it('should not create a new account', async() => {
const tx = await models.Client.beginTransaction({});
let error;
try {
const options = {transaction: tx};
const client = await models.Client.createWithUser(newAccount, options);
const account = await models.VnUser.findOne({where: {name: newAccount.userName}}, options);
expect(account.name).toEqual(newAccount.userName);
expect(client.id).toEqual(account.id);
expect(client.name).toEqual(newAccount.name);
expect(client.fi).toEqual(newAccount.fi);
expect(client.socialName).toEqual(newAccount.socialName);
expect(client.businessTypeFk).toEqual(newAccount.businessTypeFk);
await models.Client.createWithUser(newAccount2, options);
await tx.rollback();
} catch (e) {
await tx.rollback();
throw e;
}
error = e.message;
expect(errorMail).toEqual(`An email is necessary`);
expect(error).toEqual(`An email is necessary`);
await tx.rollback();
}
});
it('should create a new account', async() => {