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.
85 lines
3.0 KiB
85 lines
3.0 KiB
#-- copyright
|
|
# OpenProject Meeting 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.
|
|
#++
|
|
|
|
Given /^there is (\d+) [Mm]eetings? in project "(.+)" created by "(.+)" with:$/ do |count, project, user, table|
|
|
count.to_i.times do
|
|
m = FactoryGirl.build(:meeting)
|
|
m.project = Project.find_by_name(project)
|
|
m.author = User.find_by_login(user)
|
|
send_table_to_object(m, table)
|
|
end
|
|
end
|
|
|
|
Given /^there is (\d+) [Mm]eetings? in project "(.+)" that start (.*) days? from now with:$/ do |count, project, time, table|
|
|
count.to_i.times do
|
|
m = FactoryGirl.build(:meeting, start_time: Time.now + time.to_i.days)
|
|
m.project = Project.find_by_name(project)
|
|
send_table_to_object(m, table)
|
|
end
|
|
end
|
|
|
|
Given /^the [Mm]eeting "(.+)" has 1 agenda with:$/ do |meeting, table|
|
|
m = Meeting.find_by_title(meeting)
|
|
ma = MeetingAgenda.find_by_meeting_id(m.id) || FactoryGirl.build(:meeting_agenda, meeting: m)
|
|
send_table_to_object(ma, table)
|
|
end
|
|
|
|
Given /^the [Mm]eeting "(.+)" has 1 agenda$/ do |meeting|
|
|
m = Meeting.find_by_title(meeting)
|
|
m.agenda ||= FactoryGirl.build(:meeting_agenda)
|
|
m.save!
|
|
end
|
|
|
|
Given /^the [Mm]eeting "(.+)" has minutes with:$/ do |meeting, table|
|
|
m = Meeting.find_by_title(meeting)
|
|
mm = MeetingMinutes.find_by_meeting_id(m.id) || FactoryGirl.build(:meeting_minutes, meeting: m)
|
|
send_table_to_object(mm, table)
|
|
end
|
|
|
|
Given /^"(.+)" is invited to the [Mm]eeting "(.+)"$/ do |user, meeting|
|
|
m = Meeting.find_by_title(meeting)
|
|
p = m.participants.detect { |p| p.user_id = User.find_by_login(user).id } || FactoryGirl.build(:meeting_participant, meeting: m)
|
|
p.invited = true
|
|
p.save
|
|
end
|
|
|
|
Given /^"(.+)" attended the [Mm]eeting "(.+)"$/ do |user, meeting|
|
|
m = Meeting.find_by_title(meeting)
|
|
p = m.participants.detect { |p| p.user_id = User.find_by_login(user).id } || FactoryGirl.build(:meeting_participant, meeting: m)
|
|
p.attended = true
|
|
p.save
|
|
end
|
|
|
|
When /the agenda of the meeting "(.+)" changes meanwhile/ do |meeting|
|
|
m = Meeting.find_by_title(meeting)
|
|
m.agenda.text = 'oder oder?'
|
|
m.agenda.save!
|
|
end
|
|
|
|
Then /^the minutes should contain the following text:$/ do |table|
|
|
step %{I should see "#{table.raw.first.first}" within "#meeting_minutes-text"}
|
|
end
|
|
|
|
Then /^there should be a text edit toolbar for the "(.+)" field$/ do |field_id|
|
|
# second parent up
|
|
ancestor = find(:xpath, "//*[@id='#{field_id.gsub('#','')}']/../..")
|
|
|
|
expect(ancestor).to have_selector('.jstElements')
|
|
end
|
|
|