2019-04-15 06:17:05 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-12-15 11:31:14 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Import::GiteaController do
|
|
|
|
include ImportSpecHelper
|
|
|
|
|
|
|
|
let(:provider) { :gitea }
|
|
|
|
let(:host_url) { 'https://try.gitea.io' }
|
|
|
|
|
|
|
|
include_context 'a GitHub-ish import controller'
|
|
|
|
|
|
|
|
def assign_host_url
|
2016-12-16 11:43:34 -05:00
|
|
|
session[:gitea_host_url] = host_url
|
2016-12-15 11:31:14 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET new" do
|
|
|
|
it_behaves_like 'a GitHub-ish import controller: GET new' do
|
|
|
|
before do
|
|
|
|
assign_host_url
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "POST personal_access_token" do
|
|
|
|
it_behaves_like 'a GitHub-ish import controller: POST personal_access_token'
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "GET status" do
|
|
|
|
it_behaves_like 'a GitHub-ish import controller: GET status' do
|
|
|
|
before do
|
|
|
|
assign_host_url
|
|
|
|
end
|
2016-12-15 11:36:53 -05:00
|
|
|
let(:extra_assign_expectations) { { gitea_host_url: host_url } }
|
2016-12-15 11:31:14 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'POST create' do
|
|
|
|
it_behaves_like 'a GitHub-ish import controller: POST create' do
|
|
|
|
before do
|
|
|
|
assign_host_url
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-11-07 11:44:21 -05:00
|
|
|
|
|
|
|
describe "GET realtime_changes" do
|
|
|
|
it_behaves_like 'a GitHub-ish import controller: GET realtime_changes' do
|
|
|
|
before do
|
|
|
|
assign_host_url
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-12-15 11:31:14 -05:00
|
|
|
end
|