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.
117 lines
3.7 KiB
117 lines
3.7 KiB
#-- copyright
|
|
# OpenProject is an open source project management software.
|
|
# Copyright (C) 2012-2020 the OpenProject GmbH
|
|
#
|
|
# 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 'wiki pages', type: :feature, js: true do
|
|
let(:project) do
|
|
FactoryBot.create(:project, enabled_module_names: [:news])
|
|
end
|
|
let(:user) do
|
|
FactoryBot.create :user,
|
|
member_in_project: project,
|
|
member_through_role: role
|
|
end
|
|
let(:role) do
|
|
FactoryBot.create(:role,
|
|
permissions: %i[view_wiki_pages
|
|
edit_wiki_pages
|
|
view_wiki_edits
|
|
select_project_modules
|
|
edit_project])
|
|
end
|
|
let(:content_first_version) do
|
|
'The new content, first version'
|
|
end
|
|
let(:content_second_version) do
|
|
'The new content, second version'
|
|
end
|
|
|
|
before do
|
|
login_as user
|
|
end
|
|
|
|
scenario 'adding, editing and history' do
|
|
visit settings_modules_project_path(project)
|
|
|
|
expect(page).to have_no_selector('.menu-sidebar .main-item-wrapper', text: 'Wiki')
|
|
|
|
within '#content' do
|
|
check 'Wiki'
|
|
|
|
click_button 'Save'
|
|
end
|
|
|
|
expect(page).to have_selector('#menu-sidebar .main-item-wrapper', text: 'Wiki', visible: false)
|
|
|
|
# creating by accessing the page
|
|
visit project_wiki_path(project, 'new page')
|
|
|
|
find('.ck-content').base.send_keys(content_first_version)
|
|
click_button 'Save'
|
|
|
|
expect(page).to have_selector('.title-container', text: 'New page')
|
|
expect(page).to have_selector('.wiki-content', text: content_first_version)
|
|
|
|
within '.toolbar-items' do
|
|
click_on "Edit"
|
|
end
|
|
|
|
find('.ck-content').set(content_second_version)
|
|
|
|
click_button 'Save'
|
|
expect(page).to have_selector('.wiki-content', text: content_second_version)
|
|
|
|
within '.toolbar-items' do
|
|
click_on 'More'
|
|
click_on 'History'
|
|
end
|
|
|
|
click_on 'View differences'
|
|
|
|
within '.text-diff' do
|
|
expect(page).to have_selector('ins.diffmod', text: 'second')
|
|
expect(page).to have_selector('del.diffmod', text: 'first')
|
|
end
|
|
|
|
# Go back to history
|
|
find('.button', text: 'History').click
|
|
|
|
# Click on first version
|
|
# to determine text (Regression test #31531)
|
|
find('td.id a', text: 1).click
|
|
|
|
expect(page).to have_selector('.wiki-version--details', text: 'Version 1/2')
|
|
expect(page).to have_selector('.wiki-content', text: content_first_version)
|
|
|
|
find('.button', text: 'Next').click
|
|
|
|
expect(page).to have_selector('.wiki-version--details', text: 'Version 2/2')
|
|
expect(page).to have_selector('.wiki-content', text: content_second_version)
|
|
end
|
|
end
|
|
|