File: box_spec.rb

package info (click to toggle)
ruby-vagrant-cloud 3.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 408 kB
  • sloc: ruby: 4,343; makefile: 7
file content (341 lines) | stat: -rw-r--r-- 10,333 bytes parent folder | download
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
require 'spec_helper'
require 'vagrant_cloud'

describe VagrantCloud::Box do
  let(:organization) { VagrantCloud::Organization.new(account: account, username: organization_name) }
  let(:organization_name) { "ORG_NAME" }
  let(:account) { double("account") }
  let(:name) { "BOX_NAME" }

  let(:subject) { described_class.new(organization: organization, name: name) }

  before do
    allow(account).to receive_message_chain(:client, :box_get).and_return(versions: [])
  end

  describe "#initialize" do
    it "should require a name" do
      expect { described_class.new(organization: organization) }.
        to raise_error(ArgumentError)
    end

    it "should require an organization" do
      expect { described_class.new(name: name) }.
        to raise_error(ArgumentError)
    end

    it "should create new instance with organization and name" do
      expect { described_class.new(name: name, organization: organization) }.
        not_to raise_error
    end
  end

  describe "#short_description" do
    it "should be mutable" do
      expect(subject.short_description).to be_nil
      subject.short_description = "test"
      expect(subject.short_description).to eq("test")
    end
  end

  describe "#description" do
    it "should be mutable" do
      expect(subject.description).to be_nil
      subject.description = "test"
      expect(subject.description).to eq("test")
    end
  end

  describe "#private" do
    it "should be mutable" do
      expect(subject.private).to be_nil
      subject.private = true
      expect(subject.private).to be_truthy
    end
  end

  describe "#delete" do
    it "should return nil" do
      expect(subject.delete).to be_nil
    end

    it "should not request to delete box that does not exist" do
      expect(organization).not_to receive(:account)
      subject.delete
    end

    context "when box exists" do
      before { allow(subject).to receive(:exist?).and_return(true) }

      it "should request box deletion" do
        expect(account).to receive_message_chain(:client, :box_delete)
        subject.delete
      end
    end
  end

  describe "#add_version" do
    it "should create a new version" do
      expect(subject.add_version("1.0.0")).to be_a(VagrantCloud::Box::Version)
    end

    it "should add new version to the versions collection" do
      v = subject.add_version("1.0.0")
      expect(subject.versions).to include(v)
    end

    it "should error when adding an existing version" do
      subject.add_version("1.0.0")
      expect { subject.add_version("1.0.0") }.
        to raise_error(VagrantCloud::Error::BoxError::VersionExistsError)
    end
  end

  describe "#dirty?" do
    it "should be true when box does not exist" do
      expect(subject.exist?).to be_falsey
      expect(subject.dirty?).to be_truthy
    end

    context "when box exists" do
      before { allow(subject).to receive(:exist?).and_return(true) }

      it "should be false" do
        expect(subject.dirty?).to be_falsey
      end

      context "when attribute is modified" do
        before { subject.description = "test" }

        it "should be true" do
          expect(subject.dirty?).to be_truthy
        end

        it "should be true on attribute name check" do
          expect(subject.dirty?(:description)).to be_truthy
        end
      end

      context "deep check" do
        it "should be false" do
          expect(subject.dirty?(deep: true)).to be_falsey
        end

        context "when a version is added" do
          before { subject.add_version("1.0.0") }

          it "should be true" do
            expect(subject.dirty?(deep: true)).to be_truthy
          end
        end
      end
    end
  end

  describe "#exist?" do
    it "should be false when created_at is unset" do
      expect(subject.created_at).to be_falsey
      expect(subject.exist?).to be_falsey
    end

    context "when created_at is set" do
      before { subject.clean(data: {created_at: Time.now.to_s}) }

      it "should be true" do
        expect(subject.exist?).to be_truthy
      end
    end
  end

  describe "#versions_on_demand" do
    context "when box exists" do
      before { allow(subject).to receive(:exist?).and_return(true) }

      it "should load versions when called" do
        expect(account).to receive_message_chain(:client, :box_get).and_return(versions: [])
        subject.versions_on_demand
      end

      it "should not load versions after initial load" do
        expect(subject.dirty?(:versions)).to be_falsey
        expect(account).to receive_message_chain(:client, :box_get).and_return(versions: [])
        subject.versions_on_demand
        expect(account).not_to receive(:client)
        subject.versions_on_demand
      end
    end

    context "when box does not exist" do
      before { allow(subject).to receive(:exist?).and_return(false) }

      it "should not load versions when called" do
        expect(account).not_to receive(:client)
        subject.versions_on_demand
      end

      it "should not load versions after initial load" do
        expect(subject.dirty?(:versions)).to be_falsey
        expect(account).not_to receive(:client)
        subject.versions_on_demand
        expect(account).not_to receive(:client)
        subject.versions_on_demand
      end
    end
  end

  describe "#save" do
    before do
      allow(subject).to receive(:save_versions)
      allow(subject).to receive(:save_box)
    end

    it "should return self" do
      expect(subject.save).to eq(subject)
    end

    context "when box does not exist" do
      before { allow(subject).to receive(:exist?).and_return(false) }

      it "should save the box" do
        expect(subject).to receive(:save_box).ordered
        expect(subject).to receive(:save_versions).ordered
        subject.save
      end
    end

    context "when box includes unsaved versions" do
      before { subject.add_version("1.0.0") }

      it "should save the versions" do
        expect(subject).to receive(:save_versions)
        subject.save
      end
    end

    context "when box exists" do
      before { allow(subject).to receive(:exist?).and_return(true) }

      it "should not save anything" do
        expect(subject).not_to receive(:save_box)
        expect(subject).not_to receive(:save_versions)
        subject.save
      end

      context "when box includes unsaved versions" do
        before { subject.add_version("1.0.0") }
  
        it "should save the versions" do
          expect(subject).to receive(:save_versions)
          subject.save
        end
      end

      context "when box attribute is updated" do
        before { subject.description = "test" }

        it "should save the box" do
          expect(subject).to receive(:save_box)
          subject.save
        end
      end
    end
  end

  describe "#save_box" do
    context "when box exists" do
      before { allow(subject).to receive(:exist?).and_return(true) }

      it "should return self" do
        expect(account).to receive_message_chain(:client, :box_update).and_return({})
        expect(subject.send(:save_box)).to eq(subject)
      end

      it "should request a box update" do
        expect(account).to receive_message_chain(:client, :box_update).and_return({})
        subject.send(:save_box)
      end

      it "should include the organization name" do
        expect(account).to receive_message_chain(:client, :box_update).
          with(hash_including(username: organization_name)).and_return({})
        subject.send(:save_box)
      end

      it "should include the name" do
        expect(account).to receive_message_chain(:client, :box_update).
          with(hash_including(name: name)).and_return({})
        subject.send(:save_box)
      end

      it "should include the short description" do
        expect(account).to receive_message_chain(:client, :box_update).
          with(hash_including(short_description: subject.short_description)).and_return({})
        subject.send(:save_box)
      end

      it "should include the description" do
        expect(account).to receive_message_chain(:client, :box_update).
          with(hash_including(description: subject.description)).and_return({})
        subject.send(:save_box)
      end

      it "should include the box privacy" do
        expect(account).to receive_message_chain(:client, :box_update).
          with(hash_including(is_private: subject.private)).and_return({})
        subject.send(:save_box)
      end
    end

    context "when box does not exist" do
      before { allow(subject).to receive(:exist?).and_return(false) }

      it "should request a box create" do
        expect(account).to receive_message_chain(:client, :box_create).and_return({})
        subject.send(:save_box)
      end

      it "should include the organization name" do
        expect(account).to receive_message_chain(:client, :box_create).
          with(hash_including(username: organization_name)).and_return({})
        subject.send(:save_box)
      end

      it "should include the name" do
        expect(account).to receive_message_chain(:client, :box_create).
          with(hash_including(name: name)).and_return({})
        subject.send(:save_box)
      end

      it "should include the short description" do
        expect(account).to receive_message_chain(:client, :box_create).
          with(hash_including(short_description: subject.short_description)).and_return({})
        subject.send(:save_box)
      end

      it "should include the description" do
        expect(account).to receive_message_chain(:client, :box_create).
          with(hash_including(description: subject.description)).and_return({})
        subject.send(:save_box)
      end

      it "should include the box privacy" do
        expect(account).to receive_message_chain(:client, :box_create).
          with(hash_including(is_private: subject.private)).and_return({})
        subject.send(:save_box)
      end
    end
  end

  describe "#save_versions" do
    it "should return self" do
      expect(subject.send(:save_versions)).to eq(subject)
    end

    it "should call save on any versions" do
      subject.add_version("1.0.0")
      expect(account).to receive_message_chain(:client, :box_version_create).
        and_return({})
      subject.send(:save_versions)
    end
  end
end