fix(operators): Fix operator tests for passing down window.

This commit is contained in:
Gervwyk 2022-05-23 22:30:06 +02:00
parent 8e31d2a7a5
commit 562890f861
8 changed files with 190 additions and 200 deletions

View File

@ -28,11 +28,31 @@ const arrayIndices = [1];
const context = {
_internal: {
lowdefy: {
basePath: 'basePath',
inputs: { id: true },
lowdefyGlobal: { global: true },
menus: [{ menus: true }],
urlQuery: { urlQuery: true },
user: { user: true },
home: {
pageId: 'home.pageId',
configured: false,
},
_internal: {
window: {
location: {
hash: 'window.location.hash',
host: 'window.location.host',
hostname: 'window.location.hostname',
href: 'window.location.href',
origin: 'window.location.origin',
pathname: 'window.location.pathname',
port: 'window.location.port',
protocol: 'window.location.protocol',
search: 'window.location.search',
},
},
},
},
},
eventLog: [{ eventLog: true }],
@ -108,43 +128,7 @@ test('operator returns value', () => {
"arrayIndices": Array [
1,
],
"context": Object {
"_internal": Object {
"lowdefy": Object {
"inputs": Object {
"id": true,
},
"lowdefyGlobal": Object {
"global": true,
},
"menus": Array [
Object {
"menus": true,
},
],
"urlQuery": Object {
"urlQuery": true,
},
"user": Object {
"user": true,
},
},
},
"eventLog": Array [
Object {
"eventLog": true,
},
],
"id": "id",
"requests": Array [
Object {
"requests": true,
},
],
"state": Object {
"state": true,
},
},
"basePath": "basePath",
"event": Object {
"event": true,
},
@ -153,6 +137,10 @@ test('operator returns value', () => {
"eventLog": true,
},
],
"home": Object {
"configured": false,
"pageId": "home.pageId",
},
"input": true,
"location": "location.1",
"lowdefyGlobal": Object {
@ -178,6 +166,7 @@ test('operator returns value', () => {
],
},
},
"pageId": undefined,
"params": Object {
"params": true,
},
@ -185,6 +174,26 @@ test('operator returns value', () => {
"context": Object {
"_internal": Object {
"lowdefy": Object {
"_internal": Object {
"window": Object {
"location": Object {
"hash": "window.location.hash",
"host": "window.location.host",
"hostname": "window.location.hostname",
"href": "window.location.href",
"origin": "window.location.origin",
"pathname": "window.location.pathname",
"port": "window.location.port",
"protocol": "window.location.protocol",
"search": "window.location.search",
},
},
},
"basePath": "basePath",
"home": Object {
"configured": false,
"pageId": "home.pageId",
},
"inputs": Object {
"id": true,
},
@ -248,138 +257,19 @@ test('operator returns value', () => {
"user": Object {
"user": true,
},
},
],
]
`);
expect(res.errors).toEqual([]);
});
test('context._internal.lowdefy empty object', () => {
const context = {
_internal: {
lowdefy: {},
},
eventLog: [{ eventLog: true }],
id: 'id',
requests: [{ requests: true }],
state: { state: true },
};
const input = { a: { _test: { params: true } } };
const parser = new WebParser({ context, operators });
const res = parser.parse({ actions, args, arrayIndices, event, input, location });
expect(res.output).toEqual({ a: 'test' });
expect(operators._test.mock.calls).toMatchInlineSnapshot(`
Array [
Array [
Object {
"actions": Array [
Object {
"actions": true,
},
],
"args": Array [
Object {
"args": true,
},
],
"arrayIndices": Array [
1,
],
"context": Object {
"_internal": Object {
"lowdefy": Object {},
},
"eventLog": Array [
Object {
"eventLog": true,
},
],
"id": "id",
"requests": Array [
Object {
"requests": true,
},
],
"state": Object {
"state": true,
"window": Object {
"location": Object {
"hash": "window.location.hash",
"host": "window.location.host",
"hostname": "window.location.hostname",
"href": "window.location.href",
"origin": "window.location.origin",
"pathname": "window.location.pathname",
"port": "window.location.port",
"protocol": "window.location.protocol",
"search": "window.location.search",
},
},
"event": Object {
"event": true,
},
"eventLog": Array [
Object {
"eventLog": true,
},
],
"input": Object {},
"location": "location",
"lowdefyGlobal": Object {},
"menus": Object {},
"methodName": undefined,
"operatorPrefix": "_",
"operators": Object {
"_error": [MockFunction],
"_init": [MockFunction],
"_test": [MockFunction] {
"calls": [Circular],
"results": Array [
Object {
"type": "return",
"value": "test",
},
],
},
},
"params": Object {
"params": true,
},
"parser": WebParser {
"context": Object {
"_internal": Object {
"lowdefy": Object {},
},
"eventLog": Array [
Object {
"eventLog": true,
},
],
"id": "id",
"requests": Array [
Object {
"requests": true,
},
],
"state": Object {
"state": true,
},
},
"operators": Object {
"_error": [MockFunction],
"_init": [MockFunction],
"_test": [MockFunction] {
"calls": [Circular],
"results": Array [
Object {
"type": "return",
"value": "test",
},
],
},
},
"parse": [Function],
},
"requests": Array [
Object {
"requests": true,
},
],
"state": Object {
"state": true,
},
"urlQuery": Object {},
"user": Object {},
},
],
]

View File

@ -20,30 +20,29 @@ jest.mock('@lowdefy/operators', () => ({
getFromObject: jest.fn(),
}));
beforeEach(() => {
Object.defineProperty(window, 'location', {
writable: true,
configurable: true,
value: {
hash: '#XYZ',
host: 'localhost:3000',
hostname: 'localhost',
href: 'http://localhost:3000/details?_id=%22ABCD%22#XYZ',
origin: 'http://localhost:3000',
pathname: '/details',
port: '3000',
protocol: 'http:',
search: '?_id=%22ABCD%22',
},
});
});
const input = {
arrayIndices: [0],
context: { context: true, lowdefy: { basePath: 'base', homePageId: 'home', pageId: 'page-one' } },
basePath: 'base',
home: {
pageId: 'home-page-id',
},
location: 'location',
lowdefyGlobal: { lowdefyGlobal: true },
pageId: 'page-id',
params: 'origin',
window: {
location: {
hash: 'window.location.hash',
host: 'window.location.host',
hostname: 'window.location.hostname',
href: 'window.location.href',
origin: 'window.location.origin',
pathname: 'window.location.pathname',
port: 'window.location.port',
protocol: 'window.location.protocol',
search: 'window.location.search',
},
},
lowdefyGlobal: { lowdefyGlobal: true },
};
test('location calls getFromObject', async () => {
@ -56,17 +55,17 @@ test('location calls getFromObject', async () => {
location: 'location',
object: {
basePath: 'base',
hash: '#XYZ',
homePageId: 'home',
host: 'localhost:3000',
hostname: 'localhost',
href: 'http://localhost:3000/details?_id=%22ABCD%22#XYZ',
origin: 'http://localhost:3000',
pathname: '/details',
pageId: 'page-one',
port: '3000',
protocol: 'http:',
search: '?_id=%22ABCD%22',
homePageId: 'home-page-id',
pageId: 'page-id',
hash: 'window.location.hash',
host: 'window.location.host',
hostname: 'window.location.hostname',
href: 'window.location.href',
origin: 'window.location.origin',
pathname: 'window.location.pathname',
port: 'window.location.port',
protocol: 'window.location.protocol',
search: 'window.location.search',
},
operator: '_location',
params: 'origin',
@ -88,6 +87,6 @@ test('_location throw on no location', () => {
test('_location throw invalid param', () => {
expect(() => location({ ...input, params: 'none' })).toThrow(
'Operator Error: _location only returns values for basePath, href, origin, protocol, homePageId, host, hostname, port, pageId, pathname, search, hash. Received: "none" at location.'
'Operator Error: _location only returns values for basePath, hash, homePageId, host, hostname, href, origin, pageId, pathname, port, protocol, search. Received: "none" at location.'
);
});

View File

@ -23,6 +23,7 @@ const arrayIndices = [1];
const context = {
_internal: {
lowdefy: {
basePath: 'basePath',
inputs: { id: true },
lowdefyGlobal: { global: true },
menus: [
@ -38,6 +39,25 @@ const context = {
],
urlQuery: { urlQuery: true },
user: { user: true },
home: {
pageId: 'home.pageId',
configured: false,
},
_internal: {
window: {
location: {
hash: 'window.location.hash',
host: 'window.location.host',
hostname: 'window.location.hostname',
href: 'window.location.href',
origin: 'window.location.origin',
pathname: 'window.location.pathname',
port: 'window.location.port',
protocol: 'window.location.protocol',
search: 'window.location.search',
},
},
},
},
},
eventLog: [{ eventLog: true }],

View File

@ -26,11 +26,31 @@ const arrayIndices = [1];
const context = {
_internal: {
lowdefy: {
basePath: 'basePath',
inputs: { id: true },
lowdefyGlobal: { global: true },
menus: [{ menus: true }],
urlQuery: { urlQuery: true },
user: { user: true },
home: {
pageId: 'home.pageId',
configured: false,
},
_internal: {
window: {
location: {
hash: 'window.location.hash',
host: 'window.location.host',
hostname: 'window.location.hostname',
href: 'window.location.href',
origin: 'window.location.origin',
pathname: 'window.location.pathname',
port: 'window.location.port',
protocol: 'window.location.protocol',
search: 'window.location.search',
},
},
},
},
},
eventLog: [{ eventLog: true }],

View File

@ -60,11 +60,31 @@ test('_and evaluated in WebParser', () => {
const context = {
_internal: {
lowdefy: {
basePath: 'basePath',
inputs: { id: true },
lowdefyGlobal: { global: true },
menus: [{ menus: true }],
urlQuery: { urlQuery: true },
user: { user: true },
home: {
pageId: 'home.pageId',
configured: false,
},
_internal: {
window: {
location: {
hash: 'window.location.hash',
host: 'window.location.host',
hostname: 'window.location.hostname',
href: 'window.location.href',
origin: 'window.location.origin',
pathname: 'window.location.pathname',
port: 'window.location.port',
protocol: 'window.location.protocol',
search: 'window.location.search',
},
},
},
},
},
eventLog: [{ eventLog: true }],

View File

@ -14,9 +14,10 @@
limitations under the License.
*/
function _function({ arrayIndices, event, location, operatorPrefix, params, parser }) {
function _function({ actions, arrayIndices, event, location, operatorPrefix, params, parser }) {
return (...args) => {
const { output, errors } = parser.parse({
actions,
arrayIndices,
args,
event,

View File

@ -42,11 +42,31 @@ const location = 'location';
const context = {
_internal: {
lowdefy: {
basePath: 'basePath',
inputs: { id: true },
lowdefyGlobal: { global: true },
menus: [{ menus: true }],
urlQuery: { urlQuery: true },
user: { user: true },
home: {
pageId: 'home.pageId',
configured: false,
},
_internal: {
window: {
location: {
hash: 'window.location.hash',
host: 'window.location.host',
hostname: 'window.location.hostname',
href: 'window.location.href',
origin: 'window.location.origin',
pathname: 'window.location.pathname',
port: 'window.location.port',
protocol: 'window.location.protocol',
search: 'window.location.search',
},
},
},
},
},
eventLog: [{ eventLog: true }],

View File

@ -60,11 +60,31 @@ test('_or evaluated in WebParser', () => {
const context = {
_internal: {
lowdefy: {
basePath: 'basePath',
inputs: { id: true },
lowdefyGlobal: { global: true },
menus: [{ menus: true }],
urlQuery: { urlQuery: true },
user: { user: true },
home: {
pageId: 'home.pageId',
configured: false,
},
_internal: {
window: {
location: {
hash: 'window.location.hash',
host: 'window.location.host',
hostname: 'window.location.hostname',
href: 'window.location.href',
origin: 'window.location.origin',
pathname: 'window.location.pathname',
port: 'window.location.port',
protocol: 'window.location.protocol',
search: 'window.location.search',
},
},
},
},
},
eventLog: [{ eventLog: true }],