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

49 lines
1.3 KiB
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
require 'spec_helper'
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 }
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)
expect(controller).to receive(:go_to_provider_for_permissions)
2016-08-24 12:49:21 +05:30
get :new
end
end
2015-04-26 12:48:37 +05:30
describe "GET callback" do
it "updates access token" do
token = "asdasd12345"
2018-03-17 18:26:18 +05:30
allow_any_instance_of(Gitlab::LegacyGithubImport::Client)
2017-09-10 17:25:29 +05:30
.to receive(:get_token).and_return(token)
2018-03-17 18:26:18 +05:30
allow_any_instance_of(Gitlab::LegacyGithubImport::Client)
2017-09-10 17:25:29 +05:30
.to receive(:github_options).and_return({})
2015-09-11 14:41:01 +05:30
stub_omniauth_provider('github')
2015-04-26 12:48:37 +05:30
get :callback
2015-09-25 12:07:36 +05:30
expect(session[:github_access_token]).to eq(token)
2015-04-26 12:48:37 +05:30
expect(controller).to redirect_to(status_import_github_url)
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
2017-08-17 22:00:37 +05:30
it_behaves_like 'a GitHub-ish import controller: GET status'
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'
2015-04-26 12:48:37 +05:30
end
end