2022-11-22 13:43:21 +00:00
|
|
|
const models = require('vn-loopback/server/server').models;
|
|
|
|
|
|
|
|
describe('MdbApp unlock()', () => {
|
|
|
|
it(`should unlock a mdb `, async() => {
|
|
|
|
const tx = await models.MdbApp.beginTransaction({});
|
|
|
|
|
|
|
|
try {
|
|
|
|
const options = {transaction: tx};
|
2022-11-23 09:56:55 +00:00
|
|
|
const appName = 'bar';
|
2022-11-22 13:43:21 +00:00
|
|
|
const developerId = 9;
|
|
|
|
const ctx = {req: {accessToken: {userId: developerId}}};
|
|
|
|
|
|
|
|
const result = await models.MdbApp.unlock(ctx, appName, options);
|
|
|
|
|
|
|
|
expect(result.locked).toBeNull();
|
|
|
|
|
|
|
|
await tx.rollback();
|
|
|
|
} catch (e) {
|
|
|
|
await tx.rollback();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|