-
-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
07f3a2e
commit a3a4194
Showing
8 changed files
with
243 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
import { AsyncAPIDocumentV3 } from '../../src/models'; | ||
import { Parser } from '../../src/parser'; | ||
|
||
import type { v3 } from '../../src/spec-types'; | ||
|
||
describe('custom operations for v3 - parse schemas', function() { | ||
const parser = new Parser(); | ||
|
||
it('should parse valid schema format and preserve reference', async function() { | ||
const documentRaw = { | ||
asyncapi: '3.0.0', | ||
info: { | ||
title: 'Valid AsyncApi document', | ||
version: '1.0' | ||
}, | ||
channels: { | ||
channel: { | ||
$ref: '#/components/channels/channel' | ||
} | ||
}, | ||
operations: { | ||
operation: { | ||
action: 'receive', | ||
channel: { | ||
$ref: '#/channels/channel' | ||
}, | ||
messages: [ | ||
{ | ||
$ref: '#/components/messages/message' | ||
} | ||
] | ||
} | ||
}, | ||
components: { | ||
channels: { | ||
channel: { | ||
address: 'channel', | ||
messages: { | ||
message: { | ||
$ref: '#/components/messages/message' | ||
} | ||
} | ||
} | ||
}, | ||
messages: { | ||
message: { | ||
headers: { | ||
$ref: '#/components/schemas/schema' | ||
}, | ||
payload: { | ||
$ref: '#/components/schemas/schema' | ||
} | ||
} | ||
}, | ||
schemas: { | ||
schema: { | ||
schemaFormat: 'application/vnd.aai.asyncapi;version=2.0.0', | ||
schema: { | ||
type: 'object' | ||
} | ||
} | ||
} | ||
} | ||
}; | ||
const { document, diagnostics } = await parser.parse(documentRaw); | ||
|
||
expect(document).toBeInstanceOf(AsyncAPIDocumentV3); | ||
expect(diagnostics.length === 0).toEqual(true); | ||
|
||
expect(((document?.json()?.channels?.channel as v3.ChannelObject).messages?.message as v3.MessageObject)?.payload?.schema).toEqual({ type: 'object', 'x-parser-schema-id': '<anonymous-schema-1>' }); | ||
expect(((((document?.json() as any).operations?.operation as v3.OperationObject).channel as v3.ChannelObject)?.messages?.message as v3.MessageObject)?.payload?.schema).toEqual({ type: 'object', 'x-parser-schema-id': '<anonymous-schema-1>' }); | ||
expect((((document?.json() as any).operations?.operation as v3.OperationObject).messages?.[0] as v3.MessageObject)?.payload?.schema).toEqual({ type: 'object', 'x-parser-schema-id': '<anonymous-schema-1>' }); | ||
expect(((document?.json()?.components?.channels?.channel as v3.ChannelObject).messages?.message as v3.MessageObject)?.payload?.schema).toEqual({ type: 'object', 'x-parser-schema-id': '<anonymous-schema-1>' }); | ||
expect((document?.json()?.components?.messages?.message as v3.MessageObject)?.payload?.schema).toEqual({ type: 'object', 'x-parser-schema-id': '<anonymous-schema-1>' }); | ||
expect((((document?.json() as any).components?.messages?.message as v3.MessageObject)?.headers as v3.MultiFormatObject).schema).toEqual({ type: 'object', 'x-parser-schema-id': '<anonymous-schema-1>' }); | ||
expect((document?.json() as any).components?.schemas?.schema?.schema).toEqual({ type: 'object', 'x-parser-schema-id': '<anonymous-schema-1>' }); | ||
}); | ||
|
||
it('should parse valid default schema format', async function() { | ||
const documentRaw = { | ||
asyncapi: '3.0.0', | ||
info: { | ||
title: 'Valid AsyncApi document', | ||
version: '1.0' | ||
}, | ||
channels: { | ||
channel: { | ||
address: 'channel', | ||
messages: { | ||
message: { | ||
payload: { | ||
type: 'object' | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}; | ||
const { document, diagnostics } = await parser.parse(documentRaw); | ||
|
||
expect(document).toBeInstanceOf(AsyncAPIDocumentV3); | ||
expect(diagnostics.length === 0).toEqual(true); | ||
|
||
expect(((document?.json()?.channels?.channel as v3.ChannelObject).messages?.message as v3.MessageObject)?.payload).toEqual({ type: 'object', 'x-parser-schema-id': '<anonymous-schema-1>' }); | ||
}); | ||
|
||
it('should parse invalid schema format', async function() { | ||
const documentRaw = { | ||
asyncapi: '3.0.0', | ||
info: { | ||
title: 'Valid AsyncApi document', | ||
version: '1.0' | ||
}, | ||
channels: { | ||
channel: { | ||
address: 'channel', | ||
messages: { | ||
message: { | ||
payload: { | ||
schemaFormat: 'not existing', | ||
schema: { | ||
type: 'object' | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}; | ||
const { document, diagnostics } = await parser.parse(documentRaw); | ||
|
||
expect(document).toBeUndefined(); | ||
expect(diagnostics.length > 0).toEqual(true); | ||
}); | ||
}); |