fix(actions-core): Updated Wait action tests to use new plugin config.

This commit is contained in:
Sandile 2022-02-11 11:25:20 +02:00
parent ccf4fd14c3
commit abb74afc8e

View File

@ -0,0 +1,166 @@
/*
Copyright 2020-2021 Lowdefy, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import testContext from './testContext.js';
import Wait from './Wait.js';
const lowdefy = {
_internal: {
actions: {
Wait,
},
blockComponents: {
Button: { meta: { category: 'display' } },
},
auth: {
login: jest.fn(),
},
},
};
const RealDate = Date;
const mockDate = jest.fn(() => ({ date: 0 }));
mockDate.now = jest.fn(() => 0);
// Comment out to use console
console.log = () => {};
console.error = () => {};
beforeEach(() => {
global.Date = mockDate;
lowdefy._internal.auth.login.mockReset();
});
afterAll(() => {
global.Date = RealDate;
});
const timeout = (ms) => {
return new Promise((resolve) => setTimeout(resolve, ms));
};
test('Wait', async () => {
const rootBlock = {
blockId: 'root',
meta: {
category: 'container',
},
areas: {
content: {
blocks: [
{
id: 'button',
blockId: 'button',
type: 'Button',
meta: {
category: 'display',
valueType: 'string',
},
events: {
onClick: [
{
id: 'a',
type: 'Wait',
params: { ms: 500 },
},
],
},
},
],
},
},
};
const context = await testContext({
lowdefy,
rootBlock,
});
const button = context._internal.RootBlocks.map['button'];
let resolved = false;
button.triggerEvent({ name: 'onClick' }).then(() => {
resolved = true;
});
expect(resolved).toBe(false);
await timeout(100);
expect(resolved).toBe(false);
await timeout(300);
expect(resolved).toBe(false);
await timeout(150);
expect(resolved).toBe(true);
});
test('Wait ms not a integer', async () => {
const rootBlock = {
blockId: 'root',
meta: {
category: 'container',
},
areas: {
content: {
blocks: [
{
id: 'button',
blockId: 'button',
type: 'Button',
meta: {
category: 'display',
valueType: 'string',
},
events: {
onClick: [
{
id: 'a',
type: 'Wait',
params: { ms: 1.1 },
},
],
},
},
],
},
},
};
const context = await testContext({
lowdefy,
rootBlock,
});
const button = context._internal.RootBlocks.map['button'];
const res = await button.triggerEvent({ name: 'onClick' });
expect(res).toEqual({
blockId: 'button',
bounced: false,
endTimestamp: { date: 0 },
error: {
action: { id: 'a', params: { ms: 1.1 }, type: 'Wait' },
error: {
error: new Error('Wait action "ms" param should be an integer.'),
index: 0,
type: 'Wait',
},
},
event: undefined,
eventName: 'onClick',
responses: {
a: {
error: new Error('Wait action "ms" param should be an integer.'),
index: 0,
type: 'Wait',
},
},
startTimestamp: { date: 0 },
success: false,
});
});