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
126
127
128
129
130
131
132
133
134
135
136
|
RSpec.describe Import, type: :model do
it { should belong_to(:referential) }
it { should belong_to(:workbench) }
it { should belong_to(:parent) }
it { should enumerize(:status).in("aborted", "canceled", "failed", "new", "pending", "running", "successful") }
it { should validate_presence_of(:file) }
it { should validate_presence_of(:workbench) }
it { should validate_presence_of(:creator) }
let(:workbench_import) { build_stubbed(:workbench_import) }
let(:workbench_import_with_completed_steps) do
workbench_import = build_stubbed(
:workbench_import,
total_steps: 2,
current_step: 2
)
end
let(:netex_import) do
netex_import = build_stubbed(
:netex_import,
parent: workbench_import
)
end
describe "#notify_parent" do
it "must call #child_change on its parent" do
allow(netex_import).to receive(:update)
expect(workbench_import).to receive(:child_change)
netex_import.notify_parent
end
it "must update the :notified_parent_at field of the child import" do
allow(workbench_import).to receive(:child_change)
Timecop.freeze(DateTime.now) do
expect(netex_import).to receive(:update).with(
notified_parent_at: DateTime.now
)
netex_import.notify_parent
end
end
end
describe "#child_change" do
it "calls #update_status" do
allow(workbench_import).to receive(:update)
expect(workbench_import).to receive(:update_status)
workbench_import.child_change
end
it "calls #update_referentials" do
allow(workbench_import).to receive(:update)
expect(workbench_import).to receive(:update_referentials)
workbench_import.child_change
end
end
describe "#update_status" do
shared_examples(
"updates :status to failed when >=1 child has failing status"
) do |failure_status|
it "updates :status to failed when >=1 child has failing status" do
workbench_import = create(:workbench_import)
create(
:netex_import,
parent: workbench_import,
status: failure_status
)
workbench_import.update_status
expect(workbench_import.status).to eq('failed')
end
end
include_examples(
"updates :status to failed when >=1 child has failing status",
"failed"
)
include_examples(
"updates :status to failed when >=1 child has failing status",
"aborted"
)
include_examples(
"updates :status to failed when >=1 child has failing status",
"canceled"
)
it "updates :status to successful when all children are successful" do
workbench_import = create(:workbench_import)
create_list(
:netex_import,
2,
parent: workbench_import,
status: 'successful'
)
workbench_import.update_status
expect(workbench_import.status).to eq('successful')
end
it "Updates :status to failed when any child has failed" do
workbench_import = create(:workbench_import)
[
'failed',
'successful'
].each do |status|
create(
:netex_import,
parent: workbench_import,
status: status
)
end
workbench_import.update_status
expect(workbench_import.status).to eq('failed')
end
it "updates :ended_at to now when status is finished" do
skip "Redo the `#update_status` code to make it easier to write this."
end
end
# TODO: specs for #update_referential
end
|