-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathmongoid_spec.rb
125 lines (94 loc) · 2.49 KB
/
mongoid_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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
# frozen_string_literal: true
# rubocop:todo all
require "spec_helper"
describe Mongoid do
describe ".configure" do
context "when no block supplied" do
it "returns the config singleton" do
expect(Mongoid.configure).to eq(Mongoid::Config)
end
end
context "when a block is given" do
config_override :preload_models, false
context "with arity 0" do
before do
Mongoid.configure do
config.preload_models = true
end
end
it "sets the values on the config instance" do
expect(Mongoid.preload_models).to be true
end
end
context "with arity 1" do
before do
Mongoid.configure do |config|
config.preload_models = true
end
end
it "sets the values on the config instance" do
expect(Mongoid.preload_models).to be true
end
end
context "with arity 2" do
before do
Mongoid.configure do |config, _other|
config.preload_models = true
end
end
it "sets the values on the config instance" do
expect(Mongoid.preload_models).to be true
end
end
end
end
describe ".default_client" do
it "returns the default client" do
expect(Mongoid.default_client).to eq(Mongoid::Clients.default)
end
end
describe ".disconnect_clients" do
let(:clients) do
Mongoid::Clients.clients.values
end
before do
Band.all.entries
end
it "disconnects from all active clients" do
clients.each do |client|
expect(client).to receive(:close).and_call_original
end
Mongoid.disconnect_clients
end
it "returns true" do
expect(Mongoid.disconnect_clients).to eq(true)
end
end
describe ".reconnect_clients" do
let(:clients) do
Mongoid::Clients.clients.values
end
before do
Band.all.entries
end
it "reconnects all active clients" do
clients.each do |client|
expect(client).to receive(:reconnect).and_call_original
end
Mongoid.reconnect_clients
end
it "returns true" do
expect(Mongoid.reconnect_clients).to eq(true)
end
end
describe ".client" do
it "returns the named client" do
expect(Mongoid.client(:default)).to eq(Mongoid::Clients.default)
end
end
describe ".models" do
it "returns the list of known models" do
expect(Mongoid.models).to include(Band)
end
end
end