@ -32,7 +32,7 @@ class WikiControllerTest < ActionController::TestCase
end
end
def test_show_start_page
def test_show_start_page
get :index , :id = > 'ecookbook'
get :index , :project_ id = > 'ecookbook'
assert_response :success
assert_response :success
assert_template 'show'
assert_template 'show'
assert_tag :tag = > 'h1' , :content = > / CookBook documentation /
assert_tag :tag = > 'h1' , :content = > / CookBook documentation /
@ -45,7 +45,7 @@ class WikiControllerTest < ActionController::TestCase
end
end
def test_show_page_with_name
def test_show_page_with_name
get :index , :id = > 1 , :page = > 'Another_page'
get :index , :project_ id = > 1 , :page = > 'Another_page'
assert_response :success
assert_response :success
assert_template 'show'
assert_template 'show'
assert_tag :tag = > 'h1' , :content = > / Another page /
assert_tag :tag = > 'h1' , :content = > / Another page /
@ -60,32 +60,32 @@ class WikiControllerTest < ActionController::TestCase
page . content = WikiContent . new ( :text = > 'Side bar content for test_show_with_sidebar' )
page . content = WikiContent . new ( :text = > 'Side bar content for test_show_with_sidebar' )
page . save!
page . save!
get :index , :id = > 1 , :page = > 'Another_page'
get :index , :project_ id = > 1 , :page = > 'Another_page'
assert_response :success
assert_response :success
assert_tag :tag = > 'div' , :attributes = > { :id = > 'sidebar' } ,
assert_tag :tag = > 'div' , :attributes = > { :id = > 'sidebar' } ,
:content = > / Side bar content for test_show_with_sidebar /
:content = > / Side bar content for test_show_with_sidebar /
end
end
def test_show_unexistent_page_without_edit_right
def test_show_unexistent_page_without_edit_right
get :index , :id = > 1 , :page = > 'Unexistent page'
get :index , :project_ id = > 1 , :page = > 'Unexistent page'
assert_response 404
assert_response 404
end
end
def test_show_unexistent_page_with_edit_right
def test_show_unexistent_page_with_edit_right
@request . session [ :user_id ] = 2
@request . session [ :user_id ] = 2
get :index , :id = > 1 , :page = > 'Unexistent page'
get :index , :project_ id = > 1 , :page = > 'Unexistent page'
assert_response :success
assert_response :success
assert_template 'edit'
assert_template 'edit'
end
end
def test_create_page
def test_create_page
@request . session [ :user_id ] = 2
@request . session [ :user_id ] = 2
post :edit , :id = > 1 ,
post :edit , :project_ id = > 1 ,
:page = > 'New page' ,
:page = > 'New page' ,
:content = > { :comments = > 'Created the page' ,
:content = > { :comments = > 'Created the page' ,
:text = > " h1. New page \n \n This is a new page " ,
:text = > " h1. New page \n \n This is a new page " ,
:version = > 0 }
:version = > 0 }
assert_redirected_to :action = > 'index' , :id = > 'ecookbook' , :page = > 'New_page'
assert_redirected_to :action = > 'index' , :project_ id = > 'ecookbook' , :page = > 'New_page'
page = Project . find ( 1 ) . wiki . find_page ( 'New page' )
page = Project . find ( 1 ) . wiki . find_page ( 'New page' )
assert ! page . new_record?
assert ! page . new_record?
assert_not_nil page . content
assert_not_nil page . content
@ -96,7 +96,7 @@ class WikiControllerTest < ActionController::TestCase
@request . session [ :user_id ] = 2
@request . session [ :user_id ] = 2
assert_difference 'WikiPage.count' do
assert_difference 'WikiPage.count' do
assert_difference 'Attachment.count' do
assert_difference 'Attachment.count' do
post :edit , :id = > 1 ,
post :edit , :project_ id = > 1 ,
:page = > 'New page' ,
:page = > 'New page' ,
:content = > { :comments = > 'Created the page' ,
:content = > { :comments = > 'Created the page' ,
:text = > " h1. New page \n \n This is a new page " ,
:text = > " h1. New page \n \n This is a new page " ,
@ -111,7 +111,7 @@ class WikiControllerTest < ActionController::TestCase
def test_preview
def test_preview
@request . session [ :user_id ] = 2
@request . session [ :user_id ] = 2
xhr :post , :preview , :id = > 1 , :page = > 'CookBook_documentation' ,
xhr :post , :preview , :project_ id = > 1 , :page = > 'CookBook_documentation' ,
:content = > { :comments = > '' ,
:content = > { :comments = > '' ,
:text = > 'this is a *previewed text*' ,
:text = > 'this is a *previewed text*' ,
:version = > 3 }
:version = > 3 }
@ -122,7 +122,7 @@ class WikiControllerTest < ActionController::TestCase
def test_preview_new_page
def test_preview_new_page
@request . session [ :user_id ] = 2
@request . session [ :user_id ] = 2
xhr :post , :preview , :id = > 1 , :page = > 'New page' ,
xhr :post , :preview , :project_ id = > 1 , :page = > 'New page' ,
:content = > { :text = > 'h1. New page' ,
:content = > { :text = > 'h1. New page' ,
:comments = > '' ,
:comments = > '' ,
:version = > 0 }
:version = > 0 }
@ -132,7 +132,7 @@ class WikiControllerTest < ActionController::TestCase
end
end
def test_history
def test_history
get :history , :id = > 1 , :page = > 'CookBook_documentation'
get :history , :project_ id = > 1 , :page = > 'CookBook_documentation'
assert_response :success
assert_response :success
assert_template 'history'
assert_template 'history'
assert_not_nil assigns ( :versions )
assert_not_nil assigns ( :versions )
@ -141,7 +141,7 @@ class WikiControllerTest < ActionController::TestCase
end
end
def test_history_with_one_version
def test_history_with_one_version
get :history , :id = > 1 , :page = > 'Another_page'
get :history , :project_ id = > 1 , :page = > 'Another_page'
assert_response :success
assert_response :success
assert_template 'history'
assert_template 'history'
assert_not_nil assigns ( :versions )
assert_not_nil assigns ( :versions )
@ -150,7 +150,7 @@ class WikiControllerTest < ActionController::TestCase
end
end
def test_diff
def test_diff
get :diff , :id = > 1 , :page = > 'CookBook_documentation' , :version = > 2 , :version_from = > 1
get :diff , :project_ id = > 1 , :page = > 'CookBook_documentation' , :version = > 2 , :version_from = > 1
assert_response :success
assert_response :success
assert_template 'diff'
assert_template 'diff'
assert_tag :tag = > 'span' , :attributes = > { :class = > 'diff_in' } ,
assert_tag :tag = > 'span' , :attributes = > { :class = > 'diff_in' } ,
@ -158,7 +158,7 @@ class WikiControllerTest < ActionController::TestCase
end
end
def test_annotate
def test_annotate
get :annotate , :id = > 1 , :page = > 'CookBook_documentation' , :version = > 2
get :annotate , :project_ id = > 1 , :page = > 'CookBook_documentation' , :version = > 2
assert_response :success
assert_response :success
assert_template 'annotate'
assert_template 'annotate'
# Line 1
# Line 1
@ -173,10 +173,10 @@ class WikiControllerTest < ActionController::TestCase
def test_rename_with_redirect
def test_rename_with_redirect
@request . session [ :user_id ] = 2
@request . session [ :user_id ] = 2
post :rename , :id = > 1 , :page = > 'Another_page' ,
post :rename , :project_ id = > 1 , :page = > 'Another_page' ,
:wiki_page = > { :title = > 'Another renamed page' ,
:wiki_page = > { :title = > 'Another renamed page' ,
:redirect_existing_links = > 1 }
:redirect_existing_links = > 1 }
assert_redirected_to :action = > 'index' , :id = > 'ecookbook' , :page = > 'Another_renamed_page'
assert_redirected_to :action = > 'index' , :project_ id = > 'ecookbook' , :page = > 'Another_renamed_page'
wiki = Project . find ( 1 ) . wiki
wiki = Project . find ( 1 ) . wiki
# Check redirects
# Check redirects
assert_not_nil wiki . find_page ( 'Another page' )
assert_not_nil wiki . find_page ( 'Another page' )
@ -185,10 +185,10 @@ class WikiControllerTest < ActionController::TestCase
def test_rename_without_redirect
def test_rename_without_redirect
@request . session [ :user_id ] = 2
@request . session [ :user_id ] = 2
post :rename , :id = > 1 , :page = > 'Another_page' ,
post :rename , :project_ id = > 1 , :page = > 'Another_page' ,
:wiki_page = > { :title = > 'Another renamed page' ,
:wiki_page = > { :title = > 'Another renamed page' ,
:redirect_existing_links = > " 0 " }
:redirect_existing_links = > " 0 " }
assert_redirected_to :action = > 'index' , :id = > 'ecookbook' , :page = > 'Another_renamed_page'
assert_redirected_to :action = > 'index' , :project_ id = > 'ecookbook' , :page = > 'Another_renamed_page'
wiki = Project . find ( 1 ) . wiki
wiki = Project . find ( 1 ) . wiki
# Check that there's no redirects
# Check that there's no redirects
assert_nil wiki . find_page ( 'Another page' )
assert_nil wiki . find_page ( 'Another page' )
@ -196,14 +196,14 @@ class WikiControllerTest < ActionController::TestCase
def test_destroy_child
def test_destroy_child
@request . session [ :user_id ] = 2
@request . session [ :user_id ] = 2
post :destroy , :id = > 1 , :page = > 'Child_1'
post :destroy , :project_ id = > 1 , :page = > 'Child_1'
assert_redirected_to :action = > 'page_index' , :id = > 'ecookbook'
assert_redirected_to :action = > 'page_index' , :project_ id = > 'ecookbook'
end
end
def test_destroy_parent
def test_destroy_parent
@request . session [ :user_id ] = 2
@request . session [ :user_id ] = 2
assert_no_difference ( 'WikiPage.count' ) do
assert_no_difference ( 'WikiPage.count' ) do
post :destroy , :id = > 1 , :page = > 'Another_page'
post :destroy , :project_ id = > 1 , :page = > 'Another_page'
end
end
assert_response :success
assert_response :success
assert_template 'destroy'
assert_template 'destroy'
@ -212,18 +212,18 @@ class WikiControllerTest < ActionController::TestCase
def test_destroy_parent_with_nullify
def test_destroy_parent_with_nullify
@request . session [ :user_id ] = 2
@request . session [ :user_id ] = 2
assert_difference ( 'WikiPage.count' , - 1 ) do
assert_difference ( 'WikiPage.count' , - 1 ) do
post :destroy , :id = > 1 , :page = > 'Another_page' , :todo = > 'nullify'
post :destroy , :project_ id = > 1 , :page = > 'Another_page' , :todo = > 'nullify'
end
end
assert_redirected_to :action = > 'page_index' , :id = > 'ecookbook'
assert_redirected_to :action = > 'page_index' , :project_ id = > 'ecookbook'
assert_nil WikiPage . find_by_id ( 2 )
assert_nil WikiPage . find_by_id ( 2 )
end
end
def test_destroy_parent_with_cascade
def test_destroy_parent_with_cascade
@request . session [ :user_id ] = 2
@request . session [ :user_id ] = 2
assert_difference ( 'WikiPage.count' , - 3 ) do
assert_difference ( 'WikiPage.count' , - 3 ) do
post :destroy , :id = > 1 , :page = > 'Another_page' , :todo = > 'destroy'
post :destroy , :project_ id = > 1 , :page = > 'Another_page' , :todo = > 'destroy'
end
end
assert_redirected_to :action = > 'page_index' , :id = > 'ecookbook'
assert_redirected_to :action = > 'page_index' , :project_ id = > 'ecookbook'
assert_nil WikiPage . find_by_id ( 2 )
assert_nil WikiPage . find_by_id ( 2 )
assert_nil WikiPage . find_by_id ( 5 )
assert_nil WikiPage . find_by_id ( 5 )
end
end
@ -231,15 +231,15 @@ class WikiControllerTest < ActionController::TestCase
def test_destroy_parent_with_reassign
def test_destroy_parent_with_reassign
@request . session [ :user_id ] = 2
@request . session [ :user_id ] = 2
assert_difference ( 'WikiPage.count' , - 1 ) do
assert_difference ( 'WikiPage.count' , - 1 ) do
post :destroy , :id = > 1 , :page = > 'Another_page' , :todo = > 'reassign' , :reassign_to_id = > 1
post :destroy , :project_ id = > 1 , :page = > 'Another_page' , :todo = > 'reassign' , :reassign_to_id = > 1
end
end
assert_redirected_to :action = > 'page_index' , :id = > 'ecookbook'
assert_redirected_to :action = > 'page_index' , :project_ id = > 'ecookbook'
assert_nil WikiPage . find_by_id ( 2 )
assert_nil WikiPage . find_by_id ( 2 )
assert_equal WikiPage . find ( 1 ) , WikiPage . find_by_id ( 5 ) . parent
assert_equal WikiPage . find ( 1 ) , WikiPage . find_by_id ( 5 ) . parent
end
end
def test_page_index
def test_page_index
get :page_index , :id = > 'ecookbook'
get :page_index , :project_ id = > 'ecookbook'
assert_response :success
assert_response :success
assert_template 'page_index'
assert_template 'page_index'
pages = assigns ( :pages )
pages = assigns ( :pages )
@ -261,7 +261,7 @@ class WikiControllerTest < ActionController::TestCase
context " with an authorized user to export the wiki " do
context " with an authorized user to export the wiki " do
setup do
setup do
@request . session [ :user_id ] = 2
@request . session [ :user_id ] = 2
get :export , :id = > 'ecookbook'
get :export , :project_ id = > 'ecookbook'
end
end
should_respond_with :success
should_respond_with :success
@ -277,17 +277,17 @@ class WikiControllerTest < ActionController::TestCase
context " with an unauthorized user " do
context " with an unauthorized user " do
setup do
setup do
get :export , :id = > 'ecookbook'
get :export , :project_ id = > 'ecookbook'
should_respond_with :redirect
should_respond_with :redirect
should_redirect_to ( 'wiki index' ) { { :action = > 'index' , :id = > @project , :page = > nil } }
should_redirect_to ( 'wiki index' ) { { :action = > 'index' , :project_ id = > @project , :page = > nil } }
end
end
end
end
end
end
context " GET :date_index " do
context " GET :date_index " do
setup do
setup do
get :date_index , :id = > 'ecookbook'
get :date_index , :project_ id = > 'ecookbook'
end
end
should_respond_with :success
should_respond_with :success
@ -298,7 +298,7 @@ class WikiControllerTest < ActionController::TestCase
end
end
def test_not_found
def test_not_found
get :index , :id = > 999
get :index , :project_ id = > 999
assert_response 404
assert_response 404
end
end
@ -306,8 +306,8 @@ class WikiControllerTest < ActionController::TestCase
page = WikiPage . find_by_wiki_id_and_title ( 1 , 'Another_page' )
page = WikiPage . find_by_wiki_id_and_title ( 1 , 'Another_page' )
assert ! page . protected?
assert ! page . protected?
@request . session [ :user_id ] = 2
@request . session [ :user_id ] = 2
post :protect , :id = > 1 , :page = > page . title , :protected = > '1'
post :protect , :project_ id = > 1 , :page = > page . title , :protected = > '1'
assert_redirected_to :action = > 'index' , :id = > 'ecookbook' , :page = > 'Another_page'
assert_redirected_to :action = > 'index' , :project_ id = > 'ecookbook' , :page = > 'Another_page'
assert page . reload . protected?
assert page . reload . protected?
end
end
@ -315,14 +315,14 @@ class WikiControllerTest < ActionController::TestCase
page = WikiPage . find_by_wiki_id_and_title ( 1 , 'CookBook_documentation' )
page = WikiPage . find_by_wiki_id_and_title ( 1 , 'CookBook_documentation' )
assert page . protected?
assert page . protected?
@request . session [ :user_id ] = 2
@request . session [ :user_id ] = 2
post :protect , :id = > 1 , :page = > page . title , :protected = > '0'
post :protect , :project_ id = > 1 , :page = > page . title , :protected = > '0'
assert_redirected_to :action = > 'index' , :id = > 'ecookbook' , :page = > 'CookBook_documentation'
assert_redirected_to :action = > 'index' , :project_ id = > 'ecookbook' , :page = > 'CookBook_documentation'
assert ! page . reload . protected?
assert ! page . reload . protected?
end
end
def test_show_page_with_edit_link
def test_show_page_with_edit_link
@request . session [ :user_id ] = 2
@request . session [ :user_id ] = 2
get :index , :id = > 1
get :index , :project_ id = > 1
assert_response :success
assert_response :success
assert_template 'show'
assert_template 'show'
assert_tag :tag = > 'a' , :attributes = > { :href = > '/projects/1/wiki/CookBook_documentation/edit' }
assert_tag :tag = > 'a' , :attributes = > { :href = > '/projects/1/wiki/CookBook_documentation/edit' }
@ -330,7 +330,7 @@ class WikiControllerTest < ActionController::TestCase
def test_show_page_without_edit_link
def test_show_page_without_edit_link
@request . session [ :user_id ] = 4
@request . session [ :user_id ] = 4
get :index , :id = > 1
get :index , :project_ id = > 1
assert_response :success
assert_response :success
assert_template 'show'
assert_template 'show'
assert_no_tag :tag = > 'a' , :attributes = > { :href = > '/projects/1/wiki/CookBook_documentation/edit' }
assert_no_tag :tag = > 'a' , :attributes = > { :href = > '/projects/1/wiki/CookBook_documentation/edit' }
@ -339,7 +339,7 @@ class WikiControllerTest < ActionController::TestCase
def test_edit_unprotected_page
def test_edit_unprotected_page
# Non members can edit unprotected wiki pages
# Non members can edit unprotected wiki pages
@request . session [ :user_id ] = 4
@request . session [ :user_id ] = 4
get :edit , :id = > 1 , :page = > 'Another_page'
get :edit , :project_ id = > 1 , :page = > 'Another_page'
assert_response :success
assert_response :success
assert_template 'edit'
assert_template 'edit'
end
end
@ -347,19 +347,19 @@ class WikiControllerTest < ActionController::TestCase
def test_edit_protected_page_by_nonmember
def test_edit_protected_page_by_nonmember
# Non members can't edit protected wiki pages
# Non members can't edit protected wiki pages
@request . session [ :user_id ] = 4
@request . session [ :user_id ] = 4
get :edit , :id = > 1 , :page = > 'CookBook_documentation'
get :edit , :project_ id = > 1 , :page = > 'CookBook_documentation'
assert_response 403
assert_response 403
end
end
def test_edit_protected_page_by_member
def test_edit_protected_page_by_member
@request . session [ :user_id ] = 2
@request . session [ :user_id ] = 2
get :edit , :id = > 1 , :page = > 'CookBook_documentation'
get :edit , :project_ id = > 1 , :page = > 'CookBook_documentation'
assert_response :success
assert_response :success
assert_template 'edit'
assert_template 'edit'
end
end
def test_history_of_non_existing_page_should_return_404
def test_history_of_non_existing_page_should_return_404
get :history , :id = > 1 , :page = > 'Unknown_page'
get :history , :project_ id = > 1 , :page = > 'Unknown_page'
assert_response 404
assert_response 404
end
end
end
end