Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github_controller_spec.rb « import « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8d57c2895defb1bd60b174ca32675ac92064b4a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Import::GithubController, feature_category: :importers do
  describe 'GET details' do
    subject { get details_import_github_path }

    let_it_be(:user) { create(:user) }

    before do
      stub_application_setting(import_sources: ['github'])

      login_as(user)
    end

    context 'with feature enabled' do
      before do
        stub_feature_flags(import_details_page: true)

        subject
      end

      it 'responds with a 200 and shows the template' do
        expect(response).to have_gitlab_http_status(:ok)
        expect(response).to render_template(:details)
      end
    end

    context 'with feature disabled' do
      before do
        stub_feature_flags(import_details_page: false)

        subject
      end

      it 'responds with a 404' do
        expect(response).to have_gitlab_http_status(:not_found)
      end
    end
  end
end