#-- 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 'wiki child pages', type: :feature, js: true do let(:project) do FactoryBot.create(:project) 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]) end let(:parent_page) do FactoryBot.create(:wiki_page_with_content, wiki: project.wiki) end let(:child_page_name) { 'The child page !@#{$%^&*()_},./<>?;\':' } before do login_as user end scenario 'adding a childpage' do visit project_wiki_path(project, parent_page.title) click_on 'Wiki page' fill_in 'content_page_title', with: child_page_name find('.ck-content').set('The child page\'s content') click_button 'Save' # hierarchy displayed in the breadcrumb expect(page).to have_selector('#breadcrumb .breadcrumb', text: "#{parent_page.title}") # hierarchy displayed in the sidebar expect(page).to have_selector('.pages-hierarchy', text: "#{parent_page.title}\n#{child_page_name}") # on toc page visit index_project_wiki_index_path(project) expect(page).to have_content(child_page_name) end end