Test for repository edit and cleanup.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8049 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
e2e3af4f0d
commit
f660d5f183
@ -16,12 +16,10 @@
|
|||||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||||
|
|
||||||
require File.expand_path('../../test_helper', __FILE__)
|
require File.expand_path('../../test_helper', __FILE__)
|
||||||
require 'repositories_controller'
|
|
||||||
|
|
||||||
# Re-raise errors caught by the controller.
|
|
||||||
class RepositoriesController; def rescue_action(e) raise e end; end
|
|
||||||
|
|
||||||
class RepositoriesMercurialControllerTest < ActionController::TestCase
|
class RepositoriesMercurialControllerTest < ActionController::TestCase
|
||||||
|
tests RepositoriesController
|
||||||
|
|
||||||
fixtures :projects, :users, :roles, :members, :member_roles,
|
fixtures :projects, :users, :roles, :members, :member_roles,
|
||||||
:repositories, :enabled_modules
|
:repositories, :enabled_modules
|
||||||
|
|
||||||
@ -34,9 +32,6 @@ class RepositoriesMercurialControllerTest < ActionController::TestCase
|
|||||||
(RUBY_VERSION >= '1.9' && Encoding.default_external.to_s != 'UTF-8')
|
(RUBY_VERSION >= '1.9' && Encoding.default_external.to_s != 'UTF-8')
|
||||||
|
|
||||||
def setup
|
def setup
|
||||||
@controller = RepositoriesController.new
|
|
||||||
@request = ActionController::TestRequest.new
|
|
||||||
@response = ActionController::TestResponse.new
|
|
||||||
User.current = nil
|
User.current = nil
|
||||||
@project = Project.find(PRJ_ID)
|
@project = Project.find(PRJ_ID)
|
||||||
@repository = Repository::Mercurial.create(
|
@repository = Repository::Mercurial.create(
|
||||||
@ -64,6 +59,18 @@ class RepositoriesMercurialControllerTest < ActionController::TestCase
|
|||||||
"Current value is '#{Encoding.default_external.to_s}'"
|
"Current value is '#{Encoding.default_external.to_s}'"
|
||||||
def test_fake; assert true end
|
def test_fake; assert true end
|
||||||
elsif File.directory?(REPOSITORY_PATH)
|
elsif File.directory?(REPOSITORY_PATH)
|
||||||
|
|
||||||
|
def test_get_edit
|
||||||
|
@request.session[:user_id] = 1
|
||||||
|
@project.repository.destroy
|
||||||
|
xhr :get, :edit, :id => 'subproject1', :repository_scm => 'Mercurial'
|
||||||
|
assert_response :success
|
||||||
|
assert_equal 'text/javascript', @response.content_type
|
||||||
|
assert_kind_of Repository::Mercurial, assigns(:repository)
|
||||||
|
assert assigns(:repository).new_record?
|
||||||
|
assert_select_rjs :replace_html, 'tab-content-repository'
|
||||||
|
end
|
||||||
|
|
||||||
def test_show_root
|
def test_show_root
|
||||||
assert_equal 0, @repository.changesets.count
|
assert_equal 0, @repository.changesets.count
|
||||||
@repository.fetch_changesets
|
@repository.fetch_changesets
|
||||||
|
Loading…
x
Reference in New Issue
Block a user