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

applications_controller_shared_examples.rb « requests « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 642930dd9825c21b5745f49f3128330e7fe440eb (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
43
44
45
46
47
48
49
50
# frozen_string_literal: true

RSpec.shared_examples 'applications controller - GET #show' do
  describe 'GET #show' do
    it 'renders template' do
      get show_path

      expect(response).to render_template :show
    end

    context 'when application is viewed after being created' do
      before do
        create_application
        stub_feature_flags(hash_oauth_secrets: false)
      end

      it 'sets `@created` instance variable to `true`' do
        get show_path

        expect(assigns[:created]).to eq(true)
      end
    end

    context 'when application is reviewed' do
      before do
        stub_feature_flags(hash_oauth_secrets: false)
      end

      it 'sets `@created` instance variable to `false`' do
        get show_path

        expect(assigns[:created]).to eq(false)
      end
    end
  end
end

RSpec.shared_examples 'applications controller - POST #create' do
  it "sets `#{OauthApplications::CREATED_SESSION_KEY}` session key to `true`" do
    stub_feature_flags(hash_oauth_secrets: false)
    create_application

    expect(session[OauthApplications::CREATED_SESSION_KEY]).to eq(true)
  end
end

def create_application
  create_params = attributes_for(:application, trusted: true, confidential: false, scopes: ['api'])
  post create_path, params: { doorkeeper_application: create_params }
end