Skip to content

Commit

Permalink
Support for alternate http auth mechanisms (#291)
Browse files Browse the repository at this point in the history
Fixes #290
  • Loading branch information
jake-scott authored Jan 29, 2021
1 parent d4df86a commit be070be
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion openapi3/security_scheme.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ func (ss *SecurityScheme) Validate(c context.Context) error {
switch scheme {
case "bearer":
hasBearerFormat = true
case "basic":
case "basic", "negotiate", "digest":
default:
return fmt.Errorf("Security scheme of type 'http' has invalid 'scheme' value '%s'", scheme)
}
Expand Down
20 changes: 20 additions & 0 deletions openapi3/security_scheme_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,26 @@ var securitySchemeExamples = []securitySchemeExample{
`),
valid: true,
},
{
title: "Negotiate Authentication Sample",
raw: []byte(`
{
"type": "http",
"scheme": "negotiate"
}
`),
valid: true,
},
{
title: "Unknown http Authentication Sample",
raw: []byte(`
{
"type": "http",
"scheme": "notvalid"
}
`),
valid: false,
},
{
title: "API Key Sample",
raw: []byte(`
Expand Down

0 comments on commit be070be

Please sign in to comment.