debian-mirror-gitlab/spec/controllers/import/github_controller_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

390 lines
13 KiB
Ruby
Raw Normal View History

2019-07-31 22:56:46 +05:30
# frozen_string_literal: true
2015-04-26 12:48:37 +05:30
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec.describe Import::GithubController do
2015-09-11 14:41:01 +05:30
include ImportSpecHelper
2017-08-17 22:00:37 +05:30
let(:provider) { :github }
2022-01-12 12:59:36 +05:30
let(:new_import_url) { public_send("new_import_#{provider}_url") }
2015-09-25 12:07:36 +05:30
2017-08-17 22:00:37 +05:30
include_context 'a GitHub-ish import controller'
2015-04-26 12:48:37 +05:30
2016-08-24 12:49:21 +05:30
describe "GET new" do
2017-08-17 22:00:37 +05:30
it_behaves_like 'a GitHub-ish import controller: GET new'
2016-08-24 12:49:21 +05:30
2017-08-17 22:00:37 +05:30
it "redirects to GitHub for an access token if logged in with GitHub" do
allow(controller).to receive(:logged_in_with_provider?).and_return(true)
2019-02-02 18:00:53 +05:30
expect(controller).to receive(:go_to_provider_for_permissions).and_call_original
2020-10-24 23:57:45 +05:30
allow(controller).to receive(:authorize_url).and_call_original
2016-08-24 12:49:21 +05:30
get :new
2019-02-02 18:00:53 +05:30
2020-03-13 15:44:24 +05:30
expect(response).to have_gitlab_http_status(:found)
2016-08-24 12:49:21 +05:30
end
2019-02-15 15:39:39 +05:30
it "prompts for an access token if GitHub not configured" do
allow(controller).to receive(:github_import_configured?).and_return(false)
expect(controller).not_to receive(:go_to_provider_for_permissions)
get :new
2020-03-13 15:44:24 +05:30
expect(response).to have_gitlab_http_status(:ok)
2019-02-15 15:39:39 +05:30
end
2019-10-12 21:52:04 +05:30
context 'when importing a CI/CD project' do
it 'always prompts for an access token' do
allow(controller).to receive(:github_import_configured?).and_return(true)
get :new, params: { ci_cd_only: true }
expect(response).to render_template(:new)
end
end
2023-03-04 22:38:38 +05:30
it 'gets authorization url using oauth client' do
allow(controller).to receive(:logged_in_with_provider?).and_return(true)
expect(controller).to receive(:go_to_provider_for_permissions).and_call_original
expect_next_instance_of(OAuth2::Client) do |client|
expect(client.auth_code).to receive(:authorize_url).and_call_original
end
get :new
end
2016-08-24 12:49:21 +05:30
end
2015-04-26 12:48:37 +05:30
describe "GET callback" do
2022-01-12 12:59:36 +05:30
context "when auth state param is missing from session" do
it "reports an error" do
get :callback
2015-04-26 12:48:37 +05:30
2022-01-12 12:59:36 +05:30
expect(controller).to redirect_to(new_import_url)
expect(flash[:alert]).to eq('Access denied to your GitHub account.')
end
end
context "when auth state param is present in session" do
let(:valid_auth_state) { "secret-state" }
2022-11-25 23:54:43 +05:30
context 'when remove_legacy_github_client feature is disabled' do
before do
stub_feature_flags(remove_legacy_github_client: false)
allow_next_instance_of(Gitlab::LegacyGithubImport::Client) do |client|
allow(client).to receive(:get_token).and_return(token)
end
session[:github_auth_state_key] = valid_auth_state
end
it "updates access token if state param is valid" do
token = "asdasd12345"
2015-04-26 12:48:37 +05:30
2022-11-25 23:54:43 +05:30
get :callback, params: { state: valid_auth_state }
2022-01-12 12:59:36 +05:30
2022-11-25 23:54:43 +05:30
expect(session[:github_access_token]).to eq(token)
expect(controller).to redirect_to(status_import_github_url)
end
it "includes namespace_id from query params if it is present" do
namespace_id = 1
get :callback, params: { state: valid_auth_state, namespace_id: namespace_id }
2022-01-12 12:59:36 +05:30
2022-11-25 23:54:43 +05:30
expect(controller).to redirect_to(status_import_github_url(namespace_id: namespace_id))
end
2022-01-12 12:59:36 +05:30
end
it "reports an error if state param is invalid" do
get :callback, params: { state: "different-state" }
expect(controller).to redirect_to(new_import_url)
expect(flash[:alert]).to eq('Access denied to your GitHub account.')
end
2022-06-21 17:19:12 +05:30
2022-11-25 23:54:43 +05:30
context 'when remove_legacy_github_client feature is enabled' do
before do
stub_feature_flags(remove_legacy_github_client: true)
allow_next_instance_of(OAuth2::Client) do |client|
allow(client).to receive_message_chain(:auth_code, :get_token, :token).and_return(token)
end
session[:github_auth_state_key] = valid_auth_state
end
it "updates access token if state param is valid" do
token = "asdasd12345"
2022-06-21 17:19:12 +05:30
2022-11-25 23:54:43 +05:30
get :callback, params: { state: valid_auth_state }
expect(session[:github_access_token]).to eq(token)
expect(controller).to redirect_to(status_import_github_url)
end
2022-06-21 17:19:12 +05:30
2022-11-25 23:54:43 +05:30
it "includes namespace_id from query params if it is present" do
namespace_id = 1
get :callback, params: { state: valid_auth_state, namespace_id: namespace_id }
expect(controller).to redirect_to(status_import_github_url(namespace_id: namespace_id))
end
2022-06-21 17:19:12 +05:30
end
2015-04-26 12:48:37 +05:30
end
end
2016-08-24 12:49:21 +05:30
describe "POST personal_access_token" do
2017-08-17 22:00:37 +05:30
it_behaves_like 'a GitHub-ish import controller: POST personal_access_token'
2016-08-24 12:49:21 +05:30
end
2015-04-26 12:48:37 +05:30
describe "GET status" do
2023-03-04 22:38:38 +05:30
shared_examples 'calls repos through Clients::Proxy with expected args' do
it 'calls repos list from provider with expected args' do
expect_next_instance_of(Gitlab::GithubImport::Clients::Proxy) do |client|
expect(client).to receive(:repos)
.with(expected_filter, expected_pagination_options)
.and_return({ repos: [], page_info: {} })
end
get :status, params: params, format: :json
expect(response).to have_gitlab_http_status(:ok)
expect(json_response['imported_projects'].size).to eq 0
expect(json_response['provider_repos'].size).to eq 0
expect(json_response['incompatible_repos'].size).to eq 0
expect(json_response['page_info']).to eq({})
end
end
let(:provider_token) { 'asdasd12345' }
let(:client_auth_success) { true }
let(:client_stub) { instance_double(Gitlab::GithubImport::Client, user: { login: 'user' }) }
let(:expected_pagination_options) { pagination_params.merge(first: 25, page: 1, per_page: 25) }
let(:expected_filter) { nil }
let(:params) { nil }
let(:pagination_params) { { before: nil, after: nil } }
let(:provider_repos) { [] }
before do
allow_next_instance_of(Gitlab::GithubImport::Clients::Proxy) do |proxy|
if client_auth_success
allow(proxy).to receive(:repos).and_return({ repos: provider_repos })
allow(proxy).to receive(:client).and_return(client_stub)
else
allow(proxy).to receive(:repos).and_raise(Octokit::Unauthorized)
end
end
session[:"#{provider}_access_token"] = provider_token
end
context 'with OAuth' do
let(:provider_token) { nil }
2020-10-24 23:57:45 +05:30
before do
allow(controller).to receive(:logged_in_with_provider?).and_return(true)
end
context 'when OAuth config is missing' do
before do
allow(controller).to receive(:oauth_config).and_return(nil)
end
it 'returns missing config error' do
expect(controller).to receive(:go_to_provider_for_permissions).and_call_original
get :status
expect(session[:"#{provider}_access_token"]).to be_nil
expect(controller).to redirect_to(new_import_url)
expect(flash[:alert]).to eq('Missing OAuth configuration for GitHub.')
end
end
end
2023-03-04 22:38:38 +05:30
context 'with invalid access token' do
let(:client_auth_success) { false }
2020-10-24 23:57:45 +05:30
2023-03-04 22:38:38 +05:30
it "handles an invalid token" do
get :status, format: :json
2020-10-24 23:57:45 +05:30
2023-03-04 22:38:38 +05:30
expect(session[:"#{provider}_access_token"]).to be_nil
expect(controller).to redirect_to(new_import_url)
expect(flash[:alert]).to eq("Access denied to your #{Gitlab::ImportSources.title(provider.to_s)} account.")
2020-10-24 23:57:45 +05:30
end
2023-03-04 22:38:38 +05:30
end
2020-10-24 23:57:45 +05:30
2023-03-04 22:38:38 +05:30
context 'when user has few different repos' do
let(:repo_struct) { Struct.new(:id, :login, :full_name, :name, :owner, keyword_init: true) }
let(:provider_repos) do
[repo_struct.new(login: 'vim', full_name: 'asd/vim', name: 'vim', owner: { login: 'owner' })]
end
2020-10-24 23:57:45 +05:30
2023-03-04 22:38:38 +05:30
let!(:imported_project) do
create(
:project,
import_type: provider, namespace: user.namespace,
import_status: :finished, import_source: 'example/repo'
)
2020-10-24 23:57:45 +05:30
end
2022-01-12 12:59:36 +05:30
2023-03-04 22:38:38 +05:30
it 'responds with expected high-level structure' do
get :status, format: :json
2022-01-12 12:59:36 +05:30
2023-03-04 22:38:38 +05:30
expect(response).to have_gitlab_http_status(:ok)
expect(json_response.dig("imported_projects", 0, "id")).to eq(imported_project.id)
expect(json_response.dig("provider_repos", 0, "id")).to eq(provider_repos[0].id)
2022-01-12 12:59:36 +05:30
end
2020-10-24 23:57:45 +05:30
end
2023-03-04 22:38:38 +05:30
it_behaves_like 'calls repos through Clients::Proxy with expected args'
context 'with namespace_id param' do
let_it_be(:user) { create(:user) }
2020-10-24 23:57:45 +05:30
before do
2023-03-04 22:38:38 +05:30
sign_in(user)
2020-10-24 23:57:45 +05:30
end
2023-03-04 22:38:38 +05:30
after do
sign_out(user)
2020-10-24 23:57:45 +05:30
end
2023-03-04 22:38:38 +05:30
context 'when user is allowed to create projects in this namespace' do
let(:namespace) { create(:namespace, owner: user) }
2020-10-24 23:57:45 +05:30
2023-03-04 22:38:38 +05:30
it 'provides namespace to the template' do
get :status, params: { namespace_id: namespace.id }, format: :html
2020-10-24 23:57:45 +05:30
2023-03-04 22:38:38 +05:30
expect(response).to have_gitlab_http_status :ok
expect(assigns(:namespace)).to eq(namespace)
2022-01-12 12:59:36 +05:30
end
end
2023-03-04 22:38:38 +05:30
context 'when user is not allowed to create projects in this namespace' do
let(:namespace) { create(:namespace) }
2020-10-24 23:57:45 +05:30
2023-03-04 22:38:38 +05:30
it 'renders 404' do
get :status, params: { namespace_id: namespace.id }, format: :html
2020-10-24 23:57:45 +05:30
2023-03-04 22:38:38 +05:30
expect(response).to have_gitlab_http_status :not_found
2021-02-22 17:27:13 +05:30
end
2020-10-24 23:57:45 +05:30
end
2023-03-04 22:38:38 +05:30
end
2021-01-29 00:20:46 +05:30
2023-03-04 22:38:38 +05:30
context 'pagination' do
context 'when cursor is specified' do
let(:pagination_params) { { before: nil, after: 'CURSOR' } }
let(:params) { pagination_params }
2021-01-29 00:20:46 +05:30
2023-03-04 22:38:38 +05:30
it_behaves_like 'calls repos through Clients::Proxy with expected args'
end
2021-01-29 00:20:46 +05:30
2023-03-04 22:38:38 +05:30
context 'when page is specified' do
let(:pagination_params) { { before: nil, after: nil, page: 2 } }
let(:expected_pagination_options) { pagination_params.merge(first: 25, page: 2, per_page: 25) }
let(:params) { pagination_params }
2021-01-29 00:20:46 +05:30
2023-03-04 22:38:38 +05:30
it_behaves_like 'calls repos through Clients::Proxy with expected args'
end
end
2021-01-29 00:20:46 +05:30
2023-03-04 22:38:38 +05:30
context 'when filtering' do
let(:filter_param) { FFaker::Lorem.word }
let(:params) { { filter: filter_param } }
let(:expected_filter) { filter_param }
2021-02-22 17:27:13 +05:30
2023-03-04 22:38:38 +05:30
it_behaves_like 'calls repos through Clients::Proxy with expected args'
2021-02-22 17:27:13 +05:30
2023-03-04 22:38:38 +05:30
context 'with pagination' do
context 'when before cursor present' do
let(:pagination_params) { { before: 'before-cursor', after: nil } }
let(:params) { { filter: filter_param }.merge(pagination_params) }
2021-02-22 17:27:13 +05:30
2023-03-04 22:38:38 +05:30
it_behaves_like 'calls repos through Clients::Proxy with expected args'
2021-02-22 17:27:13 +05:30
end
2023-03-04 22:38:38 +05:30
context 'when after cursor present' do
let(:pagination_params) { { before: nil, after: 'after-cursor' } }
let(:params) { { filter: filter_param }.merge(pagination_params) }
2021-01-29 00:20:46 +05:30
2023-03-04 22:38:38 +05:30
it_behaves_like 'calls repos through Clients::Proxy with expected args'
end
end
2021-01-29 00:20:46 +05:30
2023-03-04 22:38:38 +05:30
context 'when user input contains colons and spaces' do
let(:filter_param) { ' test1:test2 test3 : test4 ' }
let(:expected_filter) { 'test1test2test3test4' }
2021-01-29 00:20:46 +05:30
2023-03-04 22:38:38 +05:30
it_behaves_like 'calls repos through Clients::Proxy with expected args'
end
end
2021-01-29 00:20:46 +05:30
2023-03-04 22:38:38 +05:30
context 'when rate limit threshold is exceeded' do
before do
allow(controller).to receive(:status).and_raise(Gitlab::GithubImport::RateLimitError)
end
2021-01-29 00:20:46 +05:30
2023-03-04 22:38:38 +05:30
it 'returns 429' do
get :status, format: :json
2021-01-29 00:20:46 +05:30
2023-03-04 22:38:38 +05:30
expect(response).to have_gitlab_http_status(:too_many_requests)
2021-01-29 00:20:46 +05:30
end
2020-10-24 23:57:45 +05:30
end
2015-04-26 12:48:37 +05:30
end
describe "POST create" do
2017-08-17 22:00:37 +05:30
it_behaves_like 'a GitHub-ish import controller: POST create'
2020-03-13 15:44:24 +05:30
it_behaves_like 'project import rate limiter'
2015-04-26 12:48:37 +05:30
end
2019-07-07 11:18:12 +05:30
describe "GET realtime_changes" do
2022-06-21 17:19:12 +05:30
let(:user) { create(:user) }
before do
assign_session_token(provider)
end
2023-03-04 22:38:38 +05:30
it_behaves_like 'a GitHub-ish import controller: GET realtime_changes'
2022-06-21 17:19:12 +05:30
it 'includes stats in response' do
create(:project, import_type: provider, namespace: user.namespace, import_status: :finished, import_source: 'example/repo')
get :realtime_changes
expect(json_response[0]).to include('stats')
expect(json_response[0]['stats']).to include('fetched')
expect(json_response[0]['stats']).to include('imported')
end
2019-07-07 11:18:12 +05:30
end
2022-11-25 23:54:43 +05:30
describe "POST cancel" do
let_it_be(:project) { create(:project, :import_started, import_type: 'github', import_url: 'https://fake.url') }
context 'when project import was canceled' do
before do
allow(Import::Github::CancelProjectImportService)
.to receive(:new).with(project, user)
.and_return(double(execute: { status: :success, project: project }))
end
it 'returns success' do
post :cancel, params: { project_id: project.id }
expect(response).to have_gitlab_http_status(:ok)
end
end
context 'when project import was not canceled' do
before do
allow(Import::Github::CancelProjectImportService)
.to receive(:new).with(project, user)
.and_return(double(execute: { status: :error, message: 'The import cannot be canceled because it is finished', http_status: :bad_request }))
end
it 'returns error' do
post :cancel, params: { project_id: project.id }
expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response['errors']).to eq('The import cannot be canceled because it is finished')
end
end
end
2015-04-26 12:48:37 +05:30
end