blob: ae67c336fd572f77e997a07e6de2c86b6bc54e46 (
plain)
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
|
# == Schema Information
#
# Table name: builds
#
# id :integer not null, primary key
# status :string(255)
# finished_at :datetime
# trace :text
# created_at :datetime
# updated_at :datetime
# started_at :datetime
# tmp_file :string(255)
# runner_id :integer
# commit_id :integer
#
require 'spec_helper'
describe Build do
let(:project) { FactoryGirl.create :project }
let(:commit) { FactoryGirl.create :commit, project: project }
let(:build) { FactoryGirl.create :build, commit: commit }
it { should belong_to(:commit) }
it { should validate_presence_of :status }
it { should respond_to :success? }
it { should respond_to :failed? }
it { should respond_to :running? }
it { should respond_to :pending? }
it { should respond_to :trace_html }
it { should allow_mass_assignment_of(:commit_id) }
it { should allow_mass_assignment_of(:status) }
it { should allow_mass_assignment_of(:started_at) }
it { should allow_mass_assignment_of(:finished_at) }
it { should allow_mass_assignment_of(:trace) }
it { should allow_mass_assignment_of(:runner_id) }
describe :first_pending do
let(:first) { FactoryGirl.create :build, commit: commit, status: 'pending', created_at: Date.yesterday }
let(:second) { FactoryGirl.create :build, commit: commit, status: 'pending' }
before { first; second }
subject { Build.first_pending }
it { should be_a(Build) }
it('returns with the first pending build') { should eq(first) }
end
describe :create_from do
before do
build.status = 'success'
build.save
end
let(:create_from_build) { Build.create_from build }
it ('there should be a pending task') do
Build.pending.count.should eq(0)
create_from_build
Build.pending.count.should > 0
end
end
describe :started? do
subject { build.started? }
context 'without started_at' do
before { build.started_at = nil }
it { should be_false }
end
%w(running success failed).each do |status|
context "if build status is #{status}" do
before { build.status = status }
it { should be_true }
end
end
%w(pending canceled).each do |status|
context "if build status is #{status}" do
before { build.status = status }
it { should be_false }
end
end
end
describe :active? do
subject { build.active? }
%w(pending running).each do |state|
context "if build.status is #{state}" do
before { build.status = state }
it { should be_true }
end
end
%w(success failed canceled).each do |state|
context "if build.status is #{state}" do
before { build.status = state }
it { should be_false }
end
end
end
describe :complete? do
subject { build.complete? }
%w(success failed canceled).each do |state|
context "if build.status is #{state}" do
before { build.status = state }
it { should be_true }
end
end
%w(pending running).each do |state|
context "if build.status is #{state}" do
before { build.status = state }
it { should be_false }
end
end
end
describe :trace do
subject { build.trace_html }
it { should be_empty }
context 'if build.trace contains text' do
let(:text) { 'example output' }
before { build.trace = text }
it { should include(text) }
it { should have_at_least(text.length).items }
end
end
describe :commands do
subject { build.commands }
it { should eq(commit.project.scripts) }
end
describe :timeout do
subject { build.timeout }
it { should eq(commit.project.timeout) }
end
describe :duration do
subject { build.duration }
it { should eq(120.0) }
context 'if the building process has not started yet' do
before do
build.started_at = nil
build.finished_at = nil
end
it { should be_nil }
end
context 'if the building process has started' do
before do
build.started_at = Time.now - 1.minute
build.finished_at = nil
end
it { should be_a(Float) }
it { should > 0.0 }
end
end
describe :ref do
subject { build.ref }
it { should eq(commit.ref) }
end
describe :sha do
subject { build.sha }
it { should eq(commit.sha) }
end
describe :short_sha do
subject { build.short_sha }
it { should eq(commit.short_sha) }
end
describe :before_sha do
subject { build.before_sha }
it { should eq(commit.before_sha) }
end
describe :allow_git_fetch do
subject { build.allow_git_fetch }
it { should eq(commit.allow_git_fetch) }
end
describe :project do
subject { build.project }
it { should eq(commit.project) }
end
describe :project_id do
subject { build.project_id }
it { should eq(commit.project_id) }
end
describe :project_name do
subject { build.project_name }
it { should eq(commit.project_name) }
end
describe :repo_url do
subject { build.repo_url }
it { should eq(commit.repo_url) }
end
end
|