summaryrefslogtreecommitdiff
path: root/spec/support/helpers/terms_helper.rb
blob: a61bae18f9aa8eeb22c3d6920edfe29010bebf9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

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