2012-01-30 20:39:34 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
2011-03-09 13:13:36 +00:00
|
|
|
# This file is copied to spec/ when you run 'rails generate rspec:install'
|
|
|
|
ENV["RAILS_ENV"] ||= 'test'
|
|
|
|
require File.expand_path("../../config/environment", __FILE__)
|
|
|
|
require 'rspec/rails'
|
|
|
|
|
|
|
|
# Requires supporting ruby files with custom matchers and macros, etc,
|
|
|
|
# in spec/support/ and its subdirectories.
|
|
|
|
Dir[Rails.root.join("spec/support/**/*.rb")].each {|f| require f}
|
|
|
|
|
|
|
|
RSpec.configure do |config|
|
|
|
|
# == Mock Framework
|
|
|
|
#
|
|
|
|
# If you prefer to use mocha, flexmock or RR, uncomment the appropriate line:
|
|
|
|
#
|
|
|
|
# config.mock_with :mocha
|
|
|
|
# config.mock_with :flexmock
|
2011-11-25 16:23:10 +00:00
|
|
|
config.mock_with :rr
|
|
|
|
#config.mock_with :rspec
|
2011-03-09 13:13:36 +00:00
|
|
|
|
|
|
|
# Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
|
|
|
|
config.fixture_path = "#{::Rails.root}/spec/fixtures"
|
|
|
|
|
|
|
|
# If you're not using ActiveRecord, or you'd prefer not to run each of your
|
|
|
|
# examples within a transaction, remove the following line or assign false
|
|
|
|
# instead of true.
|
|
|
|
config.use_transactional_fixtures = true
|
|
|
|
end
|
2011-11-24 19:22:37 +00:00
|
|
|
|
|
|
|
def set_session_for(user=nil)
|
2012-03-29 21:34:22 +01:00
|
|
|
current_user = user.is_a?(Symbol) ? FactoryGirl.create(user) : user
|
2011-11-24 19:22:37 +00:00
|
|
|
@request.env["devise.mapping"] = :user
|
|
|
|
sign_in current_user
|
2011-11-25 18:57:24 +00:00
|
|
|
end
|
|
|
|
|
2012-05-16 16:29:28 +01:00
|
|
|
def stub_symlink_methods
|
2012-05-16 14:01:25 +01:00
|
|
|
any_instance_of(Platform, :symlink_directory => true)
|
|
|
|
any_instance_of(Platform, :remove_symlink_directory => true)
|
2011-12-12 07:51:39 +00:00
|
|
|
end
|
|
|
|
|
2012-07-31 13:50:53 +01:00
|
|
|
def stub_key_pairs_calls
|
2012-07-31 14:05:25 +01:00
|
|
|
stub(BuildServer).import_gpg_key_pair { [0,"1a2b3c"] }
|
2012-07-31 13:50:53 +01:00
|
|
|
stub(BuildServer).set_repository_key { 0 }
|
|
|
|
stub(BuildServer).rm_repository_key { 0 }
|
|
|
|
end
|
|
|
|
|
2012-01-16 21:51:20 +00:00
|
|
|
def test_git_commit(project)
|
2012-07-17 09:02:56 +01:00
|
|
|
project.repo.index.add('test', 'TEST')
|
|
|
|
project.repo.index.commit('Test commit')
|
2012-01-16 21:51:20 +00:00
|
|
|
end
|
|
|
|
|
2012-06-16 19:27:46 +01:00
|
|
|
Resque.inline = true
|
2012-01-11 19:43:33 +00:00
|
|
|
|
2011-11-25 18:57:24 +00:00
|
|
|
# Add testing root_path
|
|
|
|
%x(rm -Rf #{Rails.root}/tmp/test_root)
|
|
|
|
%x(mkdir -p #{Rails.root}/tmp/test_root)
|
2011-12-06 15:24:04 +00:00
|
|
|
APP_CONFIG['root_path'] = "#{Rails.root}/tmp/test_root"
|