202 lines
6.8 KiB
Ruby
202 lines
6.8 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe IdeController do
|
|
let_it_be(:project) { create(:project, :public) }
|
|
let_it_be(:creator) { project.creator }
|
|
let_it_be(:other_user) { create(:user) }
|
|
|
|
let(:user) { creator }
|
|
let(:branch) { '' }
|
|
|
|
before do
|
|
sign_in(user)
|
|
end
|
|
|
|
it 'increases the views counter' do
|
|
expect(Gitlab::UsageDataCounters::WebIdeCounter).to receive(:increment_views_count)
|
|
|
|
get ide_url
|
|
end
|
|
|
|
describe '#index', :aggregate_failures do
|
|
subject { get route }
|
|
|
|
shared_examples 'user cannot push code' do
|
|
include ProjectForksHelper
|
|
|
|
let(:user) { other_user }
|
|
|
|
context 'when user does not have fork' do
|
|
it 'instantiates fork_info instance var with fork_path and return 200' do
|
|
subject
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
expect(assigns(:project)).to eq project
|
|
expect(assigns(:fork_info)).to eq({ fork_path: controller.helpers.ide_fork_and_edit_path(project, branch, '', with_notice: false) })
|
|
end
|
|
|
|
it 'has nil fork_info if user cannot fork' do
|
|
project.project_feature.update!(forking_access_level: ProjectFeature::DISABLED)
|
|
|
|
subject
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
expect(assigns(:fork_info)).to be_nil
|
|
end
|
|
end
|
|
|
|
context 'when user has fork' do
|
|
let!(:fork) { fork_project(project, user, repository: true, namespace: user.namespace) }
|
|
|
|
it 'instantiates fork_info instance var with ide_path and return 200' do
|
|
subject
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
expect(assigns(:project)).to eq project
|
|
expect(assigns(:fork_info)).to eq({ ide_path: controller.helpers.ide_edit_path(fork, branch, '') })
|
|
end
|
|
end
|
|
end
|
|
|
|
context '/-/ide' do
|
|
let(:route) { '/-/ide' }
|
|
|
|
it 'does not instantiate any instance var and return 200' do
|
|
subject
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
expect(assigns(:project)).to be_nil
|
|
expect(assigns(:branch)).to be_nil
|
|
expect(assigns(:path)).to be_nil
|
|
expect(assigns(:merge_request)).to be_nil
|
|
expect(assigns(:fork_info)).to be_nil
|
|
end
|
|
end
|
|
|
|
context '/-/ide/project' do
|
|
let(:route) { '/-/ide/project' }
|
|
|
|
it 'does not instantiate any instance var and return 200' do
|
|
subject
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
expect(assigns(:project)).to be_nil
|
|
expect(assigns(:branch)).to be_nil
|
|
expect(assigns(:path)).to be_nil
|
|
expect(assigns(:merge_request)).to be_nil
|
|
expect(assigns(:fork_info)).to be_nil
|
|
end
|
|
end
|
|
|
|
context '/-/ide/project/:project' do
|
|
let(:route) { "/-/ide/project/#{project.full_path}" }
|
|
|
|
it 'instantiates project instance var and return 200' do
|
|
subject
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
expect(assigns(:project)).to eq project
|
|
expect(assigns(:branch)).to be_nil
|
|
expect(assigns(:path)).to be_nil
|
|
expect(assigns(:merge_request)).to be_nil
|
|
expect(assigns(:fork_info)).to be_nil
|
|
end
|
|
|
|
it_behaves_like 'user cannot push code'
|
|
|
|
%w(edit blob tree).each do |action|
|
|
context "/-/ide/project/:project/#{action}" do
|
|
let(:route) { "/-/ide/project/#{project.full_path}/#{action}" }
|
|
|
|
it 'instantiates project instance var and return 200' do
|
|
subject
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
expect(assigns(:project)).to eq project
|
|
expect(assigns(:branch)).to be_nil
|
|
expect(assigns(:path)).to be_nil
|
|
expect(assigns(:merge_request)).to be_nil
|
|
expect(assigns(:fork_info)).to be_nil
|
|
end
|
|
|
|
it_behaves_like 'user cannot push code'
|
|
|
|
context "/-/ide/project/:project/#{action}/:branch" do
|
|
let(:branch) { 'master' }
|
|
let(:route) { "/-/ide/project/#{project.full_path}/#{action}/#{branch}" }
|
|
|
|
it 'instantiates project and branch instance vars and return 200' do
|
|
subject
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
expect(assigns(:project)).to eq project
|
|
expect(assigns(:branch)).to eq branch
|
|
expect(assigns(:path)).to be_nil
|
|
expect(assigns(:merge_request)).to be_nil
|
|
expect(assigns(:fork_info)).to be_nil
|
|
end
|
|
|
|
it_behaves_like 'user cannot push code'
|
|
|
|
context "/-/ide/project/:project/#{action}/:branch/-" do
|
|
let(:branch) { 'branch/slash' }
|
|
let(:route) { "/-/ide/project/#{project.full_path}/#{action}/#{branch}/-" }
|
|
|
|
it 'instantiates project and branch instance vars and return 200' do
|
|
subject
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
expect(assigns(:project)).to eq project
|
|
expect(assigns(:branch)).to eq branch
|
|
expect(assigns(:path)).to be_nil
|
|
expect(assigns(:merge_request)).to be_nil
|
|
expect(assigns(:fork_info)).to be_nil
|
|
end
|
|
|
|
it_behaves_like 'user cannot push code'
|
|
|
|
context "/-/ide/project/:project/#{action}/:branch/-/:path" do
|
|
let(:branch) { 'master' }
|
|
let(:route) { "/-/ide/project/#{project.full_path}/#{action}/#{branch}/-/foo/.bar" }
|
|
|
|
it 'instantiates project, branch, and path instance vars and return 200' do
|
|
subject
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
expect(assigns(:project)).to eq project
|
|
expect(assigns(:branch)).to eq branch
|
|
expect(assigns(:path)).to eq 'foo/.bar'
|
|
expect(assigns(:merge_request)).to be_nil
|
|
expect(assigns(:fork_info)).to be_nil
|
|
end
|
|
|
|
it_behaves_like 'user cannot push code'
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
context '/-/ide/project/:project/merge_requests/:merge_request_id' do
|
|
let!(:merge_request) { create(:merge_request, source_project: project, target_project: project) }
|
|
|
|
let(:route) { "/-/ide/project/#{project.full_path}/merge_requests/#{merge_request.id}" }
|
|
|
|
it 'instantiates project and merge_request instance vars and return 200' do
|
|
subject
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
expect(assigns(:project)).to eq project
|
|
expect(assigns(:branch)).to be_nil
|
|
expect(assigns(:path)).to be_nil
|
|
expect(assigns(:merge_request)).to eq merge_request.id.to_s
|
|
expect(assigns(:fork_info)).to be_nil
|
|
end
|
|
|
|
it_behaves_like 'user cannot push code'
|
|
end
|
|
end
|
|
end
|
|
end
|