1 # redMine - project management software
2 # Copyright (C) 2006 Jean-Philippe Lang
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 ENV["RAILS_ENV"] = "test"
19 require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
21 require File.expand_path(File.dirname(__FILE__) + '/helper_testcase')
22 require File.join(RAILS_ROOT,'test', 'mocks', 'open_id_authentication_mock.rb')
24 require File.expand_path(File.dirname(__FILE__) + '/object_daddy_helpers')
25 include ObjectDaddyHelpers
27 class ActiveSupport::TestCase
28 # Transactional fixtures accelerate your tests by wrapping each test method
29 # in a transaction that's rolled back on completion. This ensures that the
30 # test database remains unchanged so your fixtures don't have to be reloaded
31 # between every test method. Fewer database queries means faster tests.
33 # Read Mike Clark's excellent walkthrough at
34 # http://clarkware.com/cgi/blosxom/2005/10/24#Rails10FastTesting
36 # Every Active Record database supports transactions except MyISAM tables
37 # in MySQL. Turn off transactional fixtures in this case; however, if you
38 # don't care one way or the other, switching from MyISAM to InnoDB tables
40 self.use_transactional_fixtures = true
42 # Instantiated fixtures are slow, but give you @david where otherwise you
43 # would need people(:david). If you don't want to migrate your existing
44 # test cases which use the @david style and don't mind the speed hit (each
45 # instantiated fixtures translates to a database query per test method),
46 # then set this back to true.
47 self.use_instantiated_fixtures = false
49 # Add more helper methods to be used by all tests here...
51 def log_user(login, password)
54 assert_equal nil, session[:user_id]
55 assert_response :success
56 assert_template "account/login"
57 post "/login", :username => login, :password => password
58 assert_equal login, User.find(session[:user_id]).login
61 def uploaded_test_file(name, mime)
62 ActionController::TestUploadedFile.new(ActiveSupport::TestCase.fixture_path + "/files/#{name}", mime)
68 file.stubs(:size).returns(32)
69 file.stubs(:original_filename).returns('a_file.png')
70 file.stubs(:content_type).returns('image/png')
71 file.stubs(:read).returns(false)
79 # Use a temporary directory for attachment related tests
80 def set_tmp_attachments_directory
81 Dir.mkdir "#{RAILS_ROOT}/tmp/test" unless File.directory?("#{RAILS_ROOT}/tmp/test")
82 Dir.mkdir "#{RAILS_ROOT}/tmp/test/attachments" unless File.directory?("#{RAILS_ROOT}/tmp/test/attachments")
83 Attachment.storage_path = "#{RAILS_ROOT}/tmp/test/attachments"
86 def with_settings(options, &block)
87 saved_settings = options.keys.inject({}) {|h, k| h[k] = Setting[k].dup; h}
88 options.each {|k, v| Setting[k] = v}
90 saved_settings.each {|k, v| Setting[k] = v}
93 def change_user_password(login, new_password)
94 user = User.first(:conditions => {:login => login})
95 user.password, user.password_confirmation = new_password, new_password
99 def self.ldap_configured?
100 @test_ldap = Net::LDAP.new(:host => '127.0.0.1', :port => 389)
101 return @test_ldap.bind
102 rescue Exception => e
103 # LDAP is not listening
107 # Returns the path to the test +vendor+ repository
108 def self.repository_path(vendor)
109 File.join(RAILS_ROOT.gsub(%r{config\/\.\.}, ''), "/tmp/test/#{vendor.downcase}_repository")
112 # Returns true if the +vendor+ test repository is configured
113 def self.repository_configured?(vendor)
114 File.directory?(repository_path(vendor))
118 def self.should_render_404
119 should_respond_with :not_found
120 should_render_template 'common/404'
123 def self.should_have_before_filter(expected_method, options = {})
124 should_have_filter('before', expected_method, options)
127 def self.should_have_after_filter(expected_method, options = {})
128 should_have_filter('after', expected_method, options)
131 def self.should_have_filter(filter_type, expected_method, options)
132 description = "have #{filter_type}_filter :#{expected_method}"
133 description << " with #{options.inspect}" unless options.empty?
135 should description do
136 klass = "action_controller/filters/#{filter_type}_filter".classify.constantize
137 expected = klass.new(:filter, expected_method.to_sym, options)
138 assert_equal 1, @controller.class.filter_chain.select { |filter|
139 filter.method == expected.method && filter.kind == expected.kind &&
140 filter.options == expected.options && filter.class == expected.class
145 def self.should_show_the_old_and_new_values_for(prop_key, model, &block)
151 @old_value = model.generate!
152 @new_value = model.generate!
156 should "use the new value's name" do
157 @detail = JournalDetail.generate!(:property => 'attr',
158 :old_value => @old_value.id,
159 :value => @new_value.id,
160 :prop_key => prop_key)
162 assert_match @new_value.name, show_detail(@detail, true)
165 should "use the old value's name" do
166 @detail = JournalDetail.generate!(:property => 'attr',
167 :old_value => @old_value.id,
168 :value => @new_value.id,
169 :prop_key => prop_key)
171 assert_match @old_value.name, show_detail(@detail, true)
176 def self.should_create_a_new_user(&block)
177 should "create a new user" do
178 user = instance_eval &block
180 assert_kind_of User, user
181 assert !user.new_record?