Add a test for operation name collisions and fix the one additional collision found
This commit is contained in:
parent
932fa56227
commit
aa2704acc7
3 changed files with 12 additions and 4 deletions
|
@ -65,6 +65,7 @@ def swagger_route_data(include_internal=False, compact=False):
|
|||
models = {}
|
||||
tags = []
|
||||
tags_added = set()
|
||||
operationIds = set()
|
||||
|
||||
for rule in app.url_map.iter_rules():
|
||||
endpoint_method = app.view_functions[rule.endpoint]
|
||||
|
@ -125,13 +126,20 @@ def swagger_route_data(include_internal=False, compact=False):
|
|||
logger.debug('Unable to find method for %s in class %s', method_name, view_class)
|
||||
continue
|
||||
|
||||
operationId = method_metadata(method, 'nickname')
|
||||
operation_swagger = {
|
||||
'operationId': method_metadata(method, 'nickname'),
|
||||
'operationId': operationId,
|
||||
'parameters': [],
|
||||
}
|
||||
if operation_swagger['operationId'] is None:
|
||||
|
||||
if operationId is None:
|
||||
continue
|
||||
|
||||
if operationId in operationIds:
|
||||
raise Exception('Duplicate operation Id: %s' % operationId)
|
||||
|
||||
operationIds.add(operationId)
|
||||
|
||||
if not compact:
|
||||
operation_swagger.update({
|
||||
'description': method.__doc__.strip() if method.__doc__ else '',
|
||||
|
|
|
@ -361,7 +361,7 @@ class InviteTeamMember(ApiResource):
|
|||
@path_param('teamname', 'The name of the team')
|
||||
class TeamPermissions(ApiResource):
|
||||
""" Resource for listing the permissions an org's team has in the system. """
|
||||
@nickname('getTeamPermissions')
|
||||
@nickname('getOrganizationTeamPermissions')
|
||||
def get(self, orgname, teamname):
|
||||
""" Returns the list of repository permissions for the org's team. """
|
||||
permission = AdministerOrganizationPermission(orgname)
|
||||
|
|
|
@ -80,7 +80,7 @@ angular.module('quay').factory('RolesService', ['UtilService', 'Restangular', 'A
|
|||
'teamname': entityName
|
||||
};
|
||||
|
||||
ApiService.getTeamPermissions(null, params).then(function(resp) {
|
||||
ApiService.getOrganizationTeamPermissions(null, params).then(function(resp) {
|
||||
callback(resp.permissions);
|
||||
}, errorHandler);
|
||||
} else if (entityKind == 'robot') {
|
||||
|
|
Reference in a new issue