#-- 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 'Wysiwyg tables', type: :feature, js: true do let(:user) { FactoryBot.create :admin } let(:project) { FactoryBot.create(:project, enabled_module_names: %w[wiki]) } let(:editor) { ::Components::WysiwygEditor.new } before do login_as(user) end describe 'in wikis' do describe 'creating a wiki page' do before do visit project_wiki_path(project, :wiki) end it 'can add tables without headers' do editor.in_editor do |container, editable| # strangely, we need visible: :all here container.find('.ck-button', visible: :all, text: 'Insert table').click # 2x2 container.find('.ck-insert-table-dropdown-grid-box:nth-of-type(12)').click # Edit table tds = editable.all('.table.ck-widget td') values = %w(h1 h&2 c1 c&2) expect(tds.length).to eq(4) tds.each_with_index do |td, i| td.click td.send_keys values[i] sleep 0.5 end end # Save wiki page click_on 'Save' expect(page).to have_selector('.flash.notice') within('#content') do expect(page).to have_selector('table td', text: 'h1') expect(page).to have_selector('table td', text: 'h&2') expect(page).to have_selector('table td', text: 'c1') expect(page).to have_selector('table td', text: 'c&2') end end it 'can add tables with headers' do editor.in_editor do |container, editable| # strangely, we need visible: :all here editor.click_toolbar_button 'Insert table' # 2x2 container.find('.ck-insert-table-dropdown-grid-box:nth-of-type(12)').click # Edit table tds = editable.all('.table.ck-widget td') values = %w(h1 h2 a) expect(tds.length).to eq(4) tds.take(3).each_with_index do |td, i| td.click td.send_keys values[i] sleep 0.5 end # Make first row th tds.first.click # Click row toolbar editor.click_hover_toolbar_button 'RowRow' # Enable header row header_button = find('.ck-switchbutton', text: 'Header row') header_button.find('.ck-button__toggle').click # Table should now have header expect(editable).to have_selector('th', count: 2) expect(editable).to have_selector('td', count: 2) expect(editable).to have_selector('th', text: 'h1') expect(editable).to have_selector('th', text: 'h2') expect(editable).to have_selector('td', text: 'a') end # Save wiki page click_on 'Save' expect(page).to have_selector('.flash.notice') within('#content') do expect(page).to have_selector('table th', text: 'h1') expect(page).to have_selector('table th', text: 'h2') expect(page).to have_selector('table td', count: 2) expect(page).to have_selector('td', text: 'a') end # Edit again click_on 'Edit' editor.in_editor do |container, editable| # Table should still have header expect(editable).to have_selector('th', count: 2) expect(editable).to have_selector('td', count: 2) expect(editable).to have_selector('th', text: 'h1') expect(editable).to have_selector('th', text: 'h2') expect(editable).to have_selector('td', text: 'a') end end end describe 'editing a wiki page with tables' do let(:wiki_page) { page = FactoryBot.build :wiki_page_with_content, title: 'Wiki page with titles' page.content.text = <<~EOS ## This is markdown!
A | B |
---|---|
c1 | c2 |
c3 | c4 |