debian-mirror-gitlab/spec/features/projects/show/user_manages_notifications_spec.rb

57 lines
1.3 KiB
Ruby
Raw Normal View History

2018-10-15 14:42:47 +05:30
require 'spec_helper'
describe 'Projects > Show > User manages notifications', :js do
let(:project) { create(:project, :public, :repository) }
before do
sign_in(project.owner)
visit project_path(project)
end
2019-02-15 15:39:39 +05:30
def click_notifications_button
2019-01-03 12:48:30 +05:30
first('.notifications-btn').click
2019-02-15 15:39:39 +05:30
end
it 'changes the notification setting' do
click_notifications_button
2018-10-15 14:42:47 +05:30
click_link 'On mention'
2019-02-15 15:39:39 +05:30
wait_for_requests
click_notifications_button
expect(find('.update-notification.is-active')).to have_content('On mention')
2018-10-15 14:42:47 +05:30
end
2018-11-18 11:00:15 +05:30
context 'custom notification settings' do
let(:email_events) do
[
:new_note,
:new_issue,
:reopen_issue,
:close_issue,
:reassign_issue,
:issue_due,
:new_merge_request,
:push_to_merge_request,
:reopen_merge_request,
:close_merge_request,
:reassign_merge_request,
:merge_merge_request,
:failed_pipeline,
:success_pipeline
]
end
it 'shows notification settings checkbox' do
2019-02-15 15:39:39 +05:30
click_notifications_button
2018-11-18 11:00:15 +05:30
page.find('a[data-notification-level="custom"]').click
page.within('.custom-notifications-form') do
email_events.each do |event_name|
expect(page).to have_selector("input[name='notification_setting[#{event_name}]']")
end
end
end
end
2018-10-15 14:42:47 +05:30
end