summaryrefslogtreecommitdiff
path: root/spec/requests/import/github_controller_spec.rb
blob: 5ac97e3d330e1235768bf84749a2221dfb8d2786 (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
# 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
      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