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 342 343 344 345 346 347 348 349 350 351 352
|
require 'spec_helper'
require 'vagrant_cloud'
describe VagrantCloud::Box::Version do
let(:box) { double("box", username: box_username, name: box_name, tag: "#{box_username}/#{box_name}") }
let(:box_username) { double("box_username") }
let(:box_name) { double("box_name") }
let(:version) { "1.0.0" }
let(:subject) { described_class.new(box: box, version: version) }
before { allow(box).to receive(:is_a?).with(VagrantCloud::Box).and_return(true) }
describe "#initialize" do
it "should require a box" do
expect { described_class.new }.to raise_error(ArgumentError)
end
it "should require box argument be box type" do
expect { described_class.new(box: nil) }.to raise_error(TypeError)
end
it "should load providers" do
instance = described_class.new(box: box, version: version, providers: [{name: "test"}])
expect(instance.providers).not_to be_empty
expect(instance.providers.first).to be_a(VagrantCloud::Box::Provider)
end
end
describe "#delete" do
before do
allow(box).to receive(:versions).and_return([])
allow(box).to receive_message_chain(:organization, :account, :client, :box_version_delete)
end
it "should not delete if version does not exist" do
expect(box).not_to receive(:organization)
subject.delete
end
it "should return nil" do
expect(subject.delete).to be_nil
end
context "when version exists" do
before do
allow(subject).to receive(:exist?).and_return(true)
allow(box).to receive(:clean)
end
it "should make a version deletion request" do
expect(box).to receive_message_chain(:organization, :account, :client, :box_version_delete)
subject.delete
end
it "should include box username and name" do
expect(box).to receive_message_chain(:organization, :account, :client, :box_version_delete).
with(hash_including(username: box_username, name: box_name))
subject.delete
end
it "should include the version" do
expect(box).to receive_message_chain(:organization, :account, :client, :box_version_delete).
with(hash_including(version: version))
subject.delete
end
it "should delete the version from the box versions" do
versions = double("versions")
expect(versions).to receive(:dup).and_return(versions)
expect(box).to receive(:versions).and_return(versions)
expect(versions).to receive(:delete).with(subject).and_return(versions)
expect(box).to receive(:clean).with(data: {versions: versions})
subject.delete
end
end
end
describe "#release" do
context "when version is released" do
before { allow(subject).to receive(:released?).and_return(true) }
it "should error" do
expect { subject.release }.to raise_error(VagrantCloud::Error::BoxError::VersionStatusChangeError)
end
end
context "when version has not been saved" do
before { allow(subject).to receive(:exist?).and_return(false) }
it "should error" do
expect { subject.release }.to raise_error(VagrantCloud::Error::BoxError::VersionStatusChangeError)
end
end
context "when version is saved and not released" do
before do
allow(subject).to receive(:exist?).and_return(true)
allow(subject).to receive(:released?).and_return(false)
end
it "should send request to release version" do
expect(box).to receive_message_chain(:organization, :account, :client, :box_version_release).
and_return({})
subject.release
end
it "should include box username, box name, and version" do
expect(box).to receive_message_chain(:organization, :account, :client, :box_version_release).
with(hash_including(username: box_username, name: box_name, version: version)).and_return({})
subject.release
end
it "should update status with value provided in result" do
expect(box).to receive_message_chain(:organization, :account, :client, :box_version_release).
and_return({status: "active"})
subject.release
expect(subject.status).to eq("active")
end
it "should return self" do
expect(box).to receive_message_chain(:organization, :account, :client, :box_version_release).
and_return({})
expect(subject.release).to eq(subject)
end
end
end
describe "#revoke" do
context "when version is not released" do
before { allow(subject).to receive(:released?).and_return(false) }
it "should error" do
expect { subject.revoke }.to raise_error(VagrantCloud::Error::BoxError::VersionStatusChangeError)
end
end
context "when version is released" do
before { allow(subject).to receive(:released?).and_return(true) }
it "should send request to revoke release" do
expect(box).to receive_message_chain(:organization, :account, :client, :box_version_revoke).
and_return({})
subject.revoke
end
it "should include the box username, box name, and version" do
expect(box).to receive_message_chain(:organization, :account, :client, :box_version_revoke).
with(hash_including(username: box_username, name: box_name, version: version)).and_return({})
subject.revoke
end
it "should update status with value provided in result" do
expect(box).to receive_message_chain(:organization, :account, :client, :box_version_revoke).
and_return({status: "inactive"})
subject.revoke
expect(subject.status).to eq("inactive")
end
it "should return self" do
expect(box).to receive_message_chain(:organization, :account, :client, :box_version_revoke).
and_return({})
expect(subject.revoke).to eq(subject)
end
end
end
describe "#add_provider" do
it "should create a new provider" do
expect(subject.add_provider("test")).to be_a(VagrantCloud::Box::Provider)
end
it "should add provider to providers collection" do
pv = subject.add_provider("test")
expect(subject.providers).to include(pv)
end
it "should raise error when provider exists" do
subject.add_provider("test")
expect { subject.add_provider("test") }.
to raise_error(VagrantCloud::Error::BoxError::VersionProviderExistsError)
end
end
describe "#dirty?" do
context "when version does not exist" do
before { allow(subject).to receive(:exist?).and_return(false) }
it "should be true" do
expect(subject.dirty?).to be_truthy
end
end
context "when version does exist" do
before { allow(subject).to receive(:exist?).and_return(true) }
it "should be false" do
expect(subject.dirty?).to be_falsey
end
context "with modified attribute" do
before { subject.description = "test" }
it "should be true" do
expect(subject.dirty?).to be_truthy
end
end
context "with deep check" do
it "should be false" do
expect(subject.dirty?(deep: true)).to be_falsey
end
context "with modified attribute" do
before { subject.description = "test" }
it "should be true" do
expect(subject.dirty?(deep: true)).to be_truthy
end
end
context "with dirty provider in providers collection" do
before { subject.add_provider("test") }
it "should be true" do
expect(subject.dirty?(deep: true)).to be_truthy
end
end
end
end
end
describe "#exist?" do
let(:subject) { described_class.new(box: box, version: version, created_at: created_at) }
context "with created_at attribute set" do
let(:created_at) { Time.now.to_s }
it "should be true" do
expect(subject.exist?).to be_truthy
end
end
context "with created_at attribute unset" do
let(:created_at) { nil }
it "should be false" do
expect(subject.exist?).to be_falsey
end
end
end
describe "#save" do
before do
allow(subject).to receive(:save_version)
allow(subject).to receive(:save_provdiers)
end
it "should return self" do
expect(subject.save).to eq(subject)
end
context "when version is dirty" do
before do
allow(subject).to receive(:dirty?).and_return(true)
allow(subject).to receive(:dirty?).with(deep: true).and_return(false)
end
it "should save the version" do
expect(subject).to receive(:save_version)
subject.save
end
end
context "when version is clean" do
before { allow(subject).to receive(:dirty?).and_return(false) }
it "should not save the version" do
expect(subject).not_to receive(:save_version)
subject.save
end
end
context "when dirty provider in providers collection" do
before { subject.add_provider("test") }
it "should save the providers" do
expect(subject).to receive(:save_providers)
subject.save
end
end
end
describe "#save_version" do
context "when version exists" do
before { allow(subject).to receive(:exist?).and_return(true) }
it "should request a version update" do
expect(box).to receive_message_chain(:organization, :account, :client, :box_version_update).
and_return({})
subject.send(:save_version)
end
it "should include the box username, box name, version, and description" do
expect(box).to receive_message_chain(:organization, :account, :client, :box_version_update).
with(hash_including(username: box_username, name: box_name, version: version, description: subject.description)).
and_return({})
subject.send(:save_version)
end
it "should return self" do
expect(box).to receive_message_chain(:organization, :account, :client, :box_version_update).
and_return({})
expect(subject.send(:save_version)).to eq(subject)
end
end
context "when version does not exist" do
before { allow(subject).to receive(:exist?).and_return(false) }
it "should request a version create" do
expect(box).to receive_message_chain(:organization, :account, :client, :box_version_create).
and_return({})
subject.send(:save_version)
end
it "should include the box username, box name, version, and description" do
expect(box).to receive_message_chain(:organization, :account, :client, :box_version_create).
with(hash_including(username: box_username, name: box_name, version: version, description: subject.description)).
and_return({})
subject.send(:save_version)
end
it "should return self" do
expect(box).to receive_message_chain(:organization, :account, :client, :box_version_create).
and_return({})
expect(subject.send(:save_version)).to eq(subject)
end
end
end
describe "#save_providers" do
it "should return self" do
expect(subject.send(:save_providers)).to eq(subject)
end
it "should save the providers" do
pv = subject.add_provider("test")
expect(pv).to receive(:save)
subject.send(:save_providers)
end
end
end
|