forked from ManageIQ/manageiq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiq_web_server_worker_mixin_spec.rb
48 lines (40 loc) · 1.42 KB
/
miq_web_server_worker_mixin_spec.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
RSpec.describe MiqWebServerWorkerMixin do
it "build_uri (ipv6)" do
test_class = Class.new do
include MiqWebServerWorkerMixin
end
allow(test_class).to receive_messages(:binding_address => "::1")
expect(test_class.build_uri(123)).to eq "http://[::1]:123"
end
let(:test_class) do
Class.new do
include MiqWebServerWorkerMixin
end
end
it "#rails_server_options" do
w = FactoryBot.create(:miq_ui_worker, :uri => "http://127.0.0.1:3000")
expect(w.rails_server_options).to include(
:Port => 3000,
:Host => w.class.binding_address,
:environment => Rails.env.to_s,
:app => Rails.application
)
end
it "overloading and calling super on a class method" do
before = test_class.binding_address
test_class.class_eval do
def self.binding_address
super + "JUNK"
end
end
expect(test_class.binding_address).to eq(before + "JUNK")
end
describe '#rails_application' do
let(:remote_console_worker) { FactoryBot.create(:miq_remote_console_worker, :uri => 'http://127.0.0.1:3000') }
let(:ui_worker) { FactoryBot.create(:miq_ui_worker, :uri => 'http://127.0.0.1:3000') }
it 'provides access to the Rack/Rails application' do
expect(remote_console_worker.rails_application).to be_a_kind_of(RemoteConsole::RackServer)
expect(ui_worker.rails_application).to be_a_kind_of(Vmdb::Application)
end
end
end