resolved_problem_clearer_spec.rb
1.51 KB
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
describe ResolvedProblemClearer do
let(:resolved_problem_clearer) do
ResolvedProblemClearer.new
end
describe "#execute" do
let!(:problems) do
[
Fabricate(:problem),
Fabricate(:problem),
Fabricate(:problem)
]
end
context 'without problem resolved' do
it 'do nothing' do
expect do
expect(resolved_problem_clearer.execute).to eq 0
end.to_not change {
Problem.count
}
end
it 'not repair database' do
allow(Mongoid.default_client).to receive(:command).and_call_original
expect(Mongoid.default_client).to_not receive(:command).with(repairDatabase: 1)
resolved_problem_clearer.execute
end
end
context "with problem resolve" do
before do
allow(Mongoid.default_client).to receive(:command).and_call_original
allow(Mongoid.default_client).to receive(:command).with(repairDatabase: 1)
problems.first.resolve!
problems.second.resolve!
end
it 'delete problem resolve' do
expect do
expect(resolved_problem_clearer.execute).to eq 2
end.to change {
Problem.count
}.by(-2)
expect(Problem.where(_id: problems.first.id).first).to be_nil
expect(Problem.where(_id: problems.second.id).first).to be_nil
end
it 'repair database' do
expect(Mongoid.default_client).to receive(:command).with(repairDatabase: 1)
resolved_problem_clearer.execute
end
end
end
end