mirror of
https://github.com/TracksApp/tracks.git
synced 2026-01-04 00:08:50 +01:00
Removed superfluous 'tracks' directory at the root of the repository.
Testing commits to github.
This commit is contained in:
parent
6a42901514
commit
4cbf5a34d3
2269 changed files with 0 additions and 0 deletions
10
test/selenium/context_detail/in_place_edit_name.rsel
Normal file
10
test/selenium/context_detail/in_place_edit_name.rsel
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/contexts/1"
|
||||
click "context_name_in_place_editor"
|
||||
wait_for_element_present "css=#context_name_in_place_editor-inplaceeditor input.editor_field"
|
||||
type "css=#context_name_in_place_editor-inplaceeditor input.editor_field", "Test Foo"
|
||||
click "css=#context_name_in_place_editor-inplaceeditor input.editor_ok_button"
|
||||
wait_for_text "context_name_in_place_editor", "Test Foo"
|
||||
open "/contexts/1"
|
||||
wait_for_text "context_name_in_place_editor", "Test Foo"
|
||||
6
test/selenium/context_listing/delete.rsel
Normal file
6
test/selenium/context_listing/delete.rsel
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/contexts"
|
||||
click "css=#context_3 .buttons img.delete_item"
|
||||
assert_confirmation "Are you sure that you want to delete the context 'email'?"
|
||||
wait_for_element_not_present "context_3"
|
||||
15
test/selenium/context_listing/edit_then_delete.rsel
Normal file
15
test/selenium/context_listing/edit_then_delete.rsel
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/contexts"
|
||||
click "css=#context_3 .buttons img.edit_item"
|
||||
wait_for_visible "edit_context_3"
|
||||
wait_for_not_visible "context_3"
|
||||
type "//div[@id='edit_context_3'] //input[@name='context[name]']", "telegraph"
|
||||
click "//div[@id='edit_context_3'] //button"
|
||||
wait_for_not_visible "edit_context_3"
|
||||
wait_for_visible "context_3"
|
||||
click "css=#context_3 .buttons img.delete_item"
|
||||
assert_confirmation "Are you sure that you want to delete the context 'telegraph'?"
|
||||
wait_for_visible "flash"
|
||||
wait_for_text "flash", "Deleted context 'telegraph'"
|
||||
wait_for_element_not_present "context_3"
|
||||
19
test/selenium/context_listing/edit_twice.rsel
Normal file
19
test/selenium/context_listing/edit_twice.rsel
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/contexts"
|
||||
click "css=#context_3 .buttons img.edit_item"
|
||||
wait_for_visible "edit_context_3"
|
||||
wait_for_not_visible "context_3"
|
||||
type "//div[@id='edit_context_3'] //input[@name='context[name]']", "telegraph"
|
||||
click "//div[@id='edit_context_3'] //button"
|
||||
wait_for_not_visible "edit_context_3"
|
||||
wait_for_visible "context_3"
|
||||
assert_text 'css=#context_3 .data a', 'telegraph'
|
||||
click "css=#context_3 .buttons img.edit_item"
|
||||
wait_for_visible "edit_context_3"
|
||||
wait_for_not_visible "context_3"
|
||||
type "//div[@id='edit_context_3'] //input[@name='context[name]']", "email"
|
||||
click "//div[@id='edit_context_3'] //button"
|
||||
wait_for_not_visible "edit_context_3"
|
||||
wait_for_visible "context_3"
|
||||
assert_text 'css=#context_3 .data a', 'email'
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/"
|
||||
click "edit_icon_todo_12"
|
||||
wait_for_visible "context_name_todo_12"
|
||||
type "context_name_todo_12", "someday maybe"
|
||||
click "submit_todo_12"
|
||||
wait_for_element_not_present "todo_12"
|
||||
21
test/selenium/home/change_todo_context_to_new_context.rsel
Normal file
21
test/selenium/home/change_todo_context_to_new_context.rsel
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# when you change a todo to a new context, the new context must show with
|
||||
# the new todo
|
||||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/"
|
||||
|
||||
# change context of todo to new context
|
||||
click "edit_icon_todo_12"
|
||||
wait_for_visible "context_name_todo_12"
|
||||
type "context_name_todo_12", "new context"
|
||||
click "submit_todo_12"
|
||||
|
||||
# check that todo is removed from old context
|
||||
wait_for_element_not_present "css=#c1 #todo_12"
|
||||
|
||||
# check if new context is shown and that the todo is also shown
|
||||
wait_for_text_present 'new context'
|
||||
# TODO: this check only looks for todo_12 but does not check if it is contained
|
||||
# within the new context.
|
||||
wait_for_element_not_present "#todo_12"
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/"
|
||||
click "edit_icon_todo_12"
|
||||
wait_for_visible "context_name_todo_12"
|
||||
type "context_name_todo_12", "errand"
|
||||
click "submit_todo_12"
|
||||
wait_for_element_not_present "css=#c1 #todo_12"
|
||||
wait_for_visible "c4"
|
||||
wait_for_visible "css=#c4 #todo_12"
|
||||
assert_not_visible "c4empty-nd"
|
||||
8
test/selenium/home/create_first_todo.rsel
Normal file
8
test/selenium/home/create_first_todo.rsel
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
setup :fixtures => :users, :clear_tables => [:projects, :contexts, :todos]
|
||||
login :as => 'admin'
|
||||
open "/"
|
||||
assert_context_count_incremented do
|
||||
type "todo_description", "a new action"
|
||||
type "todo_context_name", "Brand new context"
|
||||
click "css=#todo-form-new-action .submit_box button"
|
||||
end
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
# adding a new action to context and collapsing context should remove
|
||||
# all actions in context including the newly added one
|
||||
|
||||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/"
|
||||
|
||||
assert_element_present "todo_9"
|
||||
|
||||
# add new action to existing context
|
||||
type "todo_description", "a new action"
|
||||
type "todo_context_name", "Agenda"
|
||||
click "css=#todo-form-new-action .submit_box button"
|
||||
wait_for_visible "flash"
|
||||
|
||||
# toggle Agenda context c1 and wait until the context has collapsed
|
||||
click "css=#toggle_c1"
|
||||
wait_for_not_visible "todo_9"
|
||||
|
||||
# check that newly added action is not there
|
||||
wait_for_not_visible "xpath=//span[text()='a new action']"
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/"
|
||||
assert_context_count_incremented do
|
||||
type "todo_description", "tttt"
|
||||
type "todo_project_name", "pppp"
|
||||
type "todo_context_name", "cccc"
|
||||
click "css=#todo-form-new-action .submit_box button"
|
||||
end
|
||||
8
test/selenium/home/create_new_todo_with_new_context.rsel
Normal file
8
test/selenium/home/create_new_todo_with_new_context.rsel
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/"
|
||||
assert_context_count_incremented do
|
||||
type "todo_description", "a new action"
|
||||
type "todo_context_name", "Brand new context"
|
||||
click "css=#todo-form-new-action .submit_box button"
|
||||
end
|
||||
31
test/selenium/home/create_todo_in_completed_project.rsel
Normal file
31
test/selenium/home/create_todo_in_completed_project.rsel
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
|
||||
open "/"
|
||||
# we should start with 10 actions on home page
|
||||
assert_text 'badge_count', '10'
|
||||
|
||||
# set project to hidden state
|
||||
open "/projects/2"
|
||||
click 'project_state_completed'
|
||||
# wait for flash before navigating away from project page
|
||||
wait_for_visible "flash"
|
||||
|
||||
# monitor badge count on home page. It should be 7 at the start
|
||||
open "/"
|
||||
wait_for_visible 'badge_count'
|
||||
assert_text 'badge_count', '7'
|
||||
|
||||
# add todo to hidden project
|
||||
type "todo_description", "should be hidden"
|
||||
type "todo_project_name", "Make more money than Billy Gates"
|
||||
type "todo_context_name", "agenda"
|
||||
click "css=#todo-form-new-action .submit_box button"
|
||||
|
||||
# wait for flash to appear
|
||||
wait_for_visible "flash"
|
||||
|
||||
verify_text_not_present 'should be hidden'
|
||||
|
||||
# badge count should still be same
|
||||
assert_text 'badge_count', '7'
|
||||
27
test/selenium/home/create_todo_in_hidden_project.rsel
Normal file
27
test/selenium/home/create_todo_in_hidden_project.rsel
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
|
||||
# set project to hidden state
|
||||
open "/projects/2"
|
||||
click 'project_state_hidden'
|
||||
# wait for flash before navigating away from project page to make sure that
|
||||
# the changes have been saved
|
||||
wait_for_visible "flash"
|
||||
|
||||
# monitor badge count on home page. It should be 7 at the start
|
||||
open "/"
|
||||
assert_text 'badge_count', '7'
|
||||
|
||||
# add todo to hidden project
|
||||
type "todo_description", "should be hidden"
|
||||
type "todo_project_name", "Make more money than Billy Gates"
|
||||
type "todo_context_name", "agenda"
|
||||
click "css=#todo-form-new-action .submit_box button"
|
||||
|
||||
# wait for flash to (dis)appear
|
||||
wait_for_visible "flash"
|
||||
|
||||
verify_text_not_present 'should be hidden'
|
||||
|
||||
# badge count should still be same
|
||||
assert_text 'badge_count', '7'
|
||||
9
test/selenium/home/defer_todo.rsel
Normal file
9
test/selenium/home/defer_todo.rsel
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/"
|
||||
click "edit_icon_todo_9"
|
||||
wait_for_element_present "show_from_todo_9"
|
||||
type "show_from_todo_9", "1/1/2030"
|
||||
click "css=#submit_todo_9"
|
||||
wait_for_element_not_present "todo_9"
|
||||
assert_text 'badge_count', '9'
|
||||
5
test/selenium/home/mark_todo_complete_1.rsel
Normal file
5
test/selenium/home/mark_todo_complete_1.rsel
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open '/'
|
||||
click "xpath=//div[@id='c1'] //div[@id='todo_9'] //input[@class='item-checkbox']"
|
||||
wait_for_element_present "xpath=//div[@id='completed'] //div[@id='todo_9']"
|
||||
6
test/selenium/home/mark_todo_complete_2.rsel
Normal file
6
test/selenium/home/mark_todo_complete_2.rsel
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open '/'
|
||||
click "xpath=//div[@id='c5'] //div[@id='todo_5'] //input[@class='item-checkbox']"
|
||||
wait_for_element_present "xpath=//div[@id='completed'] //div[@id='todo_5']"
|
||||
wait_for_not_visible 'c5'
|
||||
5
test/selenium/home/mark_todo_complete_3.rsel
Normal file
5
test/selenium/home/mark_todo_complete_3.rsel
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'jane'
|
||||
open '/'
|
||||
click_and_wait "xpath=//div[@id='c10'] //div[@id='todo_16'] //input[@class='item-checkbox']"
|
||||
assert_title "TRACKS::Project: Attend RailsConf"
|
||||
6
test/selenium/home/mark_todo_incomplete.rsel
Normal file
6
test/selenium/home/mark_todo_incomplete.rsel
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open '/'
|
||||
click "xpath=//div[@id='completed'] //div[@id='todo_3'] //input[@class='item-checkbox']"
|
||||
wait_for_element_present "xpath=//div[@id='c4'] //div[@id='todo_3']"
|
||||
assert_not_visible "c4empty-nd"
|
||||
5
test/selenium/home/star_todo.rsel
Normal file
5
test/selenium/home/star_todo.rsel
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open '/'
|
||||
click "css=#c1 #todo_9 a.star_item"
|
||||
wait_for_element_present "css=#c1 #todo_9 img.starred_todo"
|
||||
4
test/selenium/home/verify_item_not_starred.rsel
Normal file
4
test/selenium/home/verify_item_not_starred.rsel
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open '/'
|
||||
assert_element_present "css=#c2 #todo_2 img.unstarred_todo"
|
||||
14
test/selenium/integrations/no_script_if_no_contexts.rsel
Normal file
14
test/selenium/integrations/no_script_if_no_contexts.rsel
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
setup :fixtures => :users, :clear_tables => [:projects, :contexts, :todos]
|
||||
login :as => 'admin'
|
||||
open "/integrations"
|
||||
wait_for_element_present "no_context_msg"
|
||||
|
||||
open "/contexts"
|
||||
type "context_name", "my first context"
|
||||
click "context_new_submit"
|
||||
# wait for new context to appear before navigating away from project page to
|
||||
# make sure that the changes have been saved
|
||||
wait_for_text_present 'DRAG'
|
||||
|
||||
open "/integrations"
|
||||
wait_for_element_present "applescript1-contexts"
|
||||
5
test/selenium/login/_login.rsel
Normal file
5
test/selenium/login/_login.rsel
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
open :controller => 'login', :action => 'logout'
|
||||
open :controller => 'login'
|
||||
type "user_login", username
|
||||
type "user_password", password
|
||||
click_and_wait "login"
|
||||
8
test/selenium/login/first_run_shows_signup.rsel
Normal file
8
test/selenium/login/first_run_shows_signup.rsel
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
setup :clear_tables => [:users, :preferences]
|
||||
open '/'
|
||||
assert_title 'exact:TRACKS::Sign up as the admin user'
|
||||
type "user_login", "admin"
|
||||
type "user_password", "abracadabra"
|
||||
type "user_password_confirmation", "abracadabra"
|
||||
click_and_wait "signup"
|
||||
assert_title 'exact:TRACKS::List tasks'
|
||||
9
test/selenium/login/login_failure.rsel
Normal file
9
test/selenium/login/login_failure.rsel
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
setup :fixtures => :all
|
||||
open :controller => 'login', :action => 'logout'
|
||||
open :controller => 'login'
|
||||
assert_title 'exact:TRACKS::Login'
|
||||
type "user_login", "admin"
|
||||
type "user_password", "incorrect_password"
|
||||
click_and_wait "login"
|
||||
assert_title 'exact:TRACKS::Login'
|
||||
verify_text_present 'Login unsuccessful'
|
||||
12
test/selenium/login/login_success.rsel
Normal file
12
test/selenium/login/login_success.rsel
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
setup :fixtures => :all
|
||||
open :controller => 'login', :action => 'logout'
|
||||
open :controller => 'login'
|
||||
assert_title 'exact:TRACKS::Login'
|
||||
type "user_login", "admin"
|
||||
type "user_password", "abracadabra"
|
||||
click_and_wait "login"
|
||||
assert_title 'exact:TRACKS::List tasks'
|
||||
wait_for_visible "flash"
|
||||
wait_for_text "flash", "Login successful: session will not expire."
|
||||
#next line slows down the test unacceptably, but is useful in ensuring that the message disappears.
|
||||
#wait_for_not_visible "flash"
|
||||
18
test/selenium/mobile/create_new_action.rsel
Normal file
18
test/selenium/mobile/create_new_action.rsel
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
|
||||
open '/m'
|
||||
wait_for_text 'css=h1 span.count', '10'
|
||||
|
||||
click_and_wait "link=Add new action"
|
||||
|
||||
type "todo_notes", "test notes"
|
||||
type "todo_description", "test name"
|
||||
select "todo_context_id", "label=call"
|
||||
select "todo_project_id", "label=Make more money than Billy Gates"
|
||||
select "todo_due_3i", "label=1"
|
||||
select "todo_due_2i", "label=January"
|
||||
select "todo_due_1i", "label=2009"
|
||||
click_and_wait "//input[@value='Create']"
|
||||
|
||||
wait_for_text 'css=h1 span.count', '11'
|
||||
11
test/selenium/mobile/mark_done.rsel
Normal file
11
test/selenium/mobile/mark_done.rsel
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
|
||||
open '/m'
|
||||
wait_for_text 'css=h1 span.count', '10'
|
||||
|
||||
open_and_wait '/todos/6.m'
|
||||
click "done"
|
||||
click_and_wait "//input[@value='Update']"
|
||||
|
||||
wait_for_text 'css=h1 span.count', '9'
|
||||
35
test/selenium/mobile/navigation.rsel
Normal file
35
test/selenium/mobile/navigation.rsel
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
|
||||
# open home page
|
||||
open '/m'
|
||||
wait_for_title "All actions"
|
||||
wait_for_text 'css=h1 span.count', '10'
|
||||
|
||||
# open context page
|
||||
click_and_wait "link=Contexts"
|
||||
# verify_title "All actions in context agenda"
|
||||
# choose agenda context
|
||||
click_and_wait "link=agenda"
|
||||
wait_for_text 'css=h1 span.count', '5'
|
||||
|
||||
# click on tag foo to go to tag page
|
||||
click_and_wait "link=foo"
|
||||
verify_title "TRACKS::Tagged with 'foo'"
|
||||
wait_for_text 'css=h1 span.count', '2'
|
||||
|
||||
click_and_wait "link=Projects"
|
||||
wait_for_text 'css=h1 span.count', '3'
|
||||
click_and_wait "link=Build a working time machine"
|
||||
wait_for_text 'css=h1 span.count', '3'
|
||||
|
||||
# follow link of action to edit form and mark done
|
||||
click_and_wait "link=Select Delorean model"
|
||||
click "done"
|
||||
click_and_wait "//input[@value='Update']"
|
||||
wait_for_text 'css=h1 span.count', '2'
|
||||
|
||||
# just test the navigation.
|
||||
click_and_wait "link=Tickler"
|
||||
wait_for_text 'css=h1 span.count', '0'
|
||||
click_and_wait "link=Feeds"
|
||||
27
test/selenium/notes/badge_count.rsel
Normal file
27
test/selenium/notes/badge_count.rsel
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/notes/"
|
||||
assert_text 'badge_count', '2'
|
||||
|
||||
# add new note
|
||||
open "/projects/1"
|
||||
click "css=#add_note_href"
|
||||
type "css=#new_note_body", "new note"
|
||||
click "add-new-note"
|
||||
|
||||
# wait until new note is saved
|
||||
wait_for_text_not_present "new note"
|
||||
wait_for_text_present "new note"
|
||||
|
||||
# check badge count is one more
|
||||
open "/notes/"
|
||||
assert_text 'badge_count', '3'
|
||||
|
||||
# delete note
|
||||
click "css=#delete_note_1"
|
||||
assert_confirmation "Are you sure that you want to delete the note '1'?"
|
||||
|
||||
# check badge decreased
|
||||
wait_for_visible "flash"
|
||||
wait_for_element_not_present "container_note_1"
|
||||
assert_text 'badge_count', '2'
|
||||
5
test/selenium/notes/link_to_note.rsel
Normal file
5
test/selenium/notes/link_to_note.rsel
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/projects/1"
|
||||
click_and_wait "css=#note_1 .link_to_notes"
|
||||
assert_element_present "note_1"
|
||||
5
test/selenium/notes/see_all_notes.rsel
Normal file
5
test/selenium/notes/see_all_notes.rsel
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/notes/"
|
||||
assert_element_present "note_1"
|
||||
assert_element_present "note_2"
|
||||
5
test/selenium/notes/toggle_notes.rsel
Normal file
5
test/selenium/notes/toggle_notes.rsel
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/notes"
|
||||
click "css=#toggle-notes-nav"
|
||||
wait_for_element_present "css=body.notes"
|
||||
5
test/selenium/project_detail/_add_deferred_todo.rsel
Normal file
5
test/selenium/project_detail/_add_deferred_todo.rsel
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
type "todo_description", "choose era"
|
||||
type "todo_show_from", "1/1/2030"
|
||||
click "css=#todo-form-new-action .submit_box button"
|
||||
wait_for_element_present "xpath=//div[@id='tickler'] //div[@class='item-container']"
|
||||
wait_for_element_present "xpath=//div[@id='tickler'] //div[@class='item-container'] //a[@title='01/01/2030']"
|
||||
20
test/selenium/project_detail/activate_deferred_todo.rsel
Normal file
20
test/selenium/project_detail/activate_deferred_todo.rsel
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
|
||||
#first, defer a todo
|
||||
open "/projects/1"
|
||||
click "edit_icon_todo_5"
|
||||
wait_for_element_present "show_from_todo_5"
|
||||
type "show_from_todo_5", "1/1/2030"
|
||||
click "css=#submit_todo_5"
|
||||
wait_for_element_present "xpath=//div[@id='tickler'] //div[@id='todo_5']"
|
||||
|
||||
#now activate the other deferred one
|
||||
open "/projects/1"
|
||||
click "edit_icon_todo_15"
|
||||
wait_for_element_present "show_from_todo_15"
|
||||
type "show_from_todo_15", ""
|
||||
click "css=#submit_todo_15"
|
||||
wait_for_element_present "xpath=//div[@id='p1'] //div[@id='todo_15']"
|
||||
assert_not_visible "tickler-empty-nd"
|
||||
assert_text 'badge_count', '2'
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/projects/1"
|
||||
click "edit_icon_todo_15"
|
||||
wait_for_element_present "show_from_todo_15"
|
||||
type "show_from_todo_15", ""
|
||||
click "css=#submit_todo_15"
|
||||
wait_for_element_present "xpath=//div[@id='p1'] //div[@id='todo_15']"
|
||||
wait_for_visible "tickler-empty-nd"
|
||||
12
test/selenium/project_detail/add_todo.rsel
Normal file
12
test/selenium/project_detail/add_todo.rsel
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/projects/1"
|
||||
|
||||
# add new todo
|
||||
type "todo_description", "a brand new todo"
|
||||
click "css=#todo-form-new-action .submit_box button"
|
||||
wait_for_element_present "xpath=//div[@id='p1'] //div[@class='item-container']"
|
||||
|
||||
# wait for flash to mention that todo was added and verify existence of new todo
|
||||
wait_for_visible "flash"
|
||||
verify_text_present 'a brand new todo'
|
||||
24
test/selenium/project_detail/change_default_context.rsel
Normal file
24
test/selenium/project_detail/change_default_context.rsel
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/projects/2"
|
||||
|
||||
# change default context
|
||||
type "project[default_context_name]", "errand"
|
||||
click "commit"
|
||||
|
||||
wait_for_visible "flash"
|
||||
|
||||
# add actions
|
||||
type "todo_description", "test1"
|
||||
click "css=#todo-form-new-action .submit_box button"
|
||||
|
||||
wait_for_visible "flash"
|
||||
wait_for_not_visible "flash"
|
||||
|
||||
type "todo_description", "test2"
|
||||
click "css=#todo-form-new-action .submit_box button"
|
||||
wait_for_visible "flash"
|
||||
|
||||
# check that context errand now contains 2 todos
|
||||
open "/contexts/4"
|
||||
assert_text "badge_count", "2"
|
||||
14
test/selenium/project_detail/change_project_status.rsel
Normal file
14
test/selenium/project_detail/change_project_status.rsel
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open '/projects/1'
|
||||
assert_checked 'project_state_active', 'ignored'
|
||||
assert_attribute 'css=#project_status .active span', 'class', 'active_state'
|
||||
assert_attribute 'css=#project_status .hidden span', 'class', 'inactive_state'
|
||||
assert_text 'badge_count', '2'
|
||||
click 'project_state_hidden'
|
||||
wait_for_attribute 'css=#project_status .active span', 'class', 'inactive_state'
|
||||
wait_for_attribute 'css=#project_status .hidden span', 'class', 'active_state'
|
||||
assert_text 'badge_count', '2'
|
||||
open '/projects/1'
|
||||
assert_text 'badge_count', '2'
|
||||
assert_checked 'project_state_hidden', 'ignored'
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/projects/1"
|
||||
click "edit_icon_todo_5"
|
||||
wait_for_element_present "show_from_todo_5"
|
||||
type "project_name_todo_5", ""
|
||||
click "css=#submit_todo_5"
|
||||
wait_for_element_not_present "todo_5"
|
||||
assert_text 'badge_count', '1'
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open '/projects/1'
|
||||
assert_text 'badge_count', '2'
|
||||
click 'project_state_hidden'
|
||||
wait_for_attribute 'css=#project_status .active span', 'class', 'inactive_state'
|
||||
wait_for_attribute 'css=#project_status .hidden span', 'class', 'active_state'
|
||||
assert_text 'badge_count', '2'
|
||||
|
||||
type "todo_description", "add one to hidden project 1"
|
||||
click "css=#todo-form-new-action .submit_box button"
|
||||
wait_for_visible "flash"
|
||||
wait_for_not_visible "flash"
|
||||
|
||||
type "todo_description", "add one to hidden project 2"
|
||||
click "css=#todo-form-new-action .submit_box button"
|
||||
wait_for_visible "flash"
|
||||
|
||||
assert_text 'badge_count', '4'
|
||||
|
||||
open '/projects/1'
|
||||
assert_text 'badge_count', '4'
|
||||
assert_checked 'project_state_hidden', 'ignored'
|
||||
5
test/selenium/project_detail/create_deferred_todo.rsel
Normal file
5
test/selenium/project_detail/create_deferred_todo.rsel
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/projects/2"
|
||||
include_partial 'project_detail/add_deferred_todo'
|
||||
assert_not_visible "tickler-empty-nd"
|
||||
10
test/selenium/project_detail/defer_todo.rsel
Normal file
10
test/selenium/project_detail/defer_todo.rsel
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/projects/1"
|
||||
click "edit_icon_todo_5"
|
||||
wait_for_element_present "show_from_todo_5"
|
||||
type "show_from_todo_5", "1/1/2030"
|
||||
click "css=#submit_todo_5"
|
||||
wait_for_element_present "xpath=//div[@id='tickler'] //div[@id='todo_5']"
|
||||
assert_not_visible "tickler-empty-nd"
|
||||
assert_text 'badge_count', '1'
|
||||
10
test/selenium/project_detail/in_place_edit_name.rsel
Normal file
10
test/selenium/project_detail/in_place_edit_name.rsel
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/projects/1"
|
||||
click "project_name_in_place_editor"
|
||||
wait_for_element_present "css=#project_name_in_place_editor-inplaceeditor input.editor_field"
|
||||
type "css=#project_name_in_place_editor-inplaceeditor input.editor_field", "Test Foo"
|
||||
click "css=#project_name_in_place_editor-inplaceeditor input.editor_ok_button"
|
||||
wait_for_text "project_name_in_place_editor", "Test Foo"
|
||||
open "/projects/1"
|
||||
wait_for_text "project_name_in_place_editor", "Test Foo"
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/projects/1"
|
||||
include_partial 'project_detail/add_deferred_todo'
|
||||
click "xpath=//div[@id='tickler'] //div[@id='todo_15'] //input[@class='item-checkbox']"
|
||||
wait_for_element_present "xpath=//div[@id='completed'] //div[@id='todo_15']"
|
||||
assert_not_visible "tickler-empty-nd"
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/projects/1"
|
||||
click "xpath=//div[@id='tickler'] //div[@id='todo_15'] //input[@class='item-checkbox']"
|
||||
wait_for_visible "tickler-empty-nd"
|
||||
5
test/selenium/project_detail/toggle_notes.rsel
Normal file
5
test/selenium/project_detail/toggle_notes.rsel
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/projects/1"
|
||||
click "css=#toggle-notes-nav"
|
||||
wait_for_element_present "notes_todo_6"
|
||||
6
test/selenium/project_listing/delete.rsel
Normal file
6
test/selenium/project_listing/delete.rsel
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/projects"
|
||||
click "css=#project_2 .buttons img.delete_item"
|
||||
assert_confirmation "Are you sure that you want to delete the project 'Make more money than Billy Gates'?"
|
||||
wait_for_element_not_present "project_2"
|
||||
17
test/selenium/project_listing/edit_then_delete.rsel
Normal file
17
test/selenium/project_listing/edit_then_delete.rsel
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/projects"
|
||||
click "css=#project_2 .buttons img.edit_item"
|
||||
wait_for_visible "edit_project_2"
|
||||
wait_for_not_visible "project_2"
|
||||
type "//div[@id='edit_project_2'] //input[@name='project[name]']", "become a billionaire"
|
||||
click "//div[@id='edit_project_2'] //button"
|
||||
wait_for_not_visible "edit_project_2"
|
||||
wait_for_visible "project_2"
|
||||
wait_for_visible "flash"
|
||||
wait_for_not_visible "flash"
|
||||
click "css=#project_2 .buttons img.delete_item"
|
||||
assert_confirmation "Are you sure that you want to delete the project 'become a billionaire'?"
|
||||
wait_for_visible "flash"
|
||||
assert_text "flash", "Deleted project 'become a billionaire'"
|
||||
wait_for_element_not_present "project_2"
|
||||
19
test/selenium/project_listing/edit_twice.rsel
Normal file
19
test/selenium/project_listing/edit_twice.rsel
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/projects"
|
||||
click "css=#project_2 .buttons img.edit_item"
|
||||
wait_for_visible "edit_project_2"
|
||||
wait_for_not_visible "project_2"
|
||||
type "//div[@id='edit_project_2'] //input[@name='project[name]']", "become a billionaire"
|
||||
click "//div[@id='edit_project_2'] //button"
|
||||
wait_for_not_visible "edit_project_2"
|
||||
wait_for_visible "project_2"
|
||||
assert_text 'css=#project_2 .data a', 'become a billionaire'
|
||||
click "css=#project_2 .buttons img.edit_item"
|
||||
wait_for_visible "edit_project_2"
|
||||
wait_for_not_visible "project_2"
|
||||
type "//div[@id='edit_project_2'] //input[@name='project[name]']", "become a multi-millionaire"
|
||||
click "//div[@id='edit_project_2'] //button"
|
||||
wait_for_not_visible "edit_project_2"
|
||||
wait_for_visible "project_2"
|
||||
assert_text 'css=#project_2 .data a', 'become a multi-millionaire'
|
||||
16
test/selenium/tags/badge_count.rsel
Normal file
16
test/selenium/tags/badge_count.rsel
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/todos/tag/foo"
|
||||
assert_text 'badge_count', '2'
|
||||
|
||||
click "css=#delete_icon_2"
|
||||
assert_confirmation "Are you sure that you want to delete the action 'Call dinosaur exterminator'?"
|
||||
wait_for_element_not_present "todo_2"
|
||||
|
||||
assert_text 'badge_count', '1'
|
||||
|
||||
# mark one complete
|
||||
click "xpath=//div[@id='c1'] //div[@id='todo_1'] //input[@class='item-checkbox']"
|
||||
wait_for_element_present "xpath=//div[@id='completed'] //div[@id='todo_1']"
|
||||
|
||||
assert_text 'badge_count', '0'
|
||||
5
test/selenium/tags/find_tagged.rsel
Normal file
5
test/selenium/tags/find_tagged.rsel
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/todos/tag/foo"
|
||||
wait_for_element_present "xpath=//div[@id='c1'] //h2"
|
||||
wait_for_text 'badge_count', '2'
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
setup :fixtures => [:users, :projects, :contexts, :todos, :notes]
|
||||
login :as => 'admin'
|
||||
open "/"
|
||||
click_and_wait "xpath=//ul[@id='navlist'] //a[@title='See your starred actions']"
|
||||
assert_title "exact:TRACKS::Tagged with 'starred'"
|
||||
verify_text_present "Currently there are no incomplete actions with the tag 'starred'"
|
||||
12
test/selenium/tickler/change_deferred_todo_context.rsel
Normal file
12
test/selenium/tickler/change_deferred_todo_context.rsel
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/tickler"
|
||||
click "edit_icon_todo_15"
|
||||
wait_for_visible "context_name_todo_15"
|
||||
type "context_name_todo_15", "lab"
|
||||
click "submit_todo_15"
|
||||
wait_for_element_not_present "css=#c6 #todo_15"
|
||||
wait_for_visible "c5"
|
||||
wait_for_visible "css=#c5 #todo_15"
|
||||
assert_not_visible "c5empty-nd"
|
||||
wait_for_not_visible "c6"
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
setup :fixtures => [:users, :preferences, :contexts, :projects], :clear_tables => [:todos]
|
||||
login :as => 'admin'
|
||||
open "/tickler"
|
||||
assert_context_count_incremented do
|
||||
type "todo_description", "a new action"
|
||||
type "todo_context_name", "errands"
|
||||
type "todo_project_name", "None"
|
||||
type "todo_show_from", "1/1/2030"
|
||||
click "css=#todo-form-new-action .submit_box button"
|
||||
end
|
||||
wait_for_not_visible "tickler-empty-nd"
|
||||
wait_for_element_present "xpath=//div[@class='item-container'] //a[@title='01/01/2030']"
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/tickler"
|
||||
assert_context_count_incremented do
|
||||
type "todo_description", "a new action"
|
||||
type "todo_context_name", "Brand new context"
|
||||
type "todo_show_from", "1/1/2030"
|
||||
click "css=#todo-form-new-action .submit_box button"
|
||||
end
|
||||
4
test/selenium/tickler/see_all_deferred.rsel
Normal file
4
test/selenium/tickler/see_all_deferred.rsel
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
setup :fixtures => :all
|
||||
login :as => 'admin'
|
||||
open "/tickler/"
|
||||
assert_element_present "todo_15"
|
||||
Loading…
Add table
Add a link
Reference in a new issue