-
-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(rulesets): add rules for validation of server variables and chan…
…nel parameters (#2101) Co-authored-by: Jakub Rożek <[email protected]>
- Loading branch information
1 parent
263e2b0
commit 9acc633
Showing
12 changed files
with
505 additions
and
0 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
143 changes: 143 additions & 0 deletions
143
packages/rulesets/src/asyncapi/__tests__/asyncapi-channel-parameters.test.ts
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,143 @@ | ||
import { DiagnosticSeverity } from '@stoplight/types'; | ||
import testRule from './__helpers__/tester'; | ||
|
||
testRule('asyncapi-channel-parameters', [ | ||
{ | ||
name: 'valid case', | ||
document: { | ||
asyncapi: '2.0.0', | ||
channels: { | ||
'users/{userId}/signedUp': { | ||
parameters: { | ||
userId: {}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
errors: [], | ||
}, | ||
|
||
{ | ||
name: 'channel has not defined definition for one of the parameters', | ||
document: { | ||
asyncapi: '2.0.0', | ||
channels: { | ||
'users/{userId}/{anotherParam}/signedUp': { | ||
parameters: { | ||
userId: {}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
errors: [ | ||
{ | ||
message: 'Not all channel\'s parameters are described with "parameters" object. Missed: anotherParam.', | ||
path: ['channels', 'users/{userId}/{anotherParam}/signedUp', 'parameters'], | ||
severity: DiagnosticSeverity.Error, | ||
}, | ||
], | ||
}, | ||
|
||
{ | ||
name: 'channel has not defined definition for two+ of the parameters', | ||
document: { | ||
asyncapi: '2.0.0', | ||
channels: { | ||
'users/{userId}/{anotherParam1}/{anotherParam2}/signedUp': { | ||
parameters: { | ||
userId: {}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
errors: [ | ||
{ | ||
message: | ||
'Not all channel\'s parameters are described with "parameters" object. Missed: anotherParam1, anotherParam2.', | ||
path: ['channels', 'users/{userId}/{anotherParam1}/{anotherParam2}/signedUp', 'parameters'], | ||
severity: DiagnosticSeverity.Error, | ||
}, | ||
], | ||
}, | ||
|
||
{ | ||
name: 'channel has not defined definition for one of the parameters (in the components.channels)', | ||
document: { | ||
asyncapi: '2.3.0', | ||
components: { | ||
channels: { | ||
'users/{userId}/{anotherParam}/signedUp': { | ||
parameters: { | ||
userId: {}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
errors: [ | ||
{ | ||
message: 'Not all channel\'s parameters are described with "parameters" object. Missed: anotherParam.', | ||
path: ['components', 'channels', 'users/{userId}/{anotherParam}/signedUp', 'parameters'], | ||
severity: DiagnosticSeverity.Error, | ||
}, | ||
], | ||
}, | ||
|
||
{ | ||
name: 'channel has redundant paramaters', | ||
document: { | ||
asyncapi: '2.0.0', | ||
channels: { | ||
'users/{userId}/signedUp': { | ||
parameters: { | ||
userId: {}, | ||
anotherParam1: {}, | ||
anotherParam2: {}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
errors: [ | ||
{ | ||
message: 'Channel\'s "parameters" object has redundant defined "anotherParam1" parameter.', | ||
path: ['channels', 'users/{userId}/signedUp', 'parameters', 'anotherParam1'], | ||
severity: DiagnosticSeverity.Error, | ||
}, | ||
{ | ||
message: 'Channel\'s "parameters" object has redundant defined "anotherParam2" parameter.', | ||
path: ['channels', 'users/{userId}/signedUp', 'parameters', 'anotherParam2'], | ||
severity: DiagnosticSeverity.Error, | ||
}, | ||
], | ||
}, | ||
|
||
{ | ||
name: 'channel has redundant paramaters (in the components.channels)', | ||
document: { | ||
asyncapi: '2.3.0', | ||
components: { | ||
channels: { | ||
'users/{userId}/signedUp': { | ||
parameters: { | ||
userId: {}, | ||
anotherParam1: {}, | ||
anotherParam2: {}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
errors: [ | ||
{ | ||
message: 'Channel\'s "parameters" object has redundant defined "anotherParam1" parameter.', | ||
path: ['components', 'channels', 'users/{userId}/signedUp', 'parameters', 'anotherParam1'], | ||
severity: DiagnosticSeverity.Error, | ||
}, | ||
{ | ||
message: 'Channel\'s "parameters" object has redundant defined "anotherParam2" parameter.', | ||
path: ['components', 'channels', 'users/{userId}/signedUp', 'parameters', 'anotherParam2'], | ||
severity: DiagnosticSeverity.Error, | ||
}, | ||
], | ||
}, | ||
]); |
155 changes: 155 additions & 0 deletions
155
packages/rulesets/src/asyncapi/__tests__/asyncapi-server-variables.test.ts
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,155 @@ | ||
import { DiagnosticSeverity } from '@stoplight/types'; | ||
import testRule from './__helpers__/tester'; | ||
|
||
testRule('asyncapi-server-variables', [ | ||
{ | ||
name: 'valid case', | ||
document: { | ||
asyncapi: '2.0.0', | ||
servers: { | ||
production: { | ||
url: '{sub}.stoplight.io', | ||
protocol: 'https', | ||
variables: { | ||
sub: {}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
errors: [], | ||
}, | ||
|
||
{ | ||
name: 'server has not defined definition for one of the url variables', | ||
document: { | ||
asyncapi: '2.0.0', | ||
servers: { | ||
production: { | ||
url: '{sub}.{anotherParam}.stoplight.io', | ||
protocol: 'https', | ||
variables: { | ||
sub: {}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
errors: [ | ||
{ | ||
message: 'Not all server\'s variables are described with "variables" object. Missed: anotherParam.', | ||
path: ['servers', 'production', 'variables'], | ||
severity: DiagnosticSeverity.Error, | ||
}, | ||
], | ||
}, | ||
|
||
{ | ||
name: 'server has not defined definition for two of the url variables', | ||
document: { | ||
asyncapi: '2.0.0', | ||
servers: { | ||
production: { | ||
url: '{sub}.{anotherParam1}.{anotherParam2}.stoplight.io', | ||
protocol: 'https', | ||
variables: { | ||
sub: {}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
errors: [ | ||
{ | ||
message: | ||
'Not all server\'s variables are described with "variables" object. Missed: anotherParam1, anotherParam2.', | ||
path: ['servers', 'production', 'variables'], | ||
severity: DiagnosticSeverity.Error, | ||
}, | ||
], | ||
}, | ||
|
||
{ | ||
name: 'server has not defined definition for one of the url variables (in the components.servers)', | ||
document: { | ||
asyncapi: '2.3.0', | ||
components: { | ||
servers: { | ||
production: { | ||
url: '{sub}.{anotherParam}.stoplight.io', | ||
protocol: 'https', | ||
variables: { | ||
sub: {}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
errors: [ | ||
{ | ||
message: 'Not all server\'s variables are described with "variables" object. Missed: anotherParam.', | ||
path: ['components', 'servers', 'production', 'variables'], | ||
severity: DiagnosticSeverity.Error, | ||
}, | ||
], | ||
}, | ||
|
||
{ | ||
name: 'server has redundant url variables', | ||
document: { | ||
asyncapi: '2.0.0', | ||
servers: { | ||
production: { | ||
url: '{sub}.stoplight.io', | ||
protocol: 'https', | ||
variables: { | ||
sub: {}, | ||
anotherParam1: {}, | ||
anotherParam2: {}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
errors: [ | ||
{ | ||
message: 'Server\'s "variables" object has redundant defined "anotherParam1" url variable.', | ||
path: ['servers', 'production', 'variables', 'anotherParam1'], | ||
severity: DiagnosticSeverity.Error, | ||
}, | ||
{ | ||
message: 'Server\'s "variables" object has redundant defined "anotherParam2" url variable.', | ||
path: ['servers', 'production', 'variables', 'anotherParam2'], | ||
severity: DiagnosticSeverity.Error, | ||
}, | ||
], | ||
}, | ||
|
||
{ | ||
name: 'server has redundant url variables (in the components.servers)', | ||
document: { | ||
asyncapi: '2.3.0', | ||
components: { | ||
servers: { | ||
production: { | ||
url: '{sub}.stoplight.io', | ||
protocol: 'https', | ||
variables: { | ||
sub: {}, | ||
anotherParam1: {}, | ||
anotherParam2: {}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
}, | ||
errors: [ | ||
{ | ||
message: 'Server\'s "variables" object has redundant defined "anotherParam1" url variable.', | ||
path: ['components', 'servers', 'production', 'variables', 'anotherParam1'], | ||
severity: DiagnosticSeverity.Error, | ||
}, | ||
{ | ||
message: 'Server\'s "variables" object has redundant defined "anotherParam2" url variable.', | ||
path: ['components', 'servers', 'production', 'variables', 'anotherParam2'], | ||
severity: DiagnosticSeverity.Error, | ||
}, | ||
], | ||
}, | ||
]); |
51 changes: 51 additions & 0 deletions
51
packages/rulesets/src/asyncapi/functions/asyncApi2ChannelParameters.ts
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,51 @@ | ||
import { createRulesetFunction } from '@stoplight/spectral-core'; | ||
|
||
import { parseUrlVariables } from './utils/parseUrlVariables'; | ||
import { getMissingProps } from './utils/getMissingProps'; | ||
import { getRedundantProps } from './utils/getRedundantProps'; | ||
|
||
import type { IFunctionResult } from '@stoplight/spectral-core'; | ||
|
||
export default createRulesetFunction<{ parameters: Record<string, unknown> }, null>( | ||
{ | ||
input: { | ||
type: 'object', | ||
properties: { | ||
parameters: { | ||
type: 'object', | ||
}, | ||
}, | ||
required: ['parameters'], | ||
}, | ||
options: null, | ||
}, | ||
function asyncApi2ChannelParameters(targetVal, _, ctx) { | ||
const path = ctx.path[ctx.path.length - 1] as string; | ||
const results: IFunctionResult[] = []; | ||
|
||
const parameters = parseUrlVariables(path); | ||
if (parameters.length === 0) return; | ||
|
||
const missingParameters = getMissingProps(parameters, targetVal.parameters); | ||
if (missingParameters.length) { | ||
results.push({ | ||
message: `Not all channel's parameters are described with "parameters" object. Missed: ${missingParameters.join( | ||
', ', | ||
)}.`, | ||
path: [...ctx.path, 'parameters'], | ||
}); | ||
} | ||
|
||
const redundantParameters = getRedundantProps(parameters, targetVal.parameters); | ||
if (redundantParameters.length) { | ||
redundantParameters.forEach(param => { | ||
results.push({ | ||
message: `Channel's "parameters" object has redundant defined "${param}" parameter.`, | ||
path: [...ctx.path, 'parameters', param], | ||
}); | ||
}); | ||
} | ||
|
||
return results; | ||
}, | ||
); |
Oops, something went wrong.