mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 08:43:25 +08:00
ee7809e8a8
From the openapi spec: https://spec.openapis.org/oas/latest.html#fixed-fields-7 each endpoint needs to have an `operationId`: > Unique string used to identify the operation. The id MUST be unique > among all operations described in the API. The operationId value is > case-sensitive. Tools and libraries MAY use the operationId to uniquely > identify an operation, therefore, it is RECOMMENDED to follow common > programming naming conventions. Running the linter on our openapi.json file with this command: `npx @redocly/openapi-cli lint openapi.json` produced the following warning on all of our endpoints: > Operation object should contain `operationId` field This commit resolves these warnings by adding an operationId field to each endpoint.
250 lines
8.2 KiB
Ruby
250 lines
8.2 KiB
Ruby
# frozen_string_literal: true
|
|
require 'swagger_helper'
|
|
|
|
describe 'groups' do
|
|
|
|
let(:admin) { Fabricate(:admin) }
|
|
|
|
before do
|
|
Jobs.run_immediately!
|
|
sign_in(admin)
|
|
end
|
|
|
|
path '/admin/groups.json' do
|
|
post 'Creates a group' do
|
|
tags 'Groups'
|
|
operationId 'createGroup'
|
|
consumes 'application/json'
|
|
parameter name: :group, in: :body, schema: {
|
|
type: :object,
|
|
properties: {
|
|
group: {
|
|
type: :object,
|
|
properties: {
|
|
name: { type: :string },
|
|
}, required: ['name']
|
|
}
|
|
}, required: ['group']
|
|
}
|
|
|
|
produces 'application/json'
|
|
response '200', 'group created' do
|
|
schema type: :object, properties: {
|
|
basic_group: {
|
|
type: :object,
|
|
properties: {
|
|
id: { type: :integer },
|
|
automatic: { type: :boolean },
|
|
name: { type: :string },
|
|
user_count: { type: :integer },
|
|
mentionable_level: { type: :integer },
|
|
messageable_level: { type: :integer },
|
|
visibility_level: { type: :integer },
|
|
automatic_membership_email_domains: { type: [:string, :null] },
|
|
automatic_membership_retroactive: { type: :boolean },
|
|
primary_group: { type: :boolean },
|
|
title: { type: [:string, :null] },
|
|
grant_trust_level: { type: [:string, :null] },
|
|
incoming_email: { type: [:string, :null] },
|
|
has_messages: { type: :boolean },
|
|
flair_url: { type: [:string, :null] },
|
|
flair_bg_color: { type: [:string, :null] },
|
|
flair_color: { type: [:string, :null] },
|
|
bio_raw: { type: [:string, :null] },
|
|
bio_cooked: { type: [:string, :null] },
|
|
bio_excerpt: { type: [:string, :null] },
|
|
public_admission: { type: :boolean },
|
|
public_exit: { type: :boolean },
|
|
allow_membership_requests: { type: :boolean },
|
|
full_name: { type: [:string, :null] },
|
|
default_notification_level: { type: :integer },
|
|
membership_request_template: { type: [:string, :null] },
|
|
membership_visibility_level: { type: :integer },
|
|
can_see_members: { type: :boolean },
|
|
publish_read_state: { type: :boolean },
|
|
},
|
|
required: ["id"]
|
|
}
|
|
}, required: ["basic_group"]
|
|
|
|
let(:group) { { name: 'awesome' } }
|
|
run_test! do |response|
|
|
data = JSON.parse(response.body)
|
|
expect(data['basic_group']['name']).to eq("awesome")
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
path '/admin/groups/{id}.json' do
|
|
delete 'Delete a group' do
|
|
tags 'Groups'
|
|
operationId 'deleteGroup'
|
|
consumes 'application/json'
|
|
parameter name: :id, in: :path, type: :integer
|
|
expected_request_schema = nil
|
|
|
|
produces 'application/json'
|
|
response '200', 'response' do
|
|
expected_response_schema = load_spec_schema('success_ok_response')
|
|
schema expected_response_schema
|
|
|
|
let(:id) { Fabricate(:group).id }
|
|
it_behaves_like "a JSON endpoint", 200 do
|
|
let(:expected_response_schema) { expected_response_schema }
|
|
let(:expected_request_schema) { expected_request_schema }
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
path '/groups/{id}.json' do
|
|
put 'Update a group' do
|
|
tags 'Groups'
|
|
operationId 'updateGroup'
|
|
consumes 'application/json'
|
|
parameter name: :id, in: :path, type: :integer
|
|
parameter name: :group, in: :body, schema: {
|
|
type: :object,
|
|
properties: {
|
|
group: {
|
|
type: :object,
|
|
properties: {
|
|
name: { type: :string },
|
|
}, required: ['name']
|
|
}
|
|
}, required: ['group']
|
|
}
|
|
|
|
produces 'application/json'
|
|
response '200', 'success response' do
|
|
schema type: :object, properties: {
|
|
success: { type: :string, example: "OK" }
|
|
}
|
|
|
|
let(:id) { Fabricate(:group).id }
|
|
let(:group) { { name: 'awesome' } }
|
|
|
|
run_test!
|
|
end
|
|
end
|
|
|
|
get 'Get a group' do
|
|
tags 'Groups'
|
|
operationId 'getGroup'
|
|
consumes 'application/json'
|
|
parameter name: :id, in: :path, type: :string, example: 'name', description: "Use group name instead of id"
|
|
expected_request_schema = nil
|
|
|
|
produces 'application/json'
|
|
response '200', 'success response' do
|
|
expected_response_schema = load_spec_schema('group_response')
|
|
schema expected_response_schema
|
|
|
|
let(:id) { Fabricate(:group).name }
|
|
|
|
it_behaves_like "a JSON endpoint", 200 do
|
|
let(:expected_response_schema) { expected_response_schema }
|
|
let(:expected_request_schema) { expected_request_schema }
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
path '/groups/{id}/members.json' do
|
|
get 'List group members' do
|
|
tags 'Groups'
|
|
operationId 'listGroupMembers'
|
|
consumes 'application/json'
|
|
parameter name: :id, in: :path, type: :string, example: 'name', description: "Use group name instead of id"
|
|
expected_request_schema = nil
|
|
|
|
produces 'application/json'
|
|
response '200', 'success response' do
|
|
expected_response_schema = load_spec_schema('group_members_response')
|
|
schema expected_response_schema
|
|
|
|
let(:id) { Fabricate(:group).name }
|
|
|
|
it_behaves_like "a JSON endpoint", 200 do
|
|
let(:expected_response_schema) { expected_response_schema }
|
|
let(:expected_request_schema) { expected_request_schema }
|
|
end
|
|
end
|
|
end
|
|
|
|
put 'Add group members' do
|
|
tags 'Groups'
|
|
operationId 'addGroupMembers'
|
|
consumes 'application/json'
|
|
parameter name: :id, in: :path, type: :integer
|
|
expected_request_schema = load_spec_schema('group_add_members_request')
|
|
parameter name: :params, in: :body, schema: expected_request_schema
|
|
|
|
produces 'application/json'
|
|
response '200', 'success response' do
|
|
expected_response_schema = load_spec_schema('group_add_members_response')
|
|
schema expected_response_schema
|
|
|
|
let(:id) { Fabricate(:group).id }
|
|
let(:user) { Fabricate(:user) }
|
|
let(:user2) { Fabricate(:user) }
|
|
let(:usernames) { "#{user.username},#{user2.username}" }
|
|
let(:params) { { 'usernames' => usernames } }
|
|
|
|
it_behaves_like "a JSON endpoint", 200 do
|
|
let(:expected_response_schema) { expected_response_schema }
|
|
let(:expected_request_schema) { expected_request_schema }
|
|
end
|
|
end
|
|
end
|
|
|
|
delete 'Remove group members' do
|
|
tags 'Groups'
|
|
operationId 'removeGroupMembers'
|
|
consumes 'application/json'
|
|
parameter name: :id, in: :path, type: :integer
|
|
expected_request_schema = load_spec_schema('group_remove_members_request')
|
|
parameter name: :params, in: :body, schema: expected_request_schema
|
|
|
|
produces 'application/json'
|
|
response '200', 'success response' do
|
|
expected_response_schema = load_spec_schema('group_remove_members_response')
|
|
schema expected_response_schema
|
|
|
|
let(:id) { Fabricate(:group).id }
|
|
let(:user) { Fabricate(:user) }
|
|
let(:user2) { Fabricate(:user) }
|
|
let(:usernames) { "#{user.username},#{user2.username}" }
|
|
let(:params) { { 'usernames' => usernames } }
|
|
|
|
it_behaves_like "a JSON endpoint", 200 do
|
|
let(:expected_response_schema) { expected_response_schema }
|
|
let(:expected_request_schema) { expected_request_schema }
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
path '/groups.json' do
|
|
get 'List groups' do
|
|
tags 'Groups'
|
|
operationId 'listGroups'
|
|
consumes 'application/json'
|
|
expected_request_schema = nil
|
|
|
|
produces 'application/json'
|
|
response '200', 'response' do
|
|
expected_response_schema = load_spec_schema('groups_list_response')
|
|
schema expected_response_schema
|
|
|
|
it_behaves_like "a JSON endpoint", 200 do
|
|
let(:expected_response_schema) { expected_response_schema }
|
|
let(:expected_request_schema) { expected_request_schema }
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|