696 lines
17 KiB
Ruby
696 lines
17 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
# For every API endpoint we test 3 states of wikis:
|
|
# - disabled
|
|
# - enabled only for team members
|
|
# - enabled for everyone who has access
|
|
# Every state is tested for 3 user roles:
|
|
# - guest
|
|
# - developer
|
|
# - maintainer
|
|
# because they are 3 edge cases of using wiki pages.
|
|
|
|
RSpec.describe API::Wikis do
|
|
include WorkhorseHelpers
|
|
|
|
let(:user) { create(:user) }
|
|
let(:group) { create(:group).tap { |g| g.add_owner(user) } }
|
|
let(:project_wiki) { create(:project_wiki, project: project, user: user) }
|
|
let(:payload) { { content: 'content', format: 'rdoc', title: 'title' } }
|
|
let(:expected_keys_with_content) { %w(content format slug title) }
|
|
let(:expected_keys_without_content) { %w(format slug title) }
|
|
let(:wiki) { project_wiki }
|
|
|
|
shared_examples_for 'wiki API 404 Project Not Found' do
|
|
include_examples 'wiki API 404 Not Found', 'Project'
|
|
end
|
|
|
|
describe 'GET /projects/:id/wikis' do
|
|
let(:url) { "/projects/#{project.id}/wikis" }
|
|
|
|
context 'when wiki is disabled' do
|
|
let(:project) { create(:project, :wiki_repo, :wiki_disabled) }
|
|
|
|
context 'when user is guest' do
|
|
before do
|
|
get api(url)
|
|
end
|
|
|
|
include_examples 'wiki API 404 Project Not Found'
|
|
end
|
|
|
|
context 'when user is developer' do
|
|
before do
|
|
project.add_developer(user)
|
|
|
|
get api(url, user)
|
|
end
|
|
|
|
include_examples 'wiki API 403 Forbidden'
|
|
end
|
|
|
|
context 'when user is maintainer' do
|
|
before do
|
|
project.add_maintainer(user)
|
|
|
|
get api(url, user)
|
|
end
|
|
|
|
include_examples 'wiki API 403 Forbidden'
|
|
end
|
|
end
|
|
|
|
context 'when wiki is available only for team members' do
|
|
let(:project) { create(:project, :wiki_repo, :wiki_private) }
|
|
|
|
context 'when user is guest' do
|
|
before do
|
|
get api(url)
|
|
end
|
|
|
|
include_examples 'wiki API 404 Project Not Found'
|
|
end
|
|
|
|
context 'when user is developer' do
|
|
before do
|
|
project.add_developer(user)
|
|
end
|
|
|
|
include_examples 'wikis API returns list of wiki pages'
|
|
end
|
|
|
|
context 'when user is maintainer' do
|
|
before do
|
|
project.add_maintainer(user)
|
|
end
|
|
|
|
include_examples 'wikis API returns list of wiki pages'
|
|
end
|
|
end
|
|
|
|
context 'when wiki is available for everyone with access' do
|
|
let(:project) { create(:project, :wiki_repo) }
|
|
|
|
context 'when user is guest' do
|
|
before do
|
|
get api(url)
|
|
end
|
|
|
|
include_examples 'wiki API 404 Project Not Found'
|
|
end
|
|
|
|
context 'when user is developer' do
|
|
before do
|
|
project.add_developer(user)
|
|
end
|
|
|
|
include_examples 'wikis API returns list of wiki pages'
|
|
end
|
|
|
|
context 'when user is maintainer' do
|
|
before do
|
|
project.add_maintainer(user)
|
|
end
|
|
|
|
include_examples 'wikis API returns list of wiki pages'
|
|
end
|
|
end
|
|
end
|
|
|
|
describe 'GET /projects/:id/wikis/:slug' do
|
|
let(:page) { create(:wiki_page, wiki: project.wiki) }
|
|
let(:url) { "/projects/#{project.id}/wikis/#{page.slug}" }
|
|
|
|
context 'when wiki is disabled' do
|
|
let(:project) { create(:project, :wiki_repo, :wiki_disabled) }
|
|
|
|
context 'when user is guest' do
|
|
before do
|
|
get api(url)
|
|
end
|
|
|
|
include_examples 'wiki API 404 Project Not Found'
|
|
end
|
|
|
|
context 'when user is developer' do
|
|
before do
|
|
project.add_developer(user)
|
|
|
|
get api(url, user)
|
|
end
|
|
|
|
include_examples 'wiki API 403 Forbidden'
|
|
end
|
|
|
|
context 'when user is maintainer' do
|
|
before do
|
|
project.add_maintainer(user)
|
|
|
|
get api(url, user)
|
|
end
|
|
|
|
include_examples 'wiki API 403 Forbidden'
|
|
end
|
|
end
|
|
|
|
context 'when wiki is available only for team members' do
|
|
let(:project) { create(:project, :wiki_repo, :wiki_private) }
|
|
|
|
context 'when user is guest' do
|
|
before do
|
|
get api(url)
|
|
end
|
|
|
|
include_examples 'wiki API 404 Project Not Found'
|
|
end
|
|
|
|
context 'when user is developer' do
|
|
before do
|
|
project.add_developer(user)
|
|
get api(url, user)
|
|
end
|
|
|
|
include_examples 'wikis API returns wiki page'
|
|
|
|
context 'when page is not existing' do
|
|
let(:url) { "/projects/#{project.id}/wikis/unknown" }
|
|
|
|
include_examples 'wiki API 404 Wiki Page Not Found'
|
|
end
|
|
end
|
|
|
|
context 'when user is maintainer' do
|
|
before do
|
|
project.add_maintainer(user)
|
|
|
|
get api(url, user)
|
|
end
|
|
|
|
include_examples 'wikis API returns wiki page'
|
|
|
|
context 'when page is not existing' do
|
|
let(:url) { "/projects/#{project.id}/wikis/unknown" }
|
|
|
|
include_examples 'wiki API 404 Wiki Page Not Found'
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'when wiki is available for everyone with access' do
|
|
let(:project) { create(:project, :wiki_repo) }
|
|
|
|
context 'when user is guest' do
|
|
before do
|
|
get api(url)
|
|
end
|
|
|
|
include_examples 'wiki API 404 Project Not Found'
|
|
end
|
|
|
|
context 'when user is developer' do
|
|
before do
|
|
project.add_developer(user)
|
|
|
|
get api(url, user)
|
|
end
|
|
|
|
include_examples 'wikis API returns wiki page'
|
|
|
|
context 'when page is not existing' do
|
|
let(:url) { "/projects/#{project.id}/wikis/unknown" }
|
|
|
|
include_examples 'wiki API 404 Wiki Page Not Found'
|
|
end
|
|
end
|
|
|
|
context 'when user is maintainer' do
|
|
before do
|
|
project.add_maintainer(user)
|
|
|
|
get api(url, user)
|
|
end
|
|
|
|
include_examples 'wikis API returns wiki page'
|
|
|
|
context 'when page is not existing' do
|
|
let(:url) { "/projects/#{project.id}/wikis/unknown" }
|
|
|
|
include_examples 'wiki API 404 Wiki Page Not Found'
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
describe 'POST /projects/:id/wikis' do
|
|
let(:payload) { { title: 'title', content: 'content' } }
|
|
let(:url) { "/projects/#{project.id}/wikis" }
|
|
|
|
context 'when wiki is disabled' do
|
|
let(:project) { create(:project, :wiki_disabled, :wiki_repo) }
|
|
|
|
context 'when user is guest' do
|
|
before do
|
|
post(api(url), params: payload)
|
|
end
|
|
|
|
include_examples 'wiki API 404 Project Not Found'
|
|
end
|
|
|
|
context 'when user is developer' do
|
|
before do
|
|
project.add_developer(user)
|
|
post(api(url, user), params: payload)
|
|
end
|
|
|
|
include_examples 'wiki API 403 Forbidden'
|
|
end
|
|
|
|
context 'when user is maintainer' do
|
|
before do
|
|
project.add_maintainer(user)
|
|
post(api(url, user), params: payload)
|
|
end
|
|
|
|
include_examples 'wiki API 403 Forbidden'
|
|
end
|
|
end
|
|
|
|
context 'when wiki is available only for team members' do
|
|
let(:project) { create(:project, :wiki_private, :wiki_repo) }
|
|
|
|
context 'when user is guest' do
|
|
before do
|
|
post(api(url), params: payload)
|
|
end
|
|
|
|
include_examples 'wiki API 404 Project Not Found'
|
|
end
|
|
|
|
context 'when user is developer' do
|
|
before do
|
|
project.add_developer(user)
|
|
end
|
|
|
|
include_examples 'wikis API creates wiki page'
|
|
end
|
|
|
|
context 'when user is maintainer' do
|
|
before do
|
|
project.add_maintainer(user)
|
|
end
|
|
|
|
include_examples 'wikis API creates wiki page'
|
|
end
|
|
end
|
|
|
|
context 'when wiki is available for everyone with access' do
|
|
let(:project) { create(:project, :wiki_repo) }
|
|
|
|
context 'when user is guest' do
|
|
before do
|
|
post(api(url), params: payload)
|
|
end
|
|
|
|
include_examples 'wiki API 404 Project Not Found'
|
|
end
|
|
|
|
context 'when user is developer' do
|
|
before do
|
|
project.add_developer(user)
|
|
end
|
|
|
|
include_examples 'wikis API creates wiki page'
|
|
end
|
|
|
|
context 'when user is maintainer' do
|
|
before do
|
|
project.add_maintainer(user)
|
|
end
|
|
|
|
include_examples 'wikis API creates wiki page'
|
|
end
|
|
end
|
|
end
|
|
|
|
describe 'PUT /projects/:id/wikis/:slug' do
|
|
let(:page) { create(:wiki_page, wiki: project_wiki) }
|
|
let(:payload) { { title: 'new title', content: 'new content' } }
|
|
let(:url) { "/projects/#{project.id}/wikis/#{page.slug}" }
|
|
|
|
context 'when wiki is disabled' do
|
|
let(:project) { create(:project, :wiki_disabled, :wiki_repo) }
|
|
|
|
context 'when user is guest' do
|
|
before do
|
|
put(api(url), params: payload)
|
|
end
|
|
|
|
include_examples 'wiki API 404 Project Not Found'
|
|
end
|
|
|
|
context 'when user is developer' do
|
|
before do
|
|
project.add_developer(user)
|
|
|
|
put(api(url, user), params: payload)
|
|
end
|
|
|
|
include_examples 'wiki API 403 Forbidden'
|
|
end
|
|
|
|
context 'when user is maintainer' do
|
|
before do
|
|
project.add_maintainer(user)
|
|
|
|
put(api(url, user), params: payload)
|
|
end
|
|
|
|
include_examples 'wiki API 403 Forbidden'
|
|
end
|
|
end
|
|
|
|
context 'when wiki is available only for team members' do
|
|
let(:project) { create(:project, :wiki_private, :wiki_repo) }
|
|
|
|
context 'when user is guest' do
|
|
before do
|
|
put(api(url), params: payload)
|
|
end
|
|
|
|
include_examples 'wiki API 404 Project Not Found'
|
|
end
|
|
|
|
context 'when user is developer' do
|
|
before do
|
|
project.add_developer(user)
|
|
end
|
|
|
|
include_examples 'wikis API updates wiki page'
|
|
|
|
context 'when page is not existing' do
|
|
let(:url) { "/projects/#{project.id}/wikis/unknown" }
|
|
|
|
before do
|
|
put(api(url, user), params: payload)
|
|
end
|
|
|
|
include_examples 'wiki API 404 Wiki Page Not Found'
|
|
end
|
|
end
|
|
|
|
context 'when user is maintainer' do
|
|
before do
|
|
project.add_maintainer(user)
|
|
end
|
|
|
|
include_examples 'wikis API updates wiki page'
|
|
|
|
context 'when page is not existing' do
|
|
let(:url) { "/projects/#{project.id}/wikis/unknown" }
|
|
|
|
before do
|
|
put(api(url, user), params: payload)
|
|
end
|
|
|
|
include_examples 'wiki API 404 Wiki Page Not Found'
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'when wiki is available for everyone with access' do
|
|
let(:project) { create(:project, :wiki_repo) }
|
|
|
|
context 'when user is guest' do
|
|
before do
|
|
put(api(url), params: payload)
|
|
end
|
|
|
|
include_examples 'wiki API 404 Project Not Found'
|
|
end
|
|
|
|
context 'when user is developer' do
|
|
before do
|
|
project.add_developer(user)
|
|
end
|
|
|
|
include_examples 'wikis API updates wiki page'
|
|
|
|
context 'when page is not existing' do
|
|
let(:url) { "/projects/#{project.id}/wikis/unknown" }
|
|
|
|
before do
|
|
put(api(url, user), params: payload)
|
|
end
|
|
|
|
include_examples 'wiki API 404 Wiki Page Not Found'
|
|
end
|
|
end
|
|
|
|
context 'when user is maintainer' do
|
|
before do
|
|
project.add_maintainer(user)
|
|
end
|
|
|
|
include_examples 'wikis API updates wiki page'
|
|
|
|
context 'when page is not existing' do
|
|
let(:url) { "/projects/#{project.id}/wikis/unknown" }
|
|
|
|
before do
|
|
put(api(url, user), params: payload)
|
|
end
|
|
|
|
include_examples 'wiki API 404 Wiki Page Not Found'
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'when wiki belongs to a group project' do
|
|
let(:project) { create(:project, :wiki_repo, namespace: group) }
|
|
|
|
include_examples 'wikis API updates wiki page'
|
|
end
|
|
end
|
|
|
|
describe 'DELETE /projects/:id/wikis/:slug' do
|
|
let(:page) { create(:wiki_page, wiki: project_wiki) }
|
|
let(:url) { "/projects/#{project.id}/wikis/#{page.slug}" }
|
|
|
|
context 'when wiki is disabled' do
|
|
let(:project) { create(:project, :wiki_disabled, :wiki_repo) }
|
|
|
|
context 'when user is guest' do
|
|
before do
|
|
delete(api(url))
|
|
end
|
|
|
|
include_examples 'wiki API 404 Project Not Found'
|
|
end
|
|
|
|
context 'when user is developer' do
|
|
before do
|
|
project.add_developer(user)
|
|
|
|
delete(api(url, user))
|
|
end
|
|
|
|
include_examples 'wiki API 403 Forbidden'
|
|
end
|
|
|
|
context 'when user is maintainer' do
|
|
before do
|
|
project.add_maintainer(user)
|
|
|
|
delete(api(url, user))
|
|
end
|
|
|
|
include_examples 'wiki API 403 Forbidden'
|
|
end
|
|
end
|
|
|
|
context 'when wiki is available only for team members' do
|
|
let(:project) { create(:project, :wiki_private, :wiki_repo) }
|
|
|
|
context 'when user is guest' do
|
|
before do
|
|
delete(api(url))
|
|
end
|
|
|
|
include_examples 'wiki API 404 Project Not Found'
|
|
end
|
|
|
|
context 'when user is developer' do
|
|
before do
|
|
project.add_developer(user)
|
|
|
|
delete(api(url, user))
|
|
end
|
|
|
|
include_examples 'wiki API 403 Forbidden'
|
|
end
|
|
|
|
context 'when user is maintainer' do
|
|
before do
|
|
project.add_maintainer(user)
|
|
|
|
delete(api(url, user))
|
|
end
|
|
|
|
include_examples 'wiki API 204 No Content'
|
|
end
|
|
end
|
|
|
|
context 'when wiki is available for everyone with access' do
|
|
let(:project) { create(:project, :wiki_repo) }
|
|
|
|
context 'when user is guest' do
|
|
before do
|
|
delete(api(url))
|
|
end
|
|
|
|
include_examples 'wiki API 404 Project Not Found'
|
|
end
|
|
|
|
context 'when user is developer' do
|
|
before do
|
|
project.add_developer(user)
|
|
|
|
delete(api(url, user))
|
|
end
|
|
|
|
include_examples 'wiki API 403 Forbidden'
|
|
end
|
|
|
|
context 'when user is maintainer' do
|
|
before do
|
|
project.add_maintainer(user)
|
|
|
|
delete(api(url, user))
|
|
end
|
|
|
|
include_examples 'wiki API 204 No Content'
|
|
|
|
context 'when page is not existing' do
|
|
let(:url) { "/projects/#{project.id}/wikis/unknown" }
|
|
|
|
include_examples 'wiki API 404 Wiki Page Not Found'
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'when wiki belongs to a group project' do
|
|
let(:project) { create(:project, :wiki_repo, namespace: group) }
|
|
|
|
before do
|
|
delete(api(url, user))
|
|
end
|
|
|
|
include_examples 'wiki API 204 No Content'
|
|
end
|
|
end
|
|
|
|
describe 'POST /projects/:id/wikis/attachments' do
|
|
let(:payload) { { file: fixture_file_upload('spec/fixtures/dk.png') } }
|
|
let(:url) { "/projects/#{project.id}/wikis/attachments" }
|
|
let(:file_path) { "#{Wikis::CreateAttachmentService::ATTACHMENT_PATH}/fixed_hex/dk.png" }
|
|
let(:result_hash) do
|
|
{
|
|
file_name: 'dk.png',
|
|
file_path: file_path,
|
|
branch: 'master',
|
|
link: {
|
|
url: file_path,
|
|
markdown: "![dk](#{file_path})"
|
|
}
|
|
}
|
|
end
|
|
|
|
context 'when wiki is disabled' do
|
|
let(:project) { create(:project, :wiki_disabled, :wiki_repo) }
|
|
|
|
context 'when user is guest' do
|
|
before do
|
|
post(api(url), params: payload)
|
|
end
|
|
|
|
include_examples 'wiki API 404 Project Not Found'
|
|
end
|
|
|
|
context 'when user is developer' do
|
|
before do
|
|
project.add_developer(user)
|
|
post(api(url, user), params: payload)
|
|
end
|
|
|
|
include_examples 'wiki API 403 Forbidden'
|
|
end
|
|
|
|
context 'when user is maintainer' do
|
|
before do
|
|
project.add_maintainer(user)
|
|
post(api(url, user), params: payload)
|
|
end
|
|
|
|
include_examples 'wiki API 403 Forbidden'
|
|
end
|
|
end
|
|
|
|
context 'when wiki is available only for team members' do
|
|
let(:project) { create(:project, :wiki_private, :wiki_repo) }
|
|
|
|
context 'when user is guest' do
|
|
before do
|
|
post(api(url), params: payload)
|
|
end
|
|
|
|
include_examples 'wiki API 404 Project Not Found'
|
|
end
|
|
|
|
context 'when user is developer' do
|
|
before do
|
|
project.add_developer(user)
|
|
end
|
|
|
|
include_examples 'wiki API uploads wiki attachment'
|
|
end
|
|
|
|
context 'when user is maintainer' do
|
|
before do
|
|
project.add_maintainer(user)
|
|
end
|
|
|
|
include_examples 'wiki API uploads wiki attachment'
|
|
end
|
|
end
|
|
|
|
context 'when wiki is available for everyone with access' do
|
|
let(:project) { create(:project, :wiki_repo) }
|
|
|
|
context 'when user is guest' do
|
|
before do
|
|
post(api(url), params: payload)
|
|
end
|
|
|
|
include_examples 'wiki API 404 Project Not Found'
|
|
end
|
|
|
|
context 'when user is developer' do
|
|
before do
|
|
project.add_developer(user)
|
|
end
|
|
|
|
include_examples 'wiki API uploads wiki attachment'
|
|
end
|
|
|
|
context 'when user is maintainer' do
|
|
before do
|
|
project.add_maintainer(user)
|
|
end
|
|
|
|
include_examples 'wiki API uploads wiki attachment'
|
|
end
|
|
end
|
|
end
|
|
end
|