Skip to main content
Glama
items.test.js3.05 kB
'use strict' const assert = require('node:assert/strict') const { test } = require('node:test') const { mergeSchemas } = require('../index') const { defaultResolver } = require('./utils') test('should merge empty schema and items keyword', () => { const schema1 = { type: 'array' } const schema2 = { type: 'array', items: { type: 'object', properties: { foo: { type: 'string' } } } } const mergedSchema = mergeSchemas([schema1, schema2], { defaultResolver }) assert.deepStrictEqual(mergedSchema, { type: 'array', items: { type: 'object', properties: { foo: { type: 'string' } } } }) }) test('should merge two equal item schemas', () => { const schema1 = { type: 'array', items: { type: 'object', properties: { foo: { type: 'string' } } } } const schema2 = { type: 'array', items: { type: 'object', properties: { foo: { type: 'string' } } } } const mergedSchema = mergeSchemas([schema1, schema2], { defaultResolver }) assert.deepStrictEqual(mergedSchema, { type: 'array', items: { type: 'object', properties: { foo: { type: 'string' } } } }) }) test('should merge two different sets of item schemas', () => { const schema1 = { type: 'array', items: { type: 'object', properties: { foo: { type: 'string' }, bar: { type: 'number' } } } } const schema2 = { type: 'array', items: { type: 'object', properties: { foo: { type: 'string' }, baz: { type: 'boolean' } } } } const mergedSchema = mergeSchemas([schema1, schema2], { defaultResolver }) assert.deepStrictEqual(mergedSchema, { type: 'array', items: { type: 'object', properties: { foo: { type: 'string' }, bar: { type: 'number' }, baz: { type: 'boolean' } } } }) }) test('should merge two different sets of item schemas with additionalItems', () => { const schema1 = { type: 'array', items: [ { type: 'object', properties: { foo: { type: 'string', const: 'foo' } } } ], additionalItems: { type: 'object', properties: { baz: { type: 'string', const: 'baz' } } } } const schema2 = { type: 'array', items: { type: 'object', properties: { foo: { type: 'string' }, baz: { type: 'string' } } } } const mergedSchema = mergeSchemas([schema1, schema2], { defaultResolver }) assert.deepStrictEqual(mergedSchema, { type: 'array', items: [ { type: 'object', properties: { foo: { type: 'string', const: 'foo' }, baz: { type: 'string' } } } ], additionalItems: { type: 'object', properties: { foo: { type: 'string' }, baz: { type: 'string', const: 'baz' } } } }) })

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/krtw00/search-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server