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.
77 lines
2.5 KiB
77 lines
2.5 KiB
6 years ago
|
#-- copyright
|
||
|
# OpenProject My Project Page Plugin
|
||
|
#
|
||
|
# Copyright (C) 2011-2014 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.
|
||
|
#
|
||
|
# 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 doc/COPYRIGHT.md for more details.
|
||
|
#++
|
||
|
|
||
|
require 'spec_helper'
|
||
|
require 'features/page_objects/notification'
|
||
|
|
||
|
describe 'Upload attachment to overview page', js: true do
|
||
|
let(:user) do
|
||
|
FactoryBot.create :user,
|
||
|
member_in_project: project,
|
||
|
member_with_permissions: %i[edit_project]
|
||
|
end
|
||
|
let(:project) { FactoryBot.create(:project) }
|
||
|
let(:attachments) { ::Components::Attachments.new }
|
||
|
let(:image_fixture) { Rails.root.join('spec/fixtures/files/image.png') }
|
||
|
let(:editor) { ::Components::WysiwygEditor.new }
|
||
|
|
||
|
before do
|
||
|
login_as(user)
|
||
|
end
|
||
|
|
||
|
it 'can upload an image to the page' do
|
||
|
visit my_projects_overview_path(project)
|
||
|
|
||
|
within '.toolbar-items' do
|
||
|
select('Add teaser ...', from: 'block-select')
|
||
|
end
|
||
|
|
||
|
fill_in "Title", with: 'New teaser'
|
||
|
|
||
|
# adding an image
|
||
6 years ago
|
editor.drag_attachment image_fixture, 'Image uploaded on creation'
|
||
6 years ago
|
|
||
|
within '.textile-form' do
|
||
6 years ago
|
expect(page).to have_selector('attachment-list-item', text: 'image.png')
|
||
6 years ago
|
expect(page).not_to have_selector('notification-upload-progress')
|
||
6 years ago
|
|
||
6 years ago
|
click_on 'Save'
|
||
|
end
|
||
|
|
||
|
expect(page).to have_selector('#content img', count: 1)
|
||
|
expect(page).to have_content('Image uploaded on creation')
|
||
|
|
||
|
find('.block-teaser .icon-edit').click
|
||
|
|
||
6 years ago
|
expect(page).to have_selector('attachment-list-item', text: 'image.png')
|
||
6 years ago
|
editor.drag_attachment image_fixture, 'Image uploaded the second time'
|
||
6 years ago
|
|
||
|
within '.textile-form' do
|
||
6 years ago
|
expect(page).to have_selector('attachment-list-item', text: 'image.png', count: 2)
|
||
6 years ago
|
expect(page).not_to have_selector('notification-upload-progress')
|
||
6 years ago
|
|
||
6 years ago
|
click_on 'Save'
|
||
|
end
|
||
|
|
||
|
expect(page).to have_selector('#content img', count: 2)
|
||
|
expect(page).to have_content('Image uploaded on creation')
|
||
|
expect(page).to have_content('Image uploaded the second time')
|
||
|
end
|
||
|
end
|