Conflicts: Gemfile Gemfile.lock app/models/app_config.rb app/models/post.rb db/schema.rb public/stylesheets/sass/application.sass spec/lib/webfinger_spec.rb
55 lines
1.6 KiB
Ruby
55 lines
1.6 KiB
Ruby
#This is a spec for the class that runs the servers used in the other multi-server specs
|
|
|
|
require 'spec_helper'
|
|
WebMock::Config.instance.allow_localhost = true
|
|
if Server.all && Server.all.first && Server.all.first.running?
|
|
describe Server do
|
|
before(:all) do
|
|
WebMock::Config.instance.allow_localhost = true
|
|
end
|
|
|
|
after(:all) do
|
|
WebMock::Config.instance.allow_localhost = false
|
|
end
|
|
|
|
before do
|
|
Server.all.each{|s| s.truncate_database }
|
|
end
|
|
describe '.all' do
|
|
it 'returns a server object for each server' do
|
|
integration_envs = ActiveRecord::Base.configurations.keys.select{ |k| k.include?("integration") }
|
|
integration_envs.count.should == Server.all.count
|
|
end
|
|
end
|
|
describe '#initialize' do
|
|
it 'takes an environment' do
|
|
server = Server.new("integration_1")
|
|
server.env.should == "integration_1"
|
|
server.port.should == ActiveRecord::Base.configurations["integration_1"]["app_server_port"]
|
|
end
|
|
end
|
|
describe "#running?" do
|
|
it "verifies that the server is running" do
|
|
Server.new("integration_1").running?.should be_true
|
|
end
|
|
end
|
|
describe '#db' do
|
|
it 'runs the given code in the context of that server' do
|
|
servers = Server.all
|
|
|
|
test_user_count = User.count
|
|
servers.first.db do
|
|
User.count.should == 0
|
|
Factory :user
|
|
User.count.should == 1
|
|
end
|
|
User.count.should == test_user_count
|
|
|
|
servers.last.db do
|
|
User.count.should == 0
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
WebMock::Config.instance.allow_localhost = false
|