8032-devToTest_2440 #3009

Merged
alexm merged 262 commits from 8032-devToTest_2440 into test 2024-09-24 09:34:49 +00:00
1 changed files with 6 additions and 11 deletions
Showing only changes of commit a82df8e2a2 - Show all commits

View File

@ -1,21 +1,16 @@
const {models} = require('vn-loopback/server/server');
describe('Account handleUser()', () => {
const ctx = {req: {accessToken: {}}};
fit('should throw an error when user/password is wrong', async() => {
const req = models.Account.handleUser(ctx, 'user', 'pass', 'androidid11234567890', 'warehouse', '10');
const ctx = {req: {accessToken: {userId: 9}}};
await expectAsync(req).toBeRejected();
});
fit('should return data from user', async() => {
const user = 'employee';
const password = 'nightmare';
it('should return data from user', async() => {
const androidId = 'androidid11234567890';
const deviceId = 1;
const nameApp = 'warehouse';
const versionApp = '10';
const req = models.Account.loginApp(ctx, user, password, androidId, nameApp, versionApp);
await expectAsync(req).toBeResolved();
const data = await models.Account.handleUser(ctx, androidId, deviceId, versionApp, nameApp);
expect(data.numberOfWagons).toBe(2);
});
});