kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
3.8 KiB
116 lines
3.8 KiB
#-- copyright
|
|
# OpenProject is a project management system.
|
|
# Copyright (C) 2012-2018 the OpenProject Foundation (OPF)
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
|
# Copyright (C) 2006-2017 Jean-Philippe Lang
|
|
# Copyright (C) 2010-2013 the ChiliProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
# See docs/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
require 'spec_helper'
|
|
|
|
describe 'messages', type: :feature, js: true do
|
|
let(:board) { FactoryBot.create(:board) }
|
|
|
|
let(:user) do
|
|
FactoryBot.create :user,
|
|
member_in_project: board.project,
|
|
member_through_role: role
|
|
end
|
|
let(:other_user) do
|
|
FactoryBot.create :user,
|
|
member_in_project: board.project,
|
|
member_through_role: role
|
|
end
|
|
let(:role) { FactoryBot.create(:role, permissions: [:add_messages]) }
|
|
|
|
let(:index_page) { Pages::Messages::Index.new(board.project) }
|
|
|
|
before do
|
|
login_as user
|
|
end
|
|
|
|
scenario 'adding, checking replies, replying' do
|
|
index_page.visit!
|
|
|
|
create_page = index_page.click_create_message
|
|
|
|
create_page.set_subject 'The message is'
|
|
create_page.click_save
|
|
|
|
create_page.expect_notification(type: :error, message: 'Content can\'t be blank')
|
|
create_page.add_text 'There is no message here'
|
|
|
|
show_page = create_page.click_save
|
|
|
|
show_page.expect_current_path
|
|
|
|
show_page.expect_subject('The message is')
|
|
show_page.expect_content('There is no message here')
|
|
|
|
index_page.visit!
|
|
index_page.expect_listed(subject: 'The message is',
|
|
replies: 0)
|
|
|
|
# Replying as other user
|
|
|
|
login_as other_user
|
|
|
|
show_page.visit!
|
|
show_page.expect_no_replies
|
|
reply = show_page.reply 'But, but there should be one'
|
|
|
|
show_page.expect_current_path(reply)
|
|
show_page.expect_num_replies(1)
|
|
|
|
show_page.expect_reply(subject: 'RE: The message is',
|
|
content: 'But, but there should be one')
|
|
|
|
index_page.visit!
|
|
|
|
index_page.expect_listed(subject: 'The message is',
|
|
replies: 1,
|
|
last_message: 'RE: The message is')
|
|
|
|
# Quoting as first user again
|
|
login_as user
|
|
|
|
show_page.visit!
|
|
quote = show_page.quote(quoted_message: reply,
|
|
subject: 'And now to something completely different',
|
|
content: "No, there really isn't\n\n")
|
|
|
|
show_page.expect_current_path(quote)
|
|
|
|
show_page.expect_num_replies(2)
|
|
show_page.expect_reply(reply: quote,
|
|
subject: 'And now to something completely different',
|
|
content: 'No, there really isn\'t')
|
|
|
|
expect(page).to have_selector('blockquote', text: 'But, but there should be one')
|
|
|
|
index_page.visit!
|
|
index_page.expect_listed(subject: 'The message is',
|
|
replies: 2,
|
|
last_message: 'And now to something completely different')
|
|
end
|
|
end
|
|
|