debian-mirror-gitlab/spec/features/users/terms_spec.rb

155 lines
3.9 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2018-10-15 14:42:47 +05:30
require 'spec_helper'
2021-12-11 22:18:48 +05:30
RSpec.describe 'Users > Terms', :js do
2018-10-15 14:42:47 +05:30
include TermsHelper
let!(:term) { create(:term, terms: 'By accepting, you promise to be nice!') }
before do
stub_env('IN_MEMORY_APPLICATION_SETTINGS', 'false')
end
it 'shows the terms' do
visit terms_path
expect(page).to have_content('By accepting, you promise to be nice!')
end
2018-11-08 19:23:39 +05:30
it 'does not show buttons to accept, decline or sign out', :aggregate_failures do
visit terms_path
expect(page).not_to have_css('.footer-block')
expect(page).not_to have_content('Accept terms')
expect(page).not_to have_content('Decline and sign out')
expect(page).not_to have_content('Continue')
end
2018-10-15 14:42:47 +05:30
2021-01-03 14:25:43 +05:30
context 'when user is a project bot' do
let(:project_bot) { create(:user, :project_bot) }
before do
enforce_terms
end
it 'auto accepts the terms' do
visit terms_path
expect(page).not_to have_content('Accept terms')
expect(project_bot.terms_accepted?).to be(true)
end
end
2018-11-08 19:23:39 +05:30
context 'when signed in' do
let(:user) { create(:user) }
2018-10-15 14:42:47 +05:30
2018-11-08 19:23:39 +05:30
before do
sign_in(user)
2018-10-15 14:42:47 +05:30
end
2018-11-08 19:23:39 +05:30
context 'declining the terms' do
it 'returns the user to the app' do
visit terms_path
2018-10-15 14:42:47 +05:30
2018-11-08 19:23:39 +05:30
click_button 'Decline and sign out'
2018-10-15 14:42:47 +05:30
2018-11-08 19:23:39 +05:30
expect(page).not_to have_content(term.terms)
expect(user.reload.terms_accepted?).to be(false)
end
2018-10-15 14:42:47 +05:30
end
2018-11-08 19:23:39 +05:30
context 'accepting the terms' do
it 'returns the user to the app' do
visit terms_path
2018-10-15 14:42:47 +05:30
2018-11-08 19:23:39 +05:30
click_button 'Accept terms'
expect(page).not_to have_content(term.terms)
expect(user.reload.terms_accepted?).to be(true)
end
2018-10-15 14:42:47 +05:30
end
2018-11-08 19:23:39 +05:30
context 'when the user has already accepted the terms' do
before do
accept_terms(user)
end
it 'allows the user to continue to the app' do
visit terms_path
expect(page).to have_content "You have already accepted the Terms of Service as #{user.to_reference}"
2018-10-15 14:42:47 +05:30
2018-11-08 19:23:39 +05:30
click_link 'Continue'
2018-10-15 14:42:47 +05:30
2018-11-08 19:23:39 +05:30
expect(current_path).to eq(root_path)
2018-10-15 14:42:47 +05:30
end
2018-11-08 19:23:39 +05:30
end
context 'terms were enforced while session is active', :js do
let(:project) { create(:project) }
2018-10-15 14:42:47 +05:30
2018-11-08 19:23:39 +05:30
before do
project.add_developer(user)
end
2018-10-15 14:42:47 +05:30
2019-03-02 22:35:43 +05:30
it 'redirects to terms and back to where the user was going' do
2018-11-08 19:23:39 +05:30
visit project_path(project)
2018-10-15 14:42:47 +05:30
2018-11-08 19:23:39 +05:30
enforce_terms
2018-10-15 14:42:47 +05:30
2019-09-30 21:07:59 +05:30
# Application settings are cached for a minute
Timecop.travel 2.minutes do
within('.nav-sidebar') do
click_link 'Issues'
end
2018-10-15 14:42:47 +05:30
2019-09-30 21:07:59 +05:30
expect_to_be_on_terms_page
2018-10-15 14:42:47 +05:30
2019-09-30 21:07:59 +05:30
click_button('Accept terms')
2018-10-15 14:42:47 +05:30
2019-09-30 21:07:59 +05:30
expect(current_path).to eq(project_issues_path(project))
end
2018-11-08 19:23:39 +05:30
end
2018-10-15 14:42:47 +05:30
2019-12-04 20:38:33 +05:30
# Disabled until https://gitlab.com/gitlab-org/gitlab-foss/issues/37162 is solved properly
2018-11-08 19:23:39 +05:30
xit 'redirects back to the page the user was trying to save' do
visit new_project_issue_path(project)
2018-10-15 14:42:47 +05:30
2018-11-08 19:23:39 +05:30
fill_in :issue_title, with: 'Hello world, a new issue'
fill_in :issue_description, with: "We don't want to lose what the user typed"
2018-10-15 14:42:47 +05:30
2018-11-08 19:23:39 +05:30
enforce_terms
2018-10-15 14:42:47 +05:30
2021-04-29 21:17:54 +05:30
click_button 'Create issue'
2018-11-08 19:23:39 +05:30
expect(current_path).to eq(terms_path)
click_button('Accept terms')
expect(current_path).to eq(new_project_issue_path(project))
expect(find_field('issue_title').value).to eq('Hello world, a new issue')
expect(find_field('issue_description').value).to eq("We don't want to lose what the user typed")
end
2018-10-15 14:42:47 +05:30
end
2018-11-08 19:23:39 +05:30
context 'when the terms are enforced' do
before do
enforce_terms
end
context 'signing out', :js do
it 'allows the user to sign out without a response' do
visit terms_path
2018-10-15 14:42:47 +05:30
2018-11-08 19:23:39 +05:30
find('.header-user-dropdown-toggle').click
click_link('Sign out')
2018-10-15 14:42:47 +05:30
2018-11-08 19:23:39 +05:30
expect(page).to have_content('Sign in')
expect(page).to have_content('Register')
end
2018-10-15 14:42:47 +05:30
end
end
end
end