summaryrefslogtreecommitdiff
path: root/spec/support/helpers/terms_helper.rb
blob: 84a18fb57ad4efcbc5597012c669e17588749254 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module TermsHelper
  def enforce_terms
    stub_env('IN_MEMORY_APPLICATION_SETTINGS', 'false')
    settings = Gitlab::CurrentSettings.current_application_settings
    ApplicationSettings::UpdateService.new(
      settings, nil, terms: 'These are the terms', enforce_terms: true
    ).execute
  end

  def accept_terms(user)
    terms = Gitlab::CurrentSettings.current_application_settings.latest_terms
    Users::RespondToTermsService.new(user, terms).execute(accepted: true)
  end

  def expect_to_be_on_terms_page
    expect(current_path).to eq terms_path
    expect(page).to have_content(_('Please accept the Terms of Service before continuing.'))
  end
end