feat(engine): Added getEvent action method test.

This commit is contained in:
Sandile 2022-02-15 16:44:30 +02:00
parent 602e114040
commit 031535c553

View File

@ -0,0 +1,471 @@
/*
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 '../../test/testContext.js';
const lowdefy = {
_internal: {
actions: {
Action: ({ methods: { getEvent }, params }) => {
return getEvent(params);
},
},
blockComponents: {
Button: { meta: { category: 'display' } },
},
},
};
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;
});
afterAll(() => {
global.Date = RealDate;
});
test('getEvent params is true', 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: 'Action',
params: true,
},
],
},
},
],
},
},
};
const context = await testContext({
lowdefy,
rootBlock,
});
const button = context._internal.RootBlocks.map['button'];
const res = await button.triggerEvent({ name: 'onClick', event: { some: 'data' } });
expect(res).toEqual({
blockId: 'button',
bounced: false,
endTimestamp: { date: 0 },
event: {
some: 'data',
},
eventName: 'onClick',
responses: {
a: {
response: { some: 'data' },
index: 0,
type: 'Action',
},
},
startTimestamp: { date: 0 },
success: true,
});
});
test('getEvent params is some', 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: 'Action',
params: 'some',
},
],
},
},
],
},
},
};
const context = await testContext({
lowdefy,
rootBlock,
});
const button = context._internal.RootBlocks.map['button'];
const res = await button.triggerEvent({ name: 'onClick', event: { some: 'data' } });
expect(res).toEqual({
blockId: 'button',
bounced: false,
endTimestamp: { date: 0 },
event: { some: 'data' },
eventName: 'onClick',
responses: {
a: {
index: 0,
response: 'data',
type: 'Action',
},
},
startTimestamp: { date: 0 },
success: true,
});
});
test('getEvent params is none', 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: 'Action',
},
],
},
},
],
},
},
};
const context = await testContext({
lowdefy,
rootBlock,
});
const button = context._internal.RootBlocks.map['button'];
const res = await button.triggerEvent({ name: 'onClick', event: { some: 'data' } });
expect(res).toEqual({
blockId: 'button',
bounced: false,
endTimestamp: { date: 0 },
error: {
action: { id: 'a', type: 'Action' },
error: {
error: new Error(
'Method Error: getEvent params must be of type string, integer, boolean or object. Received: undefined at button.'
),
index: 0,
type: 'Action',
},
},
event: { some: 'data' },
eventName: 'onClick',
responses: {
a: {
error: new Error(
'Method Error: getEvent params must be of type string, integer, boolean or object. Received: undefined at button.'
),
index: 0,
type: 'Action',
},
},
startTimestamp: { date: 0 },
success: false,
});
});
test('getEvent params.key is null', 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: 'Action',
params: {
key: null,
default: 'defaulto',
},
},
],
},
},
],
},
},
};
const context = await testContext({
lowdefy,
rootBlock,
});
const button = context._internal.RootBlocks.map['button'];
const res = await button.triggerEvent({ name: 'onClick', event: { some: 'data' } });
expect(res).toEqual({
blockId: 'button',
bounced: false,
endTimestamp: { date: 0 },
event: { some: 'data' },
eventName: 'onClick',
responses: {
a: {
response: 'defaulto',
index: 0,
type: 'Action',
},
},
startTimestamp: { date: 0 },
success: true,
});
});
test('getEvent params.all is true', 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: 'Action',
params: {
all: true,
},
},
],
},
},
],
},
},
};
const context = await testContext({
lowdefy,
rootBlock,
});
const button = context._internal.RootBlocks.map['button'];
const res = await button.triggerEvent({ name: 'onClick', event: { some: 'data' } });
expect(res).toEqual({
blockId: 'button',
bounced: false,
endTimestamp: { date: 0 },
event: { some: 'data' },
eventName: 'onClick',
responses: {
a: {
response: { some: 'data' },
index: 0,
type: 'Action',
},
},
startTimestamp: { date: 0 },
success: true,
});
});
test('getEvent params.key is not string or int', 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: 'Action',
params: {
key: {},
},
},
],
},
},
],
},
},
};
const context = await testContext({
lowdefy,
rootBlock,
});
const button = context._internal.RootBlocks.map['button'];
const res = await button.triggerEvent({ name: 'onClick', event: { some: 'data' } });
expect(res).toEqual({
blockId: 'button',
bounced: false,
endTimestamp: { date: 0 },
event: { some: 'data' },
eventName: 'onClick',
error: {
action: {
id: 'a',
params: {
key: {},
},
type: 'Action',
},
error: {
error: new Error(
'Method Error: getEvent params.key must be of type string or integer. Received: {"key":{}} at button.'
),
index: 0,
type: 'Action',
},
},
responses: {
a: {
error: new Error(
'Method Error: getEvent params.key must be of type string or integer. Received: {"key":{}} at button.'
),
index: 0,
type: 'Action',
},
},
startTimestamp: { date: 0 },
success: false,
});
});
test('getEvent params.key is some', 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: 'Action',
params: {
key: 'some',
},
},
],
},
},
],
},
},
};
const context = await testContext({
lowdefy,
rootBlock,
});
const button = context._internal.RootBlocks.map['button'];
const res = await button.triggerEvent({ name: 'onClick', event: { some: 'data' } });
expect(res).toEqual({
blockId: 'button',
bounced: false,
endTimestamp: { date: 0 },
event: { some: 'data' },
eventName: 'onClick',
responses: {
a: {
response: 'data',
index: 0,
type: 'Action',
},
},
startTimestamp: { date: 0 },
success: true,
});
});