mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 02:51:14 +00:00
75 lines
1.6 KiB
TypeScript
75 lines
1.6 KiB
TypeScript
import { NodeTestHarness } from '@nodes-testing/node-test-harness';
|
|
import nock from 'nock';
|
|
|
|
const API_RESPONSE = {
|
|
results: [
|
|
{
|
|
object: 'page',
|
|
id: '15bfb9cb-4cf0-812b-b4bc-c85cd00727f8',
|
|
created_time: '2024-12-13T06:01:00.000Z',
|
|
last_edited_time: '2024-12-13T06:01:00.000Z',
|
|
created_by: {
|
|
object: 'user',
|
|
id: 'f215e49c-4677-40c0-9adc-87440d341324',
|
|
},
|
|
last_edited_by: {
|
|
object: 'user',
|
|
id: 'f215e49c-4677-40c0-9adc-87440d341324',
|
|
},
|
|
cover: null,
|
|
icon: {
|
|
type: 'emoji',
|
|
emoji: '😊',
|
|
},
|
|
parent: {
|
|
type: 'page_id',
|
|
page_id: '15bfb9cb-4cf0-81c7-aab4-c5855b8cb6c3',
|
|
},
|
|
archived: false,
|
|
in_trash: false,
|
|
properties: {
|
|
title: {
|
|
id: 'title',
|
|
type: 'title',
|
|
title: [
|
|
{
|
|
type: 'text',
|
|
text: {
|
|
content: 'Child page',
|
|
link: null,
|
|
},
|
|
annotations: {
|
|
bold: false,
|
|
italic: false,
|
|
strikethrough: false,
|
|
underline: false,
|
|
code: false,
|
|
color: 'default',
|
|
},
|
|
plain_text: 'Child page',
|
|
href: null,
|
|
},
|
|
],
|
|
},
|
|
},
|
|
url: 'https://www.notion.so/Child-page-15bfb9cb4cf0812bb4bcc85cd00727f8',
|
|
public_url: null,
|
|
},
|
|
],
|
|
has_more: false,
|
|
};
|
|
|
|
describe('Test NotionV2, page => search', () => {
|
|
nock('https://api.notion.com')
|
|
.post('/v1/search', {
|
|
query: 'child',
|
|
filter: { property: 'object', value: 'page' },
|
|
sort: { direction: 'ascending', timestamp: 'last_edited_time' },
|
|
})
|
|
.reply(200, API_RESPONSE);
|
|
|
|
new NodeTestHarness().setupTests({
|
|
workflowFiles: ['search.workflow.json'],
|
|
});
|
|
});
|