| 
									
										
										
										
											2011-03-12 18:09:46 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							| 
									
										
										
										
											2014-01-29 22:45:39 +00:00
										 |  |  | # Copyright (C) 2006-2014  Jean-Philippe Lang | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # This program is free software; you can redistribute it and/or | 
					
						
							|  |  |  | # modify it under the terms of the GNU General Public License | 
					
						
							|  |  |  | # as published by the Free Software Foundation; either version 2 | 
					
						
							|  |  |  | # of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  | # 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. | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  | # 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. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-12 23:24:34 +00:00
										 |  |  | require File.expand_path('../../test_helper', __FILE__) | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-13 17:14:35 +00:00
										 |  |  | class WikiControllerTest < ActionController::TestCase | 
					
						
							| 
									
										
										
										
											2011-11-06 09:17:10 +00:00
										 |  |  |   fixtures :projects, :users, :roles, :members, :member_roles, | 
					
						
							|  |  |  |            :enabled_modules, :wikis, :wiki_pages, :wiki_contents, | 
					
						
							| 
									
										
											  
											
												add missing fixtures to test/functional/wiki_controller_test.rb
Tests fail randomly.
<pre>
  1) Error:
WikiControllerTest#test_show_with_sidebar:
ActionView::Template::Error: undefined method `name' for nil:NilClass
    app/helpers/application_helper.rb:797:in `block in parse_redmine_links'
    app/helpers/application_helper.rb:757:in `gsub!'
    app/helpers/application_helper.rb:757:in `parse_redmine_links'
    app/helpers/application_helper.rb:601:in `block (2 levels) in textilizable'
    app/helpers/application_helper.rb:600:in `each'
    app/helpers/application_helper.rb:600:in `block in textilizable'
    app/helpers/application_helper.rb:621:in `parse_non_pre_blocks'
    app/helpers/application_helper.rb:599:in `textilizable'
    app/views/wiki/_content.html.erb:2:in `_app_views_wiki__content_html_erb___3773333740575742579_33736820'
    app/views/wiki/show.html.erb:44:in `_app_views_wiki_show_html_erb__965327089377623997_33504680'
    app/controllers/wiki_controller.rb:97:in `show'
    test/functional/wiki_controller_test.rb:119:in `test_show_with_sidebar'
</pre>
It can be reproduced by following change.
<pre>
 class WikiControllerTest < ActionController::TestCase
   fixtures :projects, :users, :roles, :members, :member_roles,
            :enabled_modules, :wikis, :wiki_pages, :wiki_contents,
-           :wiki_content_versions, :attachments
+           :wiki_content_versions, :attachments,
+           :issues #, :issue_statuses
</pre>
git-svn-id: http://svn.redmine.org/redmine/trunk@13590 e93f8b46-1217-0410-a6f0-8f06a7374b81
											
										 
											2014-11-12 03:44:47 +00:00
										 |  |  |            :wiki_content_versions, :attachments, | 
					
						
							|  |  |  |            :issues, :issue_statuses | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |   def setup | 
					
						
							|  |  |  |     User.current = nil | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |   def test_show_start_page | 
					
						
							| 
									
										
										
										
											2010-10-21 16:07:28 +00:00
										 |  |  |     get :show, :project_id => 'ecookbook' | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'show' | 
					
						
							|  |  |  |     assert_tag :tag => 'h1', :content => /CookBook documentation/ | 
					
						
							| 
									
										
										
										
											2008-07-26 12:54:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # child_pages macro | 
					
						
							|  |  |  |     assert_tag :ul, :attributes => { :class => 'pages-hierarchy' }, | 
					
						
							|  |  |  |                :child => { :tag => 'li', | 
					
						
							| 
									
										
										
										
											2009-01-26 01:47:51 +00:00
										 |  |  |                            :child => { :tag => 'a', :attributes => { :href => '/projects/ecookbook/wiki/Page_with_an_inline_image' }, | 
					
						
							| 
									
										
										
										
											2008-07-26 12:54:54 +00:00
										 |  |  |                                                     :content => 'Page with an inline image' } } | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-11-28 20:04:38 +00:00
										 |  |  |    | 
					
						
							|  |  |  |   def test_export_link | 
					
						
							|  |  |  |     Role.anonymous.add_permission! :export_wiki_pages | 
					
						
							|  |  |  |     get :show, :project_id => 'ecookbook' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_tag 'a', :attributes => {:href => '/projects/ecookbook/wiki/CookBook_documentation.txt'} | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |   def test_show_page_with_name | 
					
						
							| 
									
										
										
										
											2010-10-27 16:27:06 +00:00
										 |  |  |     get :show, :project_id => 1, :id => 'Another_page' | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'show' | 
					
						
							|  |  |  |     assert_tag :tag => 'h1', :content => /Another page/ | 
					
						
							| 
									
										
										
										
											2008-04-05 17:39:19 +00:00
										 |  |  |     # Included page with an inline image | 
					
						
							|  |  |  |     assert_tag :tag => 'p', :content => /This is an inline image/ | 
					
						
							| 
									
										
										
										
											2013-01-14 22:43:26 +00:00
										 |  |  |     assert_tag :tag => 'img', :attributes => { :src => '/attachments/download/3/logo.gif', | 
					
						
							| 
									
										
										
										
											2008-04-05 18:56:08 +00:00
										 |  |  |                                                :alt => 'This is a logo' } | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-21 18:46:26 +00:00
										 |  |  |   def test_show_old_version | 
					
						
							| 
									
										
										
										
											2014-10-22 17:37:16 +00:00
										 |  |  |     with_settings :default_language => 'en' do | 
					
						
							|  |  |  |       get :show, :project_id => 'ecookbook', :id => 'CookBook_documentation', :version => '2' | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2012-10-21 18:46:26 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'show' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_select 'a[href=?]', '/projects/ecookbook/wiki/CookBook_documentation/1', :text => /Previous/ | 
					
						
							|  |  |  |     assert_select 'a[href=?]', '/projects/ecookbook/wiki/CookBook_documentation/2/diff', :text => /diff/ | 
					
						
							|  |  |  |     assert_select 'a[href=?]', '/projects/ecookbook/wiki/CookBook_documentation/3', :text => /Next/ | 
					
						
							|  |  |  |     assert_select 'a[href=?]', '/projects/ecookbook/wiki/CookBook_documentation', :text => /Current version/ | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-10 21:38:11 +00:00
										 |  |  |   def test_show_old_version_with_attachments | 
					
						
							|  |  |  |     page = WikiPage.find(4) | 
					
						
							|  |  |  |     assert page.attachments.any? | 
					
						
							|  |  |  |     content = page.content | 
					
						
							|  |  |  |     content.text = "update" | 
					
						
							|  |  |  |     content.save! | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     get :show, :project_id => 'ecookbook', :id => page.title, :version => '1' | 
					
						
							|  |  |  |     assert_kind_of WikiContent::Version, assigns(:content) | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'show' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-25 19:44:04 +00:00
										 |  |  |   def test_show_old_version_without_permission_should_be_denied | 
					
						
							|  |  |  |     Role.anonymous.remove_permission! :view_wiki_edits | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     get :show, :project_id => 'ecookbook', :id => 'CookBook_documentation', :version => '2' | 
					
						
							|  |  |  |     assert_redirected_to '/login?back_url=http%3A%2F%2Ftest.host%2Fprojects%2Fecookbook%2Fwiki%2FCookBook_documentation%2F2' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-21 18:46:26 +00:00
										 |  |  |   def test_show_first_version | 
					
						
							| 
									
										
										
										
											2014-10-22 17:37:16 +00:00
										 |  |  |     with_settings :default_language => 'en' do | 
					
						
							|  |  |  |       get :show, :project_id => 'ecookbook', :id => 'CookBook_documentation', :version => '1' | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2012-10-21 18:46:26 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'show' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_select 'a', :text => /Previous/, :count => 0
 | 
					
						
							|  |  |  |     assert_select 'a', :text => /diff/, :count => 0
 | 
					
						
							|  |  |  |     assert_select 'a[href=?]', '/projects/ecookbook/wiki/CookBook_documentation/2', :text => /Next/ | 
					
						
							|  |  |  |     assert_select 'a[href=?]', '/projects/ecookbook/wiki/CookBook_documentation', :text => /Current version/ | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-11 19:21:57 +00:00
										 |  |  |   def test_show_redirected_page | 
					
						
							|  |  |  |     WikiRedirect.create!(:wiki_id => 1, :title => 'Old_title', :redirects_to => 'Another_page') | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-11 19:21:57 +00:00
										 |  |  |     get :show, :project_id => 'ecookbook', :id => 'Old_title' | 
					
						
							|  |  |  |     assert_redirected_to '/projects/ecookbook/wiki/Another_page' | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-11 12:56:18 +00:00
										 |  |  |   def test_show_with_sidebar | 
					
						
							|  |  |  |     page = Project.find(1).wiki.pages.new(:title => 'Sidebar') | 
					
						
							|  |  |  |     page.content = WikiContent.new(:text => 'Side bar content for test_show_with_sidebar') | 
					
						
							|  |  |  |     page.save! | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-27 16:27:06 +00:00
										 |  |  |     get :show, :project_id => 1, :id => 'Another_page' | 
					
						
							| 
									
										
										
										
											2010-04-11 12:56:18 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_tag :tag => 'div', :attributes => {:id => 'sidebar'}, | 
					
						
							|  |  |  |                               :content => /Side bar content for test_show_with_sidebar/ | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-11-18 18:22:41 +00:00
										 |  |  |    | 
					
						
							|  |  |  |   def test_show_should_display_section_edit_links | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :show, :project_id => 1, :id => 'Page with sections' | 
					
						
							|  |  |  |     assert_no_tag 'a', :attributes => { | 
					
						
							|  |  |  |       :href => '/projects/ecookbook/wiki/Page_with_sections/edit?section=1' | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     assert_tag 'a', :attributes => { | 
					
						
							|  |  |  |       :href => '/projects/ecookbook/wiki/Page_with_sections/edit?section=2' | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     assert_tag 'a', :attributes => { | 
					
						
							|  |  |  |       :href => '/projects/ecookbook/wiki/Page_with_sections/edit?section=3' | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-28 18:11:30 +00:00
										 |  |  |   def test_show_current_version_should_display_section_edit_links | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :show, :project_id => 1, :id => 'Page with sections', :version => 3
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_tag 'a', :attributes => { | 
					
						
							|  |  |  |       :href => '/projects/ecookbook/wiki/Page_with_sections/edit?section=2' | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_show_old_version_should_not_display_section_edit_links | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :show, :project_id => 1, :id => 'Page with sections', :version => 2
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_no_tag 'a', :attributes => { | 
					
						
							|  |  |  |       :href => '/projects/ecookbook/wiki/Page_with_sections/edit?section=2' | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-17 11:44:04 +00:00
										 |  |  |   def test_show_unexistent_page_without_edit_right | 
					
						
							|  |  |  |     get :show, :project_id => 1, :id => 'Unexistent page' | 
					
						
							|  |  |  |     assert_response 404
 | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |   def test_show_unexistent_page_with_edit_right | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2010-10-27 16:27:06 +00:00
										 |  |  |     get :show, :project_id => 1, :id => 'Unexistent page' | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'edit' | 
					
						
							| 
									
										
										
										
											2011-12-17 11:44:04 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-15 11:41:24 +00:00
										 |  |  |   def test_show_specific_version_of_an_unexistent_page_without_edit_right | 
					
						
							|  |  |  |     get :show, :project_id => 1, :id => 'Unexistent page', :version => 1
 | 
					
						
							|  |  |  |     assert_response 404
 | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-05 14:35:27 +00:00
										 |  |  |   def test_show_unexistent_page_with_parent_should_preselect_parent | 
					
						
							| 
									
										
										
										
											2011-12-17 11:44:04 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :show, :project_id => 1, :id => 'Unexistent page', :parent => 'Another_page' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'edit' | 
					
						
							| 
									
										
										
										
											2012-02-05 14:35:27 +00:00
										 |  |  |     assert_tag 'select', :attributes => {:name => 'wiki_page[parent_id]'}, | 
					
						
							|  |  |  |       :child => {:tag => 'option', :attributes => {:value => '2', :selected => 'selected'}} | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-03 20:30:50 +00:00
										 |  |  |   def test_show_should_not_show_history_without_permission | 
					
						
							|  |  |  |     Role.anonymous.remove_permission! :view_wiki_edits | 
					
						
							|  |  |  |     get :show, :project_id => 1, :id => 'Page with sections', :version => 2
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_response 302
 | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-13 11:19:47 +00:00
										 |  |  |   def test_show_page_without_content_should_display_the_edit_form | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     WikiPage.create!(:title => 'NoContent', :wiki => Project.find(1).wiki) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     get :show, :project_id => 1, :id => 'NoContent' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'edit' | 
					
						
							|  |  |  |     assert_select 'textarea[name=?]', 'content[text]' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |   def test_create_page | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2011-12-17 11:44:04 +00:00
										 |  |  |     assert_difference 'WikiPage.count' do | 
					
						
							|  |  |  |       assert_difference 'WikiContent.count' do | 
					
						
							|  |  |  |         put :update, :project_id => 1, | 
					
						
							|  |  |  |                     :id => 'New page', | 
					
						
							|  |  |  |                     :content => {:comments => 'Created the page', | 
					
						
							|  |  |  |                                  :text => "h1. New page\n\nThis is a new page", | 
					
						
							|  |  |  |                                  :version => 0} | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2010-10-27 16:27:06 +00:00
										 |  |  |     assert_redirected_to :action => 'show', :project_id => 'ecookbook', :id => 'New_page' | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |     page = Project.find(1).wiki.find_page('New page') | 
					
						
							|  |  |  |     assert !page.new_record? | 
					
						
							|  |  |  |     assert_not_nil page.content | 
					
						
							| 
									
										
										
										
											2011-12-17 11:44:04 +00:00
										 |  |  |     assert_nil page.parent | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |     assert_equal 'Created the page', page.content.comments | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-28 09:43:13 +00:00
										 |  |  |   def test_create_page_with_attachments | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert_difference 'WikiPage.count' do | 
					
						
							|  |  |  |       assert_difference 'Attachment.count' do | 
					
						
							| 
									
										
										
										
											2010-10-28 21:25:38 +00:00
										 |  |  |         put :update, :project_id => 1, | 
					
						
							| 
									
										
										
										
											2010-10-27 16:27:06 +00:00
										 |  |  |                     :id => 'New page', | 
					
						
							| 
									
										
										
										
											2010-02-28 09:43:13 +00:00
										 |  |  |                     :content => {:comments => 'Created the page', | 
					
						
							|  |  |  |                                  :text => "h1. New page\n\nThis is a new page", | 
					
						
							|  |  |  |                                  :version => 0}, | 
					
						
							|  |  |  |                     :attachments => {'1' => {'file' => uploaded_test_file('testfile.txt', 'text/plain')}} | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     page = Project.find(1).wiki.find_page('New page') | 
					
						
							|  |  |  |     assert_equal 1, page.attachments.count | 
					
						
							|  |  |  |     assert_equal 'testfile.txt', page.attachments.first.filename | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2010-11-27 10:34:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-17 11:44:04 +00:00
										 |  |  |   def test_create_page_with_parent | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert_difference 'WikiPage.count' do | 
					
						
							|  |  |  |       put :update, :project_id => 1, :id => 'New page', | 
					
						
							|  |  |  |         :content => {:text => "h1. New page\n\nThis is a new page", :version => 0}, | 
					
						
							| 
									
										
										
										
											2012-02-05 14:35:27 +00:00
										 |  |  |         :wiki_page => {:parent_id => 2} | 
					
						
							| 
									
										
										
										
											2011-12-17 11:44:04 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |     page = Project.find(1).wiki.find_page('New page') | 
					
						
							|  |  |  |     assert_equal WikiPage.find(2), page.parent | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-18 16:25:00 +00:00
										 |  |  |   def test_edit_page | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :edit, :project_id => 'ecookbook', :id => 'Another_page' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'edit' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_tag 'textarea', | 
					
						
							|  |  |  |       :attributes => { :name => 'content[text]' }, | 
					
						
							| 
									
										
										
										
											2012-04-25 17:17:49 +00:00
										 |  |  |       :content => "\n"+WikiPage.find_by_title('Another_page').content.text | 
					
						
							| 
									
										
										
										
											2011-11-18 16:25:00 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_edit_section | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :edit, :project_id => 'ecookbook', :id => 'Page_with_sections', :section => 2
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'edit' | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     page = WikiPage.find_by_title('Page_with_sections') | 
					
						
							|  |  |  |     section, hash = Redmine::WikiFormatting::Textile::Formatter.new(page.content.text).get_section(2) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_tag 'textarea', | 
					
						
							|  |  |  |       :attributes => { :name => 'content[text]' }, | 
					
						
							| 
									
										
										
										
											2012-04-25 17:17:49 +00:00
										 |  |  |       :content => "\n"+section | 
					
						
							| 
									
										
										
										
											2011-11-18 16:25:00 +00:00
										 |  |  |     assert_tag 'input', | 
					
						
							|  |  |  |       :attributes => { :name => 'section', :type => 'hidden', :value => '2' } | 
					
						
							|  |  |  |     assert_tag 'input', | 
					
						
							|  |  |  |       :attributes => { :name => 'section_hash', :type => 'hidden', :value => hash } | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_edit_invalid_section_should_respond_with_404 | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :edit, :project_id => 'ecookbook', :id => 'Page_with_sections', :section => 10
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_response 404
 | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-27 10:34:44 +00:00
										 |  |  |   def test_update_page | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert_no_difference 'WikiPage.count' do | 
					
						
							|  |  |  |       assert_no_difference 'WikiContent.count' do | 
					
						
							|  |  |  |         assert_difference 'WikiContent::Version.count' do | 
					
						
							|  |  |  |           put :update, :project_id => 1, | 
					
						
							|  |  |  |             :id => 'Another_page', | 
					
						
							|  |  |  |             :content => { | 
					
						
							|  |  |  |               :comments => "my comments", | 
					
						
							|  |  |  |               :text => "edited", | 
					
						
							|  |  |  |               :version => 1
 | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_redirected_to '/projects/ecookbook/wiki/Another_page' | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-27 10:34:44 +00:00
										 |  |  |     page = Wiki.find(1).pages.find_by_title('Another_page') | 
					
						
							|  |  |  |     assert_equal "edited", page.content.text | 
					
						
							|  |  |  |     assert_equal 2, page.content.version | 
					
						
							|  |  |  |     assert_equal "my comments", page.content.comments | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-05 14:35:27 +00:00
										 |  |  |   def test_update_page_with_parent | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert_no_difference 'WikiPage.count' do | 
					
						
							|  |  |  |       assert_no_difference 'WikiContent.count' do | 
					
						
							|  |  |  |         assert_difference 'WikiContent::Version.count' do | 
					
						
							|  |  |  |           put :update, :project_id => 1, | 
					
						
							|  |  |  |             :id => 'Another_page', | 
					
						
							|  |  |  |             :content => { | 
					
						
							|  |  |  |               :comments => "my comments", | 
					
						
							|  |  |  |               :text => "edited", | 
					
						
							|  |  |  |               :version => 1
 | 
					
						
							|  |  |  |             }, | 
					
						
							|  |  |  |             :wiki_page => {:parent_id => '1'} | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_redirected_to '/projects/ecookbook/wiki/Another_page' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     page = Wiki.find(1).pages.find_by_title('Another_page') | 
					
						
							|  |  |  |     assert_equal "edited", page.content.text | 
					
						
							|  |  |  |     assert_equal 2, page.content.version | 
					
						
							|  |  |  |     assert_equal "my comments", page.content.comments | 
					
						
							|  |  |  |     assert_equal WikiPage.find(1), page.parent | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-27 10:34:44 +00:00
										 |  |  |   def test_update_page_with_failure | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert_no_difference 'WikiPage.count' do | 
					
						
							|  |  |  |       assert_no_difference 'WikiContent.count' do | 
					
						
							|  |  |  |         assert_no_difference 'WikiContent::Version.count' do | 
					
						
							|  |  |  |           put :update, :project_id => 1, | 
					
						
							|  |  |  |             :id => 'Another_page', | 
					
						
							|  |  |  |             :content => { | 
					
						
							|  |  |  |               :comments => 'a' * 300,  # failure here, comment is too long | 
					
						
							|  |  |  |               :text => 'edited', | 
					
						
							|  |  |  |               :version => 1
 | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |           end | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'edit' | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-27 10:34:44 +00:00
										 |  |  |     assert_error_tag :descendant => {:content => /Comment is too long/} | 
					
						
							| 
									
										
										
										
											2012-04-25 17:17:49 +00:00
										 |  |  |     assert_tag :tag => 'textarea', :attributes => {:id => 'content_text'}, :content => "\nedited" | 
					
						
							| 
									
										
										
										
											2010-11-27 10:34:44 +00:00
										 |  |  |     assert_tag :tag => 'input', :attributes => {:id => 'content_version', :value => '1'} | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-05 14:35:27 +00:00
										 |  |  |   def test_update_page_with_parent_change_only_should_not_create_content_version | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert_no_difference 'WikiPage.count' do | 
					
						
							|  |  |  |       assert_no_difference 'WikiContent.count' do | 
					
						
							|  |  |  |         assert_no_difference 'WikiContent::Version.count' do | 
					
						
							|  |  |  |           put :update, :project_id => 1, | 
					
						
							|  |  |  |             :id => 'Another_page', | 
					
						
							|  |  |  |             :content => { | 
					
						
							|  |  |  |               :comments => '', | 
					
						
							|  |  |  |               :text => Wiki.find(1).find_page('Another_page').content.text, | 
					
						
							|  |  |  |               :version => 1
 | 
					
						
							|  |  |  |             }, | 
					
						
							|  |  |  |             :wiki_page => {:parent_id => '1'} | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     page = Wiki.find(1).pages.find_by_title('Another_page') | 
					
						
							|  |  |  |     assert_equal 1, page.content.version | 
					
						
							|  |  |  |     assert_equal WikiPage.find(1), page.parent | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-17 15:02:28 +00:00
										 |  |  |   def test_update_page_with_attachments_only_should_not_create_content_version | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert_no_difference 'WikiPage.count' do | 
					
						
							|  |  |  |       assert_no_difference 'WikiContent.count' do | 
					
						
							|  |  |  |         assert_no_difference 'WikiContent::Version.count' do | 
					
						
							|  |  |  |           assert_difference 'Attachment.count' do | 
					
						
							|  |  |  |             put :update, :project_id => 1, | 
					
						
							|  |  |  |               :id => 'Another_page', | 
					
						
							|  |  |  |               :content => { | 
					
						
							|  |  |  |                 :comments => '', | 
					
						
							|  |  |  |                 :text => Wiki.find(1).find_page('Another_page').content.text, | 
					
						
							|  |  |  |                 :version => 1
 | 
					
						
							|  |  |  |               }, | 
					
						
							|  |  |  |               :attachments => {'1' => {'file' => uploaded_test_file('testfile.txt', 'text/plain'), 'description' => 'test file'}} | 
					
						
							|  |  |  |           end | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2012-02-05 14:35:27 +00:00
										 |  |  |     page = Wiki.find(1).pages.find_by_title('Another_page') | 
					
						
							|  |  |  |     assert_equal 1, page.content.version | 
					
						
							| 
									
										
										
										
											2011-12-17 15:02:28 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-21 16:55:28 +00:00
										 |  |  |   def test_update_stale_page_should_not_raise_an_error | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     c = Wiki.find(1).find_page('Another_page').content | 
					
						
							|  |  |  |     c.text = 'Previous text' | 
					
						
							|  |  |  |     c.save! | 
					
						
							|  |  |  |     assert_equal 2, c.version | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-21 16:55:28 +00:00
										 |  |  |     assert_no_difference 'WikiPage.count' do | 
					
						
							|  |  |  |       assert_no_difference 'WikiContent.count' do | 
					
						
							|  |  |  |         assert_no_difference 'WikiContent::Version.count' do | 
					
						
							|  |  |  |           put :update, :project_id => 1, | 
					
						
							|  |  |  |             :id => 'Another_page', | 
					
						
							|  |  |  |             :content => { | 
					
						
							|  |  |  |               :comments => 'My comments', | 
					
						
							|  |  |  |               :text => 'Text should not be lost', | 
					
						
							|  |  |  |               :version => 1
 | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'edit' | 
					
						
							|  |  |  |     assert_tag :div, | 
					
						
							|  |  |  |       :attributes => { :class => /error/ }, | 
					
						
							|  |  |  |       :content => /Data has been updated by another user/ | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  |     assert_tag 'textarea', | 
					
						
							| 
									
										
										
										
											2011-03-21 16:55:28 +00:00
										 |  |  |       :attributes => { :name => 'content[text]' }, | 
					
						
							|  |  |  |       :content => /Text should not be lost/ | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  |     assert_tag 'input', | 
					
						
							| 
									
										
										
										
											2011-03-21 16:55:28 +00:00
										 |  |  |       :attributes => { :name => 'content[comments]', :value => 'My comments' } | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-21 16:55:28 +00:00
										 |  |  |     c.reload | 
					
						
							|  |  |  |     assert_equal 'Previous text', c.text | 
					
						
							|  |  |  |     assert_equal 2, c.version | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-13 11:19:47 +00:00
										 |  |  |   def test_update_page_without_content_should_create_content | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     page = WikiPage.create!(:title => 'NoContent', :wiki => Project.find(1).wiki) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_no_difference 'WikiPage.count' do | 
					
						
							|  |  |  |       assert_difference 'WikiContent.count' do | 
					
						
							|  |  |  |         put :update, :project_id => 1, :id => 'NoContent', :content => {:text => 'Some content'} | 
					
						
							|  |  |  |         assert_response 302
 | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_equal 'Some content', page.reload.content.text | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-18 16:25:00 +00:00
										 |  |  |   def test_update_section | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     page = WikiPage.find_by_title('Page_with_sections') | 
					
						
							|  |  |  |     section, hash = Redmine::WikiFormatting::Textile::Formatter.new(page.content.text).get_section(2) | 
					
						
							|  |  |  |     text = page.content.text | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_no_difference 'WikiPage.count' do | 
					
						
							|  |  |  |       assert_no_difference 'WikiContent.count' do | 
					
						
							|  |  |  |         assert_difference 'WikiContent::Version.count' do | 
					
						
							|  |  |  |           put :update, :project_id => 1, :id => 'Page_with_sections', | 
					
						
							|  |  |  |             :content => { | 
					
						
							|  |  |  |               :text => "New section content", | 
					
						
							|  |  |  |               :version => 3
 | 
					
						
							|  |  |  |             }, | 
					
						
							|  |  |  |             :section => 2, | 
					
						
							|  |  |  |             :section_hash => hash | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2013-10-26 09:03:08 +00:00
										 |  |  |     assert_redirected_to '/projects/ecookbook/wiki/Page_with_sections#section-2' | 
					
						
							| 
									
										
										
										
											2011-11-18 16:25:00 +00:00
										 |  |  |     assert_equal Redmine::WikiFormatting::Textile::Formatter.new(text).update_section(2, "New section content"), page.reload.content.text | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_update_section_should_allow_stale_page_update | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     page = WikiPage.find_by_title('Page_with_sections') | 
					
						
							|  |  |  |     section, hash = Redmine::WikiFormatting::Textile::Formatter.new(page.content.text).get_section(2) | 
					
						
							|  |  |  |     text = page.content.text | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_no_difference 'WikiPage.count' do | 
					
						
							|  |  |  |       assert_no_difference 'WikiContent.count' do | 
					
						
							|  |  |  |         assert_difference 'WikiContent::Version.count' do | 
					
						
							|  |  |  |           put :update, :project_id => 1, :id => 'Page_with_sections', | 
					
						
							|  |  |  |             :content => { | 
					
						
							|  |  |  |               :text => "New section content", | 
					
						
							|  |  |  |               :version => 2 # Current version is 3 | 
					
						
							|  |  |  |             }, | 
					
						
							|  |  |  |             :section => 2, | 
					
						
							|  |  |  |             :section_hash => hash | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2013-10-26 09:03:08 +00:00
										 |  |  |     assert_redirected_to '/projects/ecookbook/wiki/Page_with_sections#section-2' | 
					
						
							| 
									
										
										
										
											2011-11-18 16:25:00 +00:00
										 |  |  |     page.reload | 
					
						
							|  |  |  |     assert_equal Redmine::WikiFormatting::Textile::Formatter.new(text).update_section(2, "New section content"), page.content.text | 
					
						
							|  |  |  |     assert_equal 4, page.content.version | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_update_section_should_not_allow_stale_section_update | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_no_difference 'WikiPage.count' do | 
					
						
							|  |  |  |       assert_no_difference 'WikiContent.count' do | 
					
						
							|  |  |  |         assert_no_difference 'WikiContent::Version.count' do | 
					
						
							|  |  |  |           put :update, :project_id => 1, :id => 'Page_with_sections', | 
					
						
							|  |  |  |             :content => { | 
					
						
							|  |  |  |               :comments => 'My comments', | 
					
						
							|  |  |  |               :text => "Text should not be lost", | 
					
						
							|  |  |  |               :version => 3
 | 
					
						
							|  |  |  |             }, | 
					
						
							|  |  |  |             :section => 2, | 
					
						
							|  |  |  |             :section_hash => Digest::MD5.hexdigest("wrong hash") | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'edit' | 
					
						
							|  |  |  |     assert_tag :div, | 
					
						
							|  |  |  |       :attributes => { :class => /error/ }, | 
					
						
							|  |  |  |       :content => /Data has been updated by another user/ | 
					
						
							|  |  |  |     assert_tag 'textarea', | 
					
						
							|  |  |  |       :attributes => { :name => 'content[text]' }, | 
					
						
							|  |  |  |       :content => /Text should not be lost/ | 
					
						
							|  |  |  |     assert_tag 'input', | 
					
						
							|  |  |  |       :attributes => { :name => 'content[comments]', :value => 'My comments' } | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |   def test_preview | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2010-10-27 16:27:06 +00:00
										 |  |  |     xhr :post, :preview, :project_id => 1, :id => 'CookBook_documentation', | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |                                    :content => { :comments => '', | 
					
						
							|  |  |  |                                                  :text => 'this is a *previewed text*', | 
					
						
							|  |  |  |                                                  :version => 3 } | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'common/_preview' | 
					
						
							|  |  |  |     assert_tag :tag => 'strong', :content => /previewed text/ | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-23 16:29:40 +00:00
										 |  |  |   def test_preview_new_page | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2010-10-27 16:27:06 +00:00
										 |  |  |     xhr :post, :preview, :project_id => 1, :id => 'New page', | 
					
						
							| 
									
										
										
										
											2008-05-23 16:29:40 +00:00
										 |  |  |                                    :content => { :text => 'h1. New page', | 
					
						
							|  |  |  |                                                  :comments => '', | 
					
						
							|  |  |  |                                                  :version => 0 } | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'common/_preview' | 
					
						
							|  |  |  |     assert_tag :tag => 'h1', :content => /New page/ | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |   def test_history | 
					
						
							| 
									
										
										
										
											2012-10-23 18:45:14 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2012-10-21 18:46:26 +00:00
										 |  |  |     get :history, :project_id => 'ecookbook', :id => 'CookBook_documentation' | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'history' | 
					
						
							|  |  |  |     assert_not_nil assigns(:versions) | 
					
						
							|  |  |  |     assert_equal 3, assigns(:versions).size | 
					
						
							| 
									
										
										
										
											2012-10-21 18:46:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-20 05:09:13 +00:00
										 |  |  |     assert_select "input[type=submit][name=commit]" | 
					
						
							| 
									
										
										
										
											2012-10-21 18:46:26 +00:00
										 |  |  |     assert_select 'td' do | 
					
						
							|  |  |  |       assert_select 'a[href=?]', '/projects/ecookbook/wiki/CookBook_documentation/2', :text => '2' | 
					
						
							| 
									
										
										
										
											2012-10-23 18:45:14 +00:00
										 |  |  |       assert_select 'a[href=?]', '/projects/ecookbook/wiki/CookBook_documentation/2/annotate', :text => 'Annotate' | 
					
						
							|  |  |  |       assert_select 'a[href=?]', '/projects/ecookbook/wiki/CookBook_documentation/2', :text => 'Delete' | 
					
						
							| 
									
										
										
										
											2012-10-21 18:46:26 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2008-08-20 05:09:13 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   def test_history_with_one_version | 
					
						
							| 
									
										
										
										
											2012-10-23 18:45:14 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :history, :project_id => 'ecookbook', :id => 'Another_page' | 
					
						
							| 
									
										
										
										
											2008-08-20 05:09:13 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'history' | 
					
						
							|  |  |  |     assert_not_nil assigns(:versions) | 
					
						
							|  |  |  |     assert_equal 1, assigns(:versions).size | 
					
						
							|  |  |  |     assert_select "input[type=submit][name=commit]", false | 
					
						
							| 
									
										
										
										
											2012-10-23 18:45:14 +00:00
										 |  |  |     assert_select 'td' do | 
					
						
							|  |  |  |       assert_select 'a[href=?]', '/projects/ecookbook/wiki/Another_page/1', :text => '1' | 
					
						
							|  |  |  |       assert_select 'a[href=?]', '/projects/ecookbook/wiki/Another_page/1/annotate', :text => 'Annotate' | 
					
						
							|  |  |  |       assert_select 'a[href=?]', '/projects/ecookbook/wiki/Another_page/1', :text => 'Delete', :count => 0
 | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2008-08-20 05:09:13 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |   def test_diff | 
					
						
							| 
									
										
										
										
											2012-06-26 16:57:09 +00:00
										 |  |  |     content = WikiPage.find(1).content | 
					
						
							|  |  |  |     assert_difference 'WikiContent::Version.count', 2 do | 
					
						
							|  |  |  |       content.text = "Line removed\nThis is a sample text for testing diffs" | 
					
						
							|  |  |  |       content.save! | 
					
						
							|  |  |  |       content.text = "This is a sample text for testing diffs\nLine added" | 
					
						
							|  |  |  |       content.save! | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     get :diff, :project_id => 1, :id => 'CookBook_documentation', :version => content.version, :version_from => (content.version - 1) | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'diff' | 
					
						
							| 
									
										
										
										
											2012-06-26 16:57:09 +00:00
										 |  |  |     assert_select 'span.diff_out', :text => 'Line removed' | 
					
						
							|  |  |  |     assert_select 'span.diff_in', :text => 'Line added' | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-24 12:27:00 +00:00
										 |  |  |   def test_diff_with_invalid_version_should_respond_with_404 | 
					
						
							|  |  |  |     get :diff, :project_id => 1, :id => 'CookBook_documentation', :version => '99' | 
					
						
							|  |  |  |     assert_response 404
 | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_diff_with_invalid_version_from_should_respond_with_404 | 
					
						
							|  |  |  |     get :diff, :project_id => 1, :id => 'CookBook_documentation', :version => '99', :version_from => '98' | 
					
						
							|  |  |  |     assert_response 404
 | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-20 19:10:24 +00:00
										 |  |  |   def test_annotate | 
					
						
							| 
									
										
										
										
											2010-10-27 16:27:06 +00:00
										 |  |  |     get :annotate, :project_id => 1, :id =>  'CookBook_documentation', :version => 2
 | 
					
						
							| 
									
										
										
										
											2007-12-20 19:10:24 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'annotate' | 
					
						
							| 
									
										
										
										
											2011-08-24 03:51:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-20 19:10:24 +00:00
										 |  |  |     # Line 1 | 
					
						
							| 
									
										
										
										
											2011-07-09 12:01:08 +00:00
										 |  |  |     assert_tag :tag => 'tr', :child => { | 
					
						
							|  |  |  |       :tag => 'th', :attributes => {:class => 'line-num'}, :content => '1', :sibling => { | 
					
						
							|  |  |  |         :tag => 'td', :attributes => {:class => 'author'}, :content => /John Smith/, :sibling => { | 
					
						
							|  |  |  |           :tag => 'td', :content => /h1\. CookBook documentation/ | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-08-24 03:51:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-07-09 12:01:08 +00:00
										 |  |  |     # Line 5 | 
					
						
							|  |  |  |     assert_tag :tag => 'tr', :child => { | 
					
						
							|  |  |  |       :tag => 'th', :attributes => {:class => 'line-num'}, :content => '5', :sibling => { | 
					
						
							| 
									
										
										
										
											2013-01-23 18:09:03 +00:00
										 |  |  |         :tag => 'td', :attributes => {:class => 'author'}, :content => /Redmine Admin/, :sibling => { | 
					
						
							| 
									
										
										
										
											2011-07-09 12:01:08 +00:00
										 |  |  |           :tag => 'td', :content => /Some updated \[\[documentation\]\] here/ | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2007-12-20 19:10:24 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2010-11-06 14:30:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-24 12:27:00 +00:00
										 |  |  |   def test_annotate_with_invalid_version_should_respond_with_404 | 
					
						
							|  |  |  |     get :annotate, :project_id => 1, :id => 'CookBook_documentation', :version => '99' | 
					
						
							|  |  |  |     assert_response 404
 | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-06 14:30:32 +00:00
										 |  |  |   def test_get_rename | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :rename, :project_id => 1, :id => 'Another_page' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'rename' | 
					
						
							|  |  |  |     assert_tag 'option', | 
					
						
							|  |  |  |       :attributes => {:value => ''}, | 
					
						
							|  |  |  |       :content => '', | 
					
						
							|  |  |  |       :parent => {:tag => 'select', :attributes => {:name => 'wiki_page[parent_id]'}} | 
					
						
							|  |  |  |     assert_no_tag 'option', | 
					
						
							|  |  |  |       :attributes => {:selected => 'selected'}, | 
					
						
							|  |  |  |       :parent => {:tag => 'select', :attributes => {:name => 'wiki_page[parent_id]'}} | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-06 14:30:32 +00:00
										 |  |  |   def test_get_rename_child_page | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :rename, :project_id => 1, :id => 'Child_1' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'rename' | 
					
						
							|  |  |  |     assert_tag 'option', | 
					
						
							|  |  |  |       :attributes => {:value => ''}, | 
					
						
							|  |  |  |       :content => '', | 
					
						
							|  |  |  |       :parent => {:tag => 'select', :attributes => {:name => 'wiki_page[parent_id]'}} | 
					
						
							|  |  |  |     assert_tag 'option', | 
					
						
							|  |  |  |       :attributes => {:value => '2', :selected => 'selected'}, | 
					
						
							|  |  |  |       :content => /Another page/, | 
					
						
							|  |  |  |       :parent => { | 
					
						
							|  |  |  |         :tag => 'select', | 
					
						
							|  |  |  |         :attributes => {:name => 'wiki_page[parent_id]'} | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |   def test_rename_with_redirect | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2010-10-27 16:27:06 +00:00
										 |  |  |     post :rename, :project_id => 1, :id => 'Another_page', | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |                             :wiki_page => { :title => 'Another renamed page', | 
					
						
							|  |  |  |                                             :redirect_existing_links => 1 } | 
					
						
							| 
									
										
										
										
											2010-10-27 16:27:06 +00:00
										 |  |  |     assert_redirected_to :action => 'show', :project_id => 'ecookbook', :id => 'Another_renamed_page' | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |     wiki = Project.find(1).wiki | 
					
						
							|  |  |  |     # Check redirects | 
					
						
							|  |  |  |     assert_not_nil wiki.find_page('Another page') | 
					
						
							|  |  |  |     assert_nil wiki.find_page('Another page', :with_redirect => false) | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_rename_without_redirect | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2010-10-27 16:27:06 +00:00
										 |  |  |     post :rename, :project_id => 1, :id => 'Another_page', | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |                             :wiki_page => { :title => 'Another renamed page', | 
					
						
							|  |  |  |                                             :redirect_existing_links => "0" } | 
					
						
							| 
									
										
										
										
											2010-10-27 16:27:06 +00:00
										 |  |  |     assert_redirected_to :action => 'show', :project_id => 'ecookbook', :id => 'Another_renamed_page' | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |     wiki = Project.find(1).wiki | 
					
						
							|  |  |  |     # Check that there's no redirects | 
					
						
							|  |  |  |     assert_nil wiki.find_page('Another page') | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-11-06 14:30:32 +00:00
										 |  |  |   def test_rename_with_parent_assignment | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     post :rename, :project_id => 1, :id => 'Another_page', | 
					
						
							|  |  |  |       :wiki_page => { :title => 'Another page', :redirect_existing_links => "0", :parent_id => '4' } | 
					
						
							|  |  |  |     assert_redirected_to :action => 'show', :project_id => 'ecookbook', :id => 'Another_page' | 
					
						
							|  |  |  |     assert_equal WikiPage.find(4), WikiPage.find_by_title('Another_page').parent | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def test_rename_with_parent_unassignment | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     post :rename, :project_id => 1, :id => 'Child_1', | 
					
						
							|  |  |  |       :wiki_page => { :title => 'Child 1', :redirect_existing_links => "0", :parent_id => '' } | 
					
						
							|  |  |  |     assert_redirected_to :action => 'show', :project_id => 'ecookbook', :id => 'Child_1' | 
					
						
							|  |  |  |     assert_nil WikiPage.find_by_title('Child_1').parent | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-16 15:36:05 +00:00
										 |  |  |   def test_destroy_a_page_without_children_should_not_ask_confirmation | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2012-09-16 15:36:05 +00:00
										 |  |  |     delete :destroy, :project_id => 1, :id => 'Child_2' | 
					
						
							| 
									
										
										
										
											2010-10-25 16:16:46 +00:00
										 |  |  |     assert_redirected_to :action => 'index', :project_id => 'ecookbook' | 
					
						
							| 
									
										
										
										
											2009-01-26 01:47:51 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-16 15:36:05 +00:00
										 |  |  |   def test_destroy_parent_should_ask_confirmation | 
					
						
							| 
									
										
										
										
											2009-04-21 12:19:56 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert_no_difference('WikiPage.count') do | 
					
						
							| 
									
										
										
										
											2010-10-27 16:27:06 +00:00
										 |  |  |       delete :destroy, :project_id => 1, :id => 'Another_page' | 
					
						
							| 
									
										
										
										
											2009-04-21 12:19:56 +00:00
										 |  |  |     end | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'destroy' | 
					
						
							| 
									
										
										
										
											2012-09-16 15:39:11 +00:00
										 |  |  |     assert_select 'form' do | 
					
						
							|  |  |  |       assert_select 'input[name=todo][value=nullify]' | 
					
						
							|  |  |  |       assert_select 'input[name=todo][value=destroy]' | 
					
						
							|  |  |  |       assert_select 'input[name=todo][value=reassign]' | 
					
						
							|  |  |  |     end | 
					
						
							| 
									
										
										
										
											2009-04-21 12:19:56 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-16 15:36:05 +00:00
										 |  |  |   def test_destroy_parent_with_nullify_should_delete_parent_only | 
					
						
							| 
									
										
										
										
											2009-04-21 12:19:56 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert_difference('WikiPage.count', -1) do | 
					
						
							| 
									
										
										
										
											2010-10-27 16:27:06 +00:00
										 |  |  |       delete :destroy, :project_id => 1, :id => 'Another_page', :todo => 'nullify' | 
					
						
							| 
									
										
										
										
											2009-04-21 12:19:56 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2010-10-25 16:16:46 +00:00
										 |  |  |     assert_redirected_to :action => 'index', :project_id => 'ecookbook' | 
					
						
							| 
									
										
										
										
											2009-04-21 12:19:56 +00:00
										 |  |  |     assert_nil WikiPage.find_by_id(2) | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-16 15:36:05 +00:00
										 |  |  |   def test_destroy_parent_with_cascade_should_delete_descendants | 
					
						
							| 
									
										
										
										
											2009-04-21 12:19:56 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2012-09-16 15:36:05 +00:00
										 |  |  |     assert_difference('WikiPage.count', -4) do | 
					
						
							| 
									
										
										
										
											2010-10-27 16:27:06 +00:00
										 |  |  |       delete :destroy, :project_id => 1, :id => 'Another_page', :todo => 'destroy' | 
					
						
							| 
									
										
										
										
											2009-04-21 12:19:56 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2010-10-25 16:16:46 +00:00
										 |  |  |     assert_redirected_to :action => 'index', :project_id => 'ecookbook' | 
					
						
							| 
									
										
										
										
											2009-04-21 12:19:56 +00:00
										 |  |  |     assert_nil WikiPage.find_by_id(2) | 
					
						
							|  |  |  |     assert_nil WikiPage.find_by_id(5) | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-21 12:19:56 +00:00
										 |  |  |   def test_destroy_parent_with_reassign | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert_difference('WikiPage.count', -1) do | 
					
						
							| 
									
										
										
										
											2010-10-27 16:27:06 +00:00
										 |  |  |       delete :destroy, :project_id => 1, :id => 'Another_page', :todo => 'reassign', :reassign_to_id => 1
 | 
					
						
							| 
									
										
										
										
											2009-04-21 12:19:56 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2010-10-25 16:16:46 +00:00
										 |  |  |     assert_redirected_to :action => 'index', :project_id => 'ecookbook' | 
					
						
							| 
									
										
										
										
											2009-04-21 12:19:56 +00:00
										 |  |  |     assert_nil WikiPage.find_by_id(2) | 
					
						
							|  |  |  |     assert_equal WikiPage.find(1), WikiPage.find_by_id(5).parent | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-23 18:45:14 +00:00
										 |  |  |   def test_destroy_version | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert_difference 'WikiContent::Version.count', -1 do | 
					
						
							|  |  |  |       assert_no_difference 'WikiContent.count' do | 
					
						
							|  |  |  |         assert_no_difference 'WikiPage.count' do | 
					
						
							|  |  |  |           delete :destroy_version, :project_id => 'ecookbook', :id => 'CookBook_documentation', :version => 2
 | 
					
						
							|  |  |  |           assert_redirected_to '/projects/ecookbook/wiki/CookBook_documentation/history' | 
					
						
							|  |  |  |         end | 
					
						
							|  |  |  |       end | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-10-25 16:16:46 +00:00
										 |  |  |   def test_index | 
					
						
							|  |  |  |     get :index, :project_id => 'ecookbook' | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2010-10-25 16:16:46 +00:00
										 |  |  |     assert_template 'index' | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |     pages = assigns(:pages) | 
					
						
							|  |  |  |     assert_not_nil pages | 
					
						
							| 
									
										
										
										
											2008-04-05 17:39:19 +00:00
										 |  |  |     assert_equal Project.find(1).wiki.pages.size, pages.size | 
					
						
							| 
									
										
										
										
											2011-03-12 18:09:46 +00:00
										 |  |  |     assert_equal pages.first.content.updated_on, pages.first.updated_on | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-07-26 11:46:24 +00:00
										 |  |  |     assert_tag :ul, :attributes => { :class => 'pages-hierarchy' }, | 
					
						
							| 
									
										
										
										
											2009-01-26 01:47:51 +00:00
										 |  |  |                     :child => { :tag => 'li', :child => { :tag => 'a', :attributes => { :href => '/projects/ecookbook/wiki/CookBook_documentation' }, | 
					
						
							| 
									
										
										
										
											2008-07-26 11:46:24 +00:00
										 |  |  |                                               :content => 'CookBook documentation' }, | 
					
						
							|  |  |  |                                 :child => { :tag => 'ul', | 
					
						
							|  |  |  |                                             :child => { :tag => 'li', | 
					
						
							| 
									
										
										
										
											2009-01-26 01:47:51 +00:00
										 |  |  |                                                         :child => { :tag => 'a', :attributes => { :href => '/projects/ecookbook/wiki/Page_with_an_inline_image' }, | 
					
						
							| 
									
										
										
										
											2008-07-26 11:46:24 +00:00
										 |  |  |                                                                                  :content => 'Page with an inline image' } } } }, | 
					
						
							| 
									
										
										
										
											2009-01-26 01:47:51 +00:00
										 |  |  |                     :child => { :tag => 'li', :child => { :tag => 'a', :attributes => { :href => '/projects/ecookbook/wiki/Another_page' }, | 
					
						
							| 
									
										
										
										
											2008-07-26 11:46:24 +00:00
										 |  |  |                                                                        :content => 'Another page' } } | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-21 18:10:04 +00:00
										 |  |  |   def test_index_should_include_atom_link | 
					
						
							|  |  |  |     get :index, :project_id => 'ecookbook' | 
					
						
							|  |  |  |     assert_tag 'a', :attributes => { :href => '/projects/ecookbook/activity.atom?show_wiki_edits=1'} | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2010-10-13 17:13:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-30 18:42:14 +00:00
										 |  |  |   def test_export_to_html | 
					
						
							| 
									
										
										
										
											2012-01-01 20:02:39 +00:00
										 |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :export, :project_id => 'ecookbook' | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-01 20:02:39 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_not_nil assigns(:pages) | 
					
						
							| 
									
										
										
										
											2012-01-30 18:42:14 +00:00
										 |  |  |     assert assigns(:pages).any? | 
					
						
							| 
									
										
										
										
											2012-01-01 20:02:39 +00:00
										 |  |  |     assert_equal "text/html", @response.content_type | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-01 20:02:39 +00:00
										 |  |  |     assert_select "a[name=?]", "CookBook_documentation" | 
					
						
							|  |  |  |     assert_select "a[name=?]", "Another_page" | 
					
						
							|  |  |  |     assert_select "a[name=?]", "Page_with_an_inline_image" | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2010-10-13 17:13:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-30 18:42:14 +00:00
										 |  |  |   def test_export_to_pdf | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :export, :project_id => 'ecookbook', :format => 'pdf' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_not_nil assigns(:pages) | 
					
						
							|  |  |  |     assert assigns(:pages).any? | 
					
						
							|  |  |  |     assert_equal 'application/pdf', @response.content_type | 
					
						
							|  |  |  |     assert_equal 'attachment; filename="ecookbook.pdf"', @response.headers['Content-Disposition'] | 
					
						
							|  |  |  |     assert @response.body.starts_with?('%PDF') | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-30 18:50:04 +00:00
										 |  |  |   def test_export_without_permission_should_be_denied | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     Role.find_by_name('Manager').remove_permission! :export_wiki_pages | 
					
						
							| 
									
										
										
										
											2012-01-01 20:02:39 +00:00
										 |  |  |     get :export, :project_id => 'ecookbook' | 
					
						
							| 
									
										
										
										
											2010-10-13 17:13:50 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-30 18:50:04 +00:00
										 |  |  |     assert_response 403
 | 
					
						
							| 
									
										
										
										
											2010-10-13 17:13:50 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2010-10-18 15:27:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-01 20:02:39 +00:00
										 |  |  |   def test_date_index | 
					
						
							|  |  |  |     get :date_index, :project_id => 'ecookbook' | 
					
						
							| 
									
										
										
										
											2010-10-18 15:27:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-01 20:02:39 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'date_index' | 
					
						
							|  |  |  |     assert_not_nil assigns(:pages) | 
					
						
							|  |  |  |     assert_not_nil assigns(:pages_by_date) | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-01 20:02:39 +00:00
										 |  |  |     assert_tag 'a', :attributes => { :href => '/projects/ecookbook/activity.atom?show_wiki_edits=1'} | 
					
						
							| 
									
										
										
										
											2010-10-18 15:27:49 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |   def test_not_found | 
					
						
							| 
									
										
										
										
											2010-10-21 16:07:28 +00:00
										 |  |  |     get :show, :project_id => 999
 | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  |     assert_response 404
 | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-04 15:05:38 +00:00
										 |  |  |   def test_protect_page | 
					
						
							|  |  |  |     page = WikiPage.find_by_wiki_id_and_title(1, 'Another_page') | 
					
						
							|  |  |  |     assert !page.protected? | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2010-10-27 16:27:06 +00:00
										 |  |  |     post :protect, :project_id => 1, :id => page.title, :protected => '1' | 
					
						
							|  |  |  |     assert_redirected_to :action => 'show', :project_id => 'ecookbook', :id => 'Another_page' | 
					
						
							| 
									
										
										
										
											2008-05-04 15:05:38 +00:00
										 |  |  |     assert page.reload.protected? | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-04 15:05:38 +00:00
										 |  |  |   def test_unprotect_page | 
					
						
							|  |  |  |     page = WikiPage.find_by_wiki_id_and_title(1, 'CookBook_documentation') | 
					
						
							|  |  |  |     assert page.protected? | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2010-10-27 16:27:06 +00:00
										 |  |  |     post :protect, :project_id => 1, :id => page.title, :protected => '0' | 
					
						
							|  |  |  |     assert_redirected_to :action => 'show', :project_id => 'ecookbook', :id => 'CookBook_documentation' | 
					
						
							| 
									
										
										
										
											2008-05-04 15:05:38 +00:00
										 |  |  |     assert !page.reload.protected? | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-04 15:05:38 +00:00
										 |  |  |   def test_show_page_with_edit_link | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2010-10-21 16:07:28 +00:00
										 |  |  |     get :show, :project_id => 1
 | 
					
						
							| 
									
										
										
										
											2008-05-04 15:05:38 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'show' | 
					
						
							| 
									
										
										
										
											2009-01-26 01:47:51 +00:00
										 |  |  |     assert_tag :tag => 'a', :attributes => { :href => '/projects/1/wiki/CookBook_documentation/edit' } | 
					
						
							| 
									
										
										
										
											2008-05-04 15:05:38 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-04 15:05:38 +00:00
										 |  |  |   def test_show_page_without_edit_link | 
					
						
							|  |  |  |     @request.session[:user_id] = 4
 | 
					
						
							| 
									
										
										
										
											2010-10-21 16:07:28 +00:00
										 |  |  |     get :show, :project_id => 1
 | 
					
						
							| 
									
										
										
										
											2008-05-04 15:05:38 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'show' | 
					
						
							| 
									
										
										
										
											2009-01-26 01:47:51 +00:00
										 |  |  |     assert_no_tag :tag => 'a', :attributes => { :href => '/projects/1/wiki/CookBook_documentation/edit' } | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-06 10:50:05 +00:00
										 |  |  |   def test_show_pdf | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :show, :project_id => 1, :format => 'pdf' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_not_nil assigns(:page) | 
					
						
							|  |  |  |     assert_equal 'application/pdf', @response.content_type | 
					
						
							|  |  |  |     assert_equal 'attachment; filename="CookBook_documentation.pdf"', | 
					
						
							|  |  |  |                   @response.headers['Content-Disposition'] | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-06 10:47:45 +00:00
										 |  |  |   def test_show_html | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :show, :project_id => 1, :format => 'html' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_not_nil assigns(:page) | 
					
						
							|  |  |  |     assert_equal 'text/html', @response.content_type | 
					
						
							|  |  |  |     assert_equal 'attachment; filename="CookBook_documentation.html"', | 
					
						
							|  |  |  |                   @response.headers['Content-Disposition'] | 
					
						
							| 
									
										
										
										
											2012-04-06 14:09:15 +00:00
										 |  |  |     assert_tag 'h1', :content => 'CookBook documentation' | 
					
						
							| 
									
										
										
										
											2011-11-06 10:47:45 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-06 15:31:06 +00:00
										 |  |  |   def test_show_versioned_html | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :show, :project_id => 1, :format => 'html', :version => 2
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_not_nil assigns(:content) | 
					
						
							|  |  |  |     assert_equal 2, assigns(:content).version | 
					
						
							|  |  |  |     assert_equal 'text/html', @response.content_type | 
					
						
							|  |  |  |     assert_equal 'attachment; filename="CookBook_documentation.html"', | 
					
						
							|  |  |  |                   @response.headers['Content-Disposition'] | 
					
						
							|  |  |  |     assert_tag 'h1', :content => 'CookBook documentation' | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-06 10:47:45 +00:00
										 |  |  |   def test_show_txt | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :show, :project_id => 1, :format => 'txt' | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_not_nil assigns(:page) | 
					
						
							|  |  |  |     assert_equal 'text/plain', @response.content_type | 
					
						
							|  |  |  |     assert_equal 'attachment; filename="CookBook_documentation.txt"', | 
					
						
							|  |  |  |                   @response.headers['Content-Disposition'] | 
					
						
							| 
									
										
										
										
											2012-04-06 14:09:15 +00:00
										 |  |  |     assert_include 'h1. CookBook documentation', @response.body | 
					
						
							| 
									
										
										
										
											2011-11-06 10:47:45 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-06 15:31:06 +00:00
										 |  |  |   def test_show_versioned_txt | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     get :show, :project_id => 1, :format => 'txt', :version => 2
 | 
					
						
							|  |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_not_nil assigns(:content) | 
					
						
							|  |  |  |     assert_equal 2, assigns(:content).version | 
					
						
							|  |  |  |     assert_equal 'text/plain', @response.content_type | 
					
						
							|  |  |  |     assert_equal 'attachment; filename="CookBook_documentation.txt"', | 
					
						
							|  |  |  |                   @response.headers['Content-Disposition'] | 
					
						
							|  |  |  |     assert_include 'h1. CookBook documentation', @response.body | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-04 15:05:38 +00:00
										 |  |  |   def test_edit_unprotected_page | 
					
						
							|  |  |  |     # Non members can edit unprotected wiki pages | 
					
						
							|  |  |  |     @request.session[:user_id] = 4
 | 
					
						
							| 
									
										
										
										
											2010-10-27 16:27:06 +00:00
										 |  |  |     get :edit, :project_id => 1, :id => 'Another_page' | 
					
						
							| 
									
										
										
										
											2008-05-04 15:05:38 +00:00
										 |  |  |     assert_response :success | 
					
						
							|  |  |  |     assert_template 'edit' | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-04 15:05:38 +00:00
										 |  |  |   def test_edit_protected_page_by_nonmember | 
					
						
							|  |  |  |     # Non members can't edit protected wiki pages | 
					
						
							|  |  |  |     @request.session[:user_id] = 4
 | 
					
						
							| 
									
										
										
										
											2010-10-27 16:27:06 +00:00
										 |  |  |     get :edit, :project_id => 1, :id => 'CookBook_documentation' | 
					
						
							| 
									
										
										
										
											2008-05-04 15:05:38 +00:00
										 |  |  |     assert_response 403
 | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-04 15:05:38 +00:00
										 |  |  |   def test_edit_protected_page_by_member | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							| 
									
										
										
										
											2010-10-27 16:27:06 +00:00
										 |  |  |     get :edit, :project_id => 1, :id => 'CookBook_documentation' | 
					
						
							| 
									
										
										
										
											2008-05-04 15:05:38 +00:00
										 |  |  |     assert_response :success | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  |     assert_template 'edit' | 
					
						
							| 
									
										
										
										
											2008-05-04 15:05:38 +00:00
										 |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-05-16 22:56:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-19 10:43:06 +00:00
										 |  |  |   def test_history_of_non_existing_page_should_return_404 | 
					
						
							| 
									
										
										
										
											2010-10-27 16:27:06 +00:00
										 |  |  |     get :history, :project_id => 1, :id => 'Unknown_page' | 
					
						
							| 
									
										
										
										
											2008-12-19 10:43:06 +00:00
										 |  |  |     assert_response 404
 | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2011-12-17 15:02:28 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   def test_add_attachment | 
					
						
							|  |  |  |     @request.session[:user_id] = 2
 | 
					
						
							|  |  |  |     assert_difference 'Attachment.count' do | 
					
						
							|  |  |  |       post :add_attachment, :project_id => 1, :id => 'CookBook_documentation', | 
					
						
							| 
									
										
										
										
											2014-01-11 09:24:24 +00:00
										 |  |  |            :attachments => { | 
					
						
							|  |  |  |              '1' => {'file' => uploaded_test_file('testfile.txt', 'text/plain'), | 
					
						
							|  |  |  |                      'description' => 'test file'} | 
					
						
							|  |  |  |            } | 
					
						
							| 
									
										
										
										
											2011-12-17 15:02:28 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2014-01-11 09:24:40 +00:00
										 |  |  |     attachment = Attachment.order('id DESC').first | 
					
						
							| 
									
										
										
										
											2011-12-17 15:02:28 +00:00
										 |  |  |     assert_equal Wiki.find(1).find_page('CookBook_documentation'), attachment.container | 
					
						
							|  |  |  |   end | 
					
						
							| 
									
										
										
										
											2007-12-15 11:57:06 +00:00
										 |  |  | end |