summaryrefslogtreecommitdiff
path: root/spec/support/helpers/feature_flag_helpers.rb
blob: 93cd915879b76683c992432c06116305fdf6f8dd (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# frozen_string_literal: true

module FeatureFlagHelpers
  def create_flag(project, name, active = true, description: nil, version: Operations::FeatureFlag.versions['legacy_flag'])
    create(:operations_feature_flag, name: name, active: active, version: version,
                                     description: description, project: project)
  end

  def create_scope(feature_flag, environment_scope, active = true, strategies = [{ name: "default", parameters: {} }])
    create(:operations_feature_flag_scope,
      feature_flag: feature_flag,
      environment_scope: environment_scope,
      active: active,
      strategies: strategies)
  end

  def within_feature_flag_row(index)
    within ".gl-responsive-table-row:nth-child(#{index + 1})" do
      yield
    end
  end

  def within_feature_flag_scopes
    within '.js-feature-flag-environments' do
      yield
    end
  end

  def within_scope_row(index)
    within ".gl-responsive-table-row:nth-child(#{index + 1})" do
      yield
    end
  end

  def within_strategy_row(index)
    within ".feature-flags-form > fieldset > div[data-testid='feature-flag-strategies'] > div:nth-child(#{index})" do
      yield
    end
  end

  def within_environment_spec
    within '.table-section:nth-child(1)' do
      yield
    end
  end

  def within_status
    within '.table-section:nth-child(2)' do
      yield
    end
  end

  def within_delete
    within '.table-section:nth-child(4)' do
      yield
    end
  end

  def edit_feature_flag_button
    find('.js-feature-flag-edit-button')
  end

  def delete_strategy_button
    find("button[data-testid='delete-strategy-button']")
  end

  def add_linked_issue_button
    find('.js-issue-count-badge-add-button')
  end

  def remove_linked_issue_button
    find('.js-issue-item-remove-button')
  end

  def status_toggle_button
    find('[data-testid="feature-flag-status-toggle"] button')
  end

  def expect_status_toggle_button_to_be_checked
    expect(page).to have_css('[data-testid="feature-flag-status-toggle"] button.is-checked')
  end

  def expect_status_toggle_button_not_to_be_checked
    expect(page).to have_css('[data-testid="feature-flag-status-toggle"] button:not(.is-checked)')
  end

  def expect_status_toggle_button_to_be_disabled
    expect(page).to have_css('[data-testid="feature-flag-status-toggle"] button.is-disabled')
  end

  def expect_user_to_see_feature_flags_index_page
    expect(page).to have_text('Feature Flags')
    expect(page).to have_text('Lists')
  end
end