Files
n8n-enterprise-unlocked/packages/nodes-base/nodes/Microsoft/AzureCosmosDb/test/item/getAll.test.ts
कारतोफ्फेलस्क्रिप्ट™ 91069f057e refactor: Overhaul nodes-testing setup - Part 2 (no-changelog) (#14873)
2025-04-24 17:37:26 +02:00

74 lines
1.6 KiB
TypeScript

import nock from 'nock';
import { testWorkflows, getWorkflowFilenames } from '@test/nodes/Helpers';
import { credentials } from '../credentials';
describe('Azure Cosmos DB - Get All Items', () => {
const workflows = getWorkflowFilenames(__dirname).filter((filename) =>
filename.includes('getAll.workflow.json'),
);
beforeEach(() => {
const { baseUrl } = credentials.microsoftAzureCosmosDbSharedKeyApi;
nock(baseUrl)
.persist()
.defaultReplyHeaders({ 'Content-Type': 'application/json' })
.get('/colls/newOne3/docs')
.reply(
200,
{
_rid: '4PVyAMPuBto=',
Documents: [
{
id: 'John',
FamilyName: 'NewNameAdded',
Parents: [
88,
{ FirstName: 'Thomas', FamilyName: 'Bob' },
{ FamilyName: null, FirstName: 'Mary Kay' },
],
ExtraField: 'nothing serious',
Otherdetails: 'male',
This: 'male',
},
{
FamilyName: 'NewName',
id: 'NewId',
},
{
id: 'this',
},
],
_count: 3,
},
{
'x-ms-continuation': '4PVyAKoVaBQ=',
},
)
.get('/colls/newOne3/docs')
.matchHeader('x-ms-continuation', '4PVyAKoVaBQ=')
.reply(200, {
_rid: '4PVyAMPuBto=',
Documents: [
{
id: 'John',
FamilyName: 'NewNameAdded',
Parents: [
88,
{ FirstName: 'Thomas', FamilyName: 'Bob' },
{ FamilyName: null, FirstName: 'Mary Kay' },
],
ExtraField: 'nothing serious',
Otherdetails: 'male',
This: 'male',
},
],
_count: 1,
});
});
testWorkflows(workflows, credentials);
});