mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-18 00:00:12 +01:00
323 lines
13 KiB
Ruby
323 lines
13 KiB
Ruby
Given /^I have no todos$/ do
|
|
Todo.delete_all
|
|
end
|
|
|
|
Given /^I have a todo "([^"]*)" in the context "([^"]*)"$/ do |description, context_name|
|
|
context = @current_user.contexts.find_or_create(:name => context_name)
|
|
@todo = @current_user.todos.create!(:context_id => context.id, :description => description)
|
|
end
|
|
|
|
Given /^I have a todo "([^"]*)" in context "([^"]*)" with tags "([^"]*)"$/ do |description, context_name, tag_names|
|
|
Given "I have a todo \"#{description}\" in the context \"#{context_name}\""
|
|
@todo.tag_with(tag_names)
|
|
@todo.save!
|
|
end
|
|
|
|
Given /^I have a todo "([^"]*)" in the context "([^"]*)" which is due tomorrow$/ do |description, context_name|
|
|
context = @current_user.contexts.find_or_create(:name => context_name)
|
|
@todo = @current_user.todos.create!(:context_id => context.id, :description => description)
|
|
@todo.due = @todo.created_at + 1.day
|
|
@todo.save!
|
|
end
|
|
|
|
Given /^I have (\d+) todos in project "([^"]*)" in context "([^"]*)" with tags "([^"]*)"$/ do |number_of_todos, project_name, context_name, tag_names|
|
|
@context = @current_user.contexts.find_by_name(context_name)
|
|
@context.should_not be_nil
|
|
|
|
@project = @current_user.projects.find_by_name(project_name)
|
|
@project.should_not be_nil
|
|
|
|
@todos = []
|
|
number_of_todos.to_i.downto 1 do |i|
|
|
todo = @current_user.todos.create!(:context_id => @context.id, :description => "todo #{i}", :project_id => @project.id)
|
|
todo.tag_with(tag_names)
|
|
todo.save!
|
|
@todos << todo
|
|
end
|
|
end
|
|
|
|
Given /^I have a todo "([^"]*)"$/ do |description|
|
|
Given "I have a todo \"#{description}\" in the context \"Context A\""
|
|
end
|
|
|
|
Given /^I have a todo "([^"]*)" with notes "([^"]*)"$/ do |description, notes|
|
|
Given "I have a todo \"#{description}\" in the context \"Context A\""
|
|
@todo.notes = notes
|
|
@todo.save!
|
|
end
|
|
|
|
Given /^I have ([0-9]+) todos$/ do |count|
|
|
count.to_i.downto 1 do |i|
|
|
Given "I have a todo \"todo #{i}\" in the context \"Context A\""
|
|
end
|
|
end
|
|
|
|
Given /^I have a todo with description "([^"]*)" in project "([^"]*)" with tags "([^"]*)" in the context "([^"]*)"$/ do |action_description, project_name, tags, context_name|
|
|
context = @current_user.contexts.find_or_create(:name => context_name)
|
|
project = @current_user.projects.find_or_create(:name => project_name)
|
|
@todo = @current_user.todos.create!(:context_id => context.id, :project_id => project.id, :description => action_description)
|
|
@todo.tag_with(tags)
|
|
@todo.save
|
|
end
|
|
|
|
Given /^I have a todo with description "([^"]*)" in project "([^"]*)" with tags "([^"]*)" in the context "([^"]*)" that is due next week$/ do |action_description, project_name, tags, context_name|
|
|
Given "I have a todo with description \"#{action_description}\" in project \"#{project_name}\" with tags \"#{tags}\" in the context \"#{context_name}\""
|
|
@todo.due = @current_user.time + 1.week
|
|
@todo.save!
|
|
end
|
|
|
|
###### DEFERRED TODOS #######
|
|
|
|
Given /^I have ([0-9]+) deferred todos$/ do |count|
|
|
context = @current_user.contexts.create!(:name => "context B")
|
|
count.to_i.downto 1 do |i|
|
|
todo = @current_user.todos.create!(:context_id => context.id, :description => "todo #{i}")
|
|
todo.show_from = @current_user.time + 1.week
|
|
todo.save!
|
|
end
|
|
end
|
|
|
|
Given /^I have a deferred todo "([^"]*)" in the context "([^"]*)"$/ do |description, context_name|
|
|
context = @current_user.contexts.find_or_create(:name => context_name)
|
|
todo = @current_user.todos.create!(:context_id => context.id, :description => description)
|
|
todo.show_from = @current_user.time + 1.week
|
|
todo.save!
|
|
end
|
|
|
|
Given /^I have a deferred todo "([^"]*)"$/ do |description|
|
|
Given "I have a deferred todo \"#{description}\" in the context \"context B\""
|
|
end
|
|
|
|
Given /^I have a deferred todo "([^"]*)" in context "([^"]*)" with tags "([^"]*)"$/ do |action_description, context_name, tag_list|
|
|
Given "I have a todo \"#{action_description}\" in context \"#{context_name}\" with tags \"#{tag_list}\""
|
|
@todo.show_from = @current_user.time + 1.week
|
|
@todo.save!
|
|
end
|
|
|
|
####### COMPLETED TODOS #######
|
|
|
|
Given /^I have ([0-9]+) completed todos in project "([^"]*)" in context "([^"]*)"$/ do |count, project_name, context_name|
|
|
@context = @current_user.contexts.find_by_name(context_name)
|
|
@context.should_not be_nil
|
|
|
|
@project = @current_user.projects.find_by_name(project_name)
|
|
@project.should_not be_nil
|
|
|
|
@todos = []
|
|
count.to_i.downto 1 do |i|
|
|
@todo = @current_user.todos.create!(:context_id => @context.id, :description => "todo #{i}", :project_id => @project.id)
|
|
@todo.complete!
|
|
@todos << @todo
|
|
end
|
|
end
|
|
|
|
Given /^I have a completed todo "([^"]*)" in project "([^"]*)" in context "([^"]*)"$/ do |action_description, project_name, context_name|
|
|
Given "I have 1 completed todos in project \"#{project_name}\" in context \"#{context_name}\""
|
|
@todos[0].description = action_description
|
|
@todos[0].save!
|
|
end
|
|
|
|
Given /^I have (\d+) completed todos in project "([^"]*)" in context "([^"]*)" with tags "([^"]*)"$/ do |count, project_name, context_name, tags|
|
|
Given "I have #{count} completed todos in project \"#{project_name}\" in context \"#{context_name}\""
|
|
@todos.each { |t| t.tag_with(tags); t.save! }
|
|
end
|
|
|
|
Given /^I have ([0-9]+) completed todos in context "([^"]*)"$/ do |count, context_name|
|
|
context = @current_user.contexts.find_by_name(context_name)
|
|
context.should_not be_nil
|
|
|
|
count.to_i.downto 1 do |i|
|
|
todo = @current_user.todos.create!(:context_id => context.id, :description => "todo #{i}")
|
|
todo.complete!
|
|
end
|
|
end
|
|
|
|
Given /^I have ([0-9]+) completed todos$/ do |count|
|
|
Given "I have a context called \"context D\""
|
|
Given "I have #{count} completed todos in context \"context D\""
|
|
end
|
|
|
|
Given /^I have ([0-9]+) completed todos with a note$/ do |count|
|
|
Given "I have #{count} completed todos"
|
|
@todos.each { |t| t.notes = "note #{t.id}"; t.save!}
|
|
end
|
|
|
|
Given /^I have ([0-9]+) completed todos with a note in project "([^"]*)" in context "([^"]*)" with tags "([^"]*)"$/ do |count, project_name, context_name, tags|
|
|
Given "I have #{count} completed todos in project \"#{project_name}\" in context \"#{context_name}\" with tags \"#{tags}\""
|
|
@todos.each { |t| t.notes = "note #{t.id}"; t.save! }
|
|
end
|
|
|
|
Given /^I have a completed todo with description "([^"]*)" in project "([^"]*)" with tags "([^"]*)" in the context "([^"]*)"$/ do |action_description, project_name, tags, context_name|
|
|
Given "I have a todo with description \"#{action_description}\" in project \"#{project_name}\" with tags \"#{tags}\" in the context \"#{context_name}\""
|
|
@todo.complete!
|
|
end
|
|
|
|
####### PROJECT WITH TODOS ######
|
|
|
|
Given /^I have a project "([^"]*)" that has the following todos$/ do |project_name, todos|
|
|
Given "I have a project called \"#{project_name}\""
|
|
@project.should_not be_nil
|
|
todos.hashes.each do |todo|
|
|
context = @current_user.contexts.find_by_name(todo[:context])
|
|
context.should_not be_nil
|
|
new_todo = @current_user.todos.create!(
|
|
:description => todo[:description],
|
|
:context_id => context.id,
|
|
:project_id=>@project.id)
|
|
unless todo[:tags].nil?
|
|
new_todo.tag_with(todo[:tags])
|
|
end
|
|
unless todo[:completed].nil?
|
|
new_todo.complete! if todo[:completed] == 'yes'
|
|
end
|
|
end
|
|
end
|
|
|
|
Given /^I have a project "([^"]*)" that has the following deferred todos$/ do |project_name, todos|
|
|
Given "I have a project called \"#{project_name}\""
|
|
@project.should_not be_nil
|
|
todos.hashes.each do |todo|
|
|
context = @current_user.contexts.find_by_name(todo[:context])
|
|
context.should_not be_nil
|
|
new_todo = @current_user.todos.create!(
|
|
:description => todo[:description],
|
|
:context_id => context.id,
|
|
:project_id=>@project.id,
|
|
:show_from=>Time.zone.now+1.week)
|
|
unless todo[:tags].nil?
|
|
new_todo.tag_with(todo[:tags])
|
|
end
|
|
unless todo[:completed].nil?
|
|
new_todo.complete! if todo[:completed] == 'yes'
|
|
end
|
|
end
|
|
end
|
|
|
|
####### submitting using sidebar form #######
|
|
|
|
When /^I submit a new action with description "([^"]*)"$/ do |description|
|
|
fill_in "todo[description]", :with => description
|
|
submit_next_action_form
|
|
end
|
|
|
|
When /^I submit a new action with description "([^"]*)" with a dependency on "([^"]*)"$/ do |todo_description, predecessor_description|
|
|
predecessor = @current_user.todos.find_by_description(predecessor_description)
|
|
predecessor.should_not be_nil
|
|
|
|
fill_in "todo[description]", :with => todo_description
|
|
|
|
input = "xpath=//form[@id='todo-form-new-action']//input[@id='predecessor_input']"
|
|
selenium.focus(input)
|
|
selenium.type_keys input, predecessor_description
|
|
|
|
# wait for auto complete
|
|
autocomplete = "xpath=//a[@id='ui-active-menuitem']"
|
|
selenium.wait_for_element(autocomplete, :timeout_in_seconds => 5)
|
|
|
|
# click first line
|
|
first_elem = "xpath=//ul/li[1]/a[@id='ui-active-menuitem']"
|
|
selenium.click(first_elem)
|
|
|
|
new_dependency_line = "xpath=//li[@id='pred_#{predecessor.id}']"
|
|
selenium.wait_for_element(new_dependency_line, :timeout_in_seconds => 5)
|
|
|
|
submit_next_action_form
|
|
end
|
|
|
|
When /^I submit a new action with description "([^"]*)" and the tags "([^"]*)" in the context "([^"]*)"$/ do |description, tags, context_name|
|
|
fill_in "todo[description]", :with => description
|
|
fill_in "todo_tag_list", :with => tags
|
|
|
|
# fill_in does not seem to work when the field is prefilled with something. Empty the field first
|
|
clear_context_name_from_next_action_form
|
|
fill_in "todo_context_name", :with => context_name
|
|
submit_next_action_form
|
|
end
|
|
|
|
When /^I submit a new action with description "([^"]*)" to project "([^"]*)" with tags "([^"]*)" in the context "([^"]*)"$/ do |description, project_name, tags, context_name|
|
|
fill_in "todo[description]", :with => description
|
|
|
|
clear_project_name_from_next_action_form
|
|
clear_context_name_from_next_action_form
|
|
|
|
fill_in "todo_project_name", :with => project_name
|
|
fill_in "todo_context_name", :with => context_name
|
|
fill_in "todo_tag_list", :with => tags
|
|
|
|
submit_next_action_form
|
|
end
|
|
|
|
When /^I submit a new action with description "([^"]*)" to project "([^"]*)" in the context "([^"]*)"$/ do |description, project_name, context_name|
|
|
When "I submit a new action with description \"#{description}\" to project \"#{project_name}\" with tags \"\" in the context \"#{context_name}\""
|
|
end
|
|
|
|
|
|
When /^I submit a new action with description "([^"]*)" in the context "([^"]*)"$/ do |description, context_name|
|
|
fill_in "todo[description]", :with => description
|
|
|
|
clear_context_name_from_next_action_form
|
|
fill_in "todo_context_name", :with => context_name
|
|
|
|
submit_next_action_form
|
|
end
|
|
|
|
####### submitting using sidebar form: DEFERRED #######
|
|
|
|
When /^I submit a new deferred action with description "([^"]*)"$/ do |description|
|
|
fill_in "todo[description]", :with => description
|
|
fill_in "todo[show_from]", :with => format_date(@current_user.time + 1.week)
|
|
submit_next_action_form
|
|
end
|
|
|
|
When /^I submit a new deferred action with description "([^"]*)" and the tags "([^"]*)" in the context "([^"]*)"$/ do |description, tags, context_name|
|
|
fill_in "todo[description]", :with => description
|
|
|
|
clear_context_name_from_next_action_form
|
|
fill_in "todo_context_name", :with => context_name
|
|
|
|
fill_in "todo_tag_list", :with => tags
|
|
fill_in "todo[show_from]", :with => format_date(@current_user.time + 1.week)
|
|
submit_next_action_form
|
|
end
|
|
|
|
When /^I submit a new deferred action with description "([^"]*)" to project "([^"]*)" with tags "([^"]*)" in the context "([^"]*)"$/ do |description, project_name, tags, context_name|
|
|
fill_in "todo[description]", :with => description
|
|
|
|
clear_project_name_from_next_action_form
|
|
clear_context_name_from_next_action_form
|
|
|
|
fill_in "todo_project_name", :with => project_name
|
|
fill_in "todo_context_name", :with => context_name
|
|
fill_in "todo_tag_list", :with => tags
|
|
fill_in "todo[show_from]", :with => format_date(@current_user.time + 1.week)
|
|
|
|
submit_next_action_form
|
|
end
|
|
|
|
When /^I submit a deferred new action with description "([^"]*)" to project "([^"]*)" in the context "([^"]*)"$/ do |description, project_name, context_name|
|
|
When "I submit a new deferred action with description \"#{description}\" to project \"#{project_name}\" with tags \"\" in the context \"#{context_name}\""
|
|
end
|
|
|
|
####### submitting using sidebar form: MULTIPLE ACTIONS #######
|
|
|
|
When /^I submit multiple actions with using$/ do |multiple_actions|
|
|
fill_in "todo[multiple_todos]", :with => multiple_actions
|
|
submit_multiple_next_action_form
|
|
end
|
|
|
|
When /^I fill the multiple actions form with "([^"]*)", "([^"]*)", "([^"]*)", "([^"]*)"$/ do |descriptions, project_name, context_name, tags|
|
|
fill_in "todo[multiple_todos]", :with => descriptions
|
|
fill_in "multi_todo_project_name", :with => project_name
|
|
fill_in "multi_todo_context_name", :with => context_name
|
|
fill_in "multi_tag_list", :with => tags
|
|
end
|
|
|
|
When /^I submit the new multiple actions form with "([^"]*)", "([^"]*)", "([^"]*)", "([^"]*)"$/ do |descriptions, project_name, context_name, tags|
|
|
When "I fill the multiple actions form with \"#{descriptions}\", \"#{project_name}\", \"#{context_name}\", \"#{tags}\""
|
|
submit_multiple_next_action_form
|
|
end
|
|
|
|
When /^I submit the new multiple actions form with$/ do |multi_line_descriptions|
|
|
fill_in "todo[multiple_todos]", :with => multi_line_descriptions
|
|
submit_multiple_next_action_form
|
|
end
|