use of io.swagger.models.auth.BasicAuthDefinition in project swagger-parser by swagger-api.
the class SwaggerDeserializerTest method testSecurityDefinition.
@Test
public void testSecurityDefinition() {
String json = "{\n" + " \"swagger\": \"2.0\",\n" + " \"securityDefinitions\": {\n" + " \"basic_auth\": {\n" + " \"type\": \"basic\",\n" + " \"x-foo\": \"basicBar\"\n" + " },\n" + " \"api_key\": {\n" + " \"type\": \"apiKey\",\n" + " \"name\": \"api_key\",\n" + " \"in\": \"header\",\n" + " \"description\": \"api key description\",\n" + " \"x-foo\": \"apiKeyBar\"\n" + " }\n" + " },\n" + " \"paths\": {\n" + " \"/pet\": {\n" + " \"get\": {\n" + " \"security\": [\n" + " {\n" + " \"basic_auth\": [],\n" + " \"api_key\": []\n" + " }\n" + " ]\n" + " }\n" + " }\n" + " }\n" + "}";
SwaggerParser parser = new SwaggerParser();
SwaggerDeserializationResult result = parser.readWithInfo(json);
List<String> messageList = result.getMessages();
Set<String> messages = new HashSet<String>(messageList);
Swagger swagger = result.getSwagger();
assertNotNull(swagger.getSecurityDefinitions());
assertTrue(swagger.getSecurityDefinitions().keySet().size() == 2);
// Basic Authentication
SecuritySchemeDefinition definitionBasic = swagger.getSecurityDefinitions().get("basic_auth");
assertNotNull(definitionBasic);
assertTrue(definitionBasic instanceof BasicAuthDefinition);
assertEquals(definitionBasic.getVendorExtensions().get("x-foo"), "basicBar");
// API Key Authentication
SecuritySchemeDefinition definition = swagger.getSecurityDefinitions().get("api_key");
assertNotNull(definition);
assertTrue(definition instanceof ApiKeyAuthDefinition);
ApiKeyAuthDefinition apiKey = (ApiKeyAuthDefinition) definition;
assertEquals(apiKey.getName(), "api_key");
assertEquals(apiKey.getIn(), In.HEADER);
assertEquals(apiKey.getDescription(), "api key description");
assertEquals(apiKey.getVendorExtensions().get("x-foo"), "apiKeyBar");
}
use of io.swagger.models.auth.BasicAuthDefinition in project candlepin by candlepin.
the class CandlepinSwaggerConfig method afterScan.
@Override
public void afterScan(Reader reader, Swagger swagger) {
swagger.setExternalDocs(new ExternalDocs("Project website: ", "http://candlepinproject.org/"));
BasicAuthDefinition basic = new BasicAuthDefinition();
basic.setDescription("Candlepin requires HTTP Basic authentication of an owner");
swagger.addSecurityDefinition(BASIC_AUTH, basic);
SecurityRequirement req = new SecurityRequirement();
req.setRequirements(BASIC_AUTH, new ArrayList<>());
swagger.addSecurity(req);
}
use of io.swagger.models.auth.BasicAuthDefinition in project ballerina by ballerina-lang.
the class SwaggerServiceMapper method createSecurityDefinitionsModel.
/**
* Creates the security definition models for swagger definition.
* @param annotationAttributeValue The annotation attribute value for security definitions.
* @param swagger The swagger definition.
*/
private void createSecurityDefinitionsModel(AnnotationAttachmentAttributeValueNode annotationAttributeValue, Swagger swagger) {
if (null != annotationAttributeValue) {
Map<String, SecuritySchemeDefinition> securitySchemeDefinitionMap = new HashMap<>();
for (AnnotationAttachmentAttributeValueNode authorizationValues : annotationAttributeValue.getValueArray()) {
if (authorizationValues instanceof AnnotationAttachmentNode) {
AnnotationAttachmentNode authAnnotationAttachment = (AnnotationAttachmentNode) authorizationValues;
Map<String, AnnotationAttachmentAttributeValueNode> authAttributes = this.listToMap(authAnnotationAttachment);
if (authAttributes.containsKey("name") && authAttributes.containsKey("authType")) {
String name = this.getStringLiteralValue(authAttributes.get("name"));
String type = this.getStringLiteralValue(authAttributes.get("authType"));
String description = "";
if (authAttributes.containsKey("description")) {
description = this.getStringLiteralValue(authAttributes.get("description"));
}
if ("basic".equals(type)) {
BasicAuthDefinition basicAuthDefinition = new BasicAuthDefinition();
basicAuthDefinition.setDescription(description);
securitySchemeDefinitionMap.put(name, basicAuthDefinition);
} else if ("apiKey".equals(type)) {
ApiKeyAuthDefinition apiKeyAuthDefinition = new ApiKeyAuthDefinition();
apiKeyAuthDefinition.setName(this.getStringLiteralValue(authAttributes.get("apiName")));
apiKeyAuthDefinition.setIn(In.forValue(this.getStringLiteralValue(authAttributes.get("in"))));
apiKeyAuthDefinition.setDescription(description);
securitySchemeDefinitionMap.put(name, apiKeyAuthDefinition);
} else if ("oauth2".equals(type)) {
OAuth2Definition oAuth2Definition = new OAuth2Definition();
oAuth2Definition.setFlow(this.getStringLiteralValue(authAttributes.get("flow")));
oAuth2Definition.setAuthorizationUrl(this.getStringLiteralValue(authAttributes.get("authorizationUrl")));
oAuth2Definition.setTokenUrl(this.getStringLiteralValue(authAttributes.get("tokenUrl")));
this.createSecurityDefinitionScopesModel(authAttributes.get("authorizationScopes"), oAuth2Definition);
oAuth2Definition.setDescription(description);
securitySchemeDefinitionMap.put(name, oAuth2Definition);
}
}
}
}
swagger.setSecurityDefinitions(securitySchemeDefinitionMap);
}
}
use of io.swagger.models.auth.BasicAuthDefinition in project swagger-core by swagger-api.
the class AuthSerializationTest method testBasicAuth.
@Test(description = "it should convert serialize a basic auth model")
public void testBasicAuth() throws IOException {
final BasicAuthDefinition auth = new BasicAuthDefinition();
final String json = "{\"type\":\"basic\"}";
SerializationMatchers.assertEqualsToJson(auth, json);
}
use of io.swagger.models.auth.BasicAuthDefinition in project swagger-core by swagger-api.
the class SwaggerTest method testSecurityDefinition.
@Test
public void testSecurityDefinition() {
// given
SecuritySchemeDefinition securityDefinition = new BasicAuthDefinition();
String name = "name";
// when
swagger.securityDefinition(name, securityDefinition);
// then
assertEquals(swagger.getSecurityDefinitions().get(name), securityDefinition, "Must be able to retrieve the added security definition");
}
Aggregations