2024-10-21 16:03:58 -07:00
|
|
|
require 'rails_helper'
|
2024-10-24 14:42:05 -07:00
|
|
|
require_relative '../support/mocks/custom_pets'
|
|
|
|
require_relative '../support/matchers/a_record_matching'
|
2024-10-21 16:03:58 -07:00
|
|
|
|
|
|
|
RSpec.describe Pet, type: :model do
|
2024-10-21 16:46:10 -07:00
|
|
|
fixtures :colors, :species, :zones
|
|
|
|
|
2024-10-21 16:03:58 -07:00
|
|
|
context "#load" do
|
|
|
|
context "for thyassa, the Purple Chia" do
|
2024-10-24 15:04:25 -07:00
|
|
|
subject(:pet) { Pet.load "thyassa" }
|
2024-10-21 16:03:58 -07:00
|
|
|
|
|
|
|
it "is named thyassa" do
|
2024-10-24 15:04:25 -07:00
|
|
|
expect(pet.name).to eq("thyassa")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "has no items" do
|
|
|
|
expect(pet.items).to be_empty
|
2024-10-21 16:03:58 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
it "has a new Purple Chia pet type" do
|
2024-10-24 15:04:25 -07:00
|
|
|
expect(pet.pet_type.new_record?).to be true
|
|
|
|
expect(pet.pet_type.color).to eq Color.find_by_name!("purple")
|
|
|
|
expect(pet.pet_type.species).to eq Species.find_by_name!("chia")
|
|
|
|
expect(pet.pet_type.body_id).to eq 212
|
|
|
|
expect(pet.pet_type.image_hash).to eq "m:thyass"
|
2024-10-21 16:03:58 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
it "has a new unlabeled Purple Chia pet state" do
|
2024-10-24 15:04:25 -07:00
|
|
|
expect(pet.pet_state.new_record?).to be true
|
|
|
|
expect(pet.pet_state.color).to eq Color.find_by_name!("purple")
|
|
|
|
expect(pet.pet_state.species).to eq Species.find_by_name!("chia")
|
|
|
|
expect(pet.pet_state.pose).to eq "UNKNOWN"
|
2024-10-21 16:03:58 -07:00
|
|
|
end
|
2024-10-21 16:46:10 -07:00
|
|
|
|
|
|
|
it "has new assets for the biology layers" do
|
2024-10-24 15:04:25 -07:00
|
|
|
pet.save! # TODO: I wish this were set up before saving.
|
2024-10-21 16:46:10 -07:00
|
|
|
|
2024-10-24 15:04:25 -07:00
|
|
|
expect(pet.pet_state.swf_assets).to contain_exactly(
|
2024-10-24 14:42:05 -07:00
|
|
|
a_record_matching(
|
|
|
|
type: "biology",
|
|
|
|
remote_id: 10083,
|
|
|
|
zone_id: 37,
|
|
|
|
url: "https://images.neopets.com/cp/bio/swf/000/000/010/10083_8a1111a13f.swf",
|
|
|
|
manifest_url: "https://images.neopets.com/cp/bio/data/000/000/010/10083_8a1111a13f/manifest.json",
|
|
|
|
zones_restrict: "0000000000000000000000000000000000000000000000000000",
|
|
|
|
),
|
|
|
|
a_record_matching(
|
|
|
|
type: "biology",
|
|
|
|
remote_id: 11613,
|
|
|
|
zone_id: 15,
|
|
|
|
url: "https://images.neopets.com/cp/bio/swf/000/000/011/11613_f7d8d377ab.swf",
|
|
|
|
manifest_url: "https://images.neopets.com/cp/bio/data/000/000/011/11613_f7d8d377ab/manifest.json",
|
|
|
|
zones_restrict: "0000000000000000000000000000000000000000000000000000",
|
|
|
|
),
|
|
|
|
a_record_matching(
|
|
|
|
type: "biology",
|
|
|
|
remote_id: 14187,
|
|
|
|
zone_id: 34,
|
|
|
|
url: "https://images.neopets.com/cp/bio/swf/000/000/014/14187_0e65c2082f.swf",
|
|
|
|
manifest_url: "https://images.neopets.com/cp/bio/data/000/000/014/14187_0e65c2082f/manifest.json",
|
|
|
|
zones_restrict: "0000000000000000000000000000000000000000000000000000",
|
|
|
|
),
|
|
|
|
a_record_matching(
|
|
|
|
type: "biology",
|
|
|
|
remote_id: 14189,
|
|
|
|
zone_id: 33,
|
|
|
|
url: "https://images.neopets.com/cp/bio/swf/000/000/014/14189_102e4991e9.swf",
|
|
|
|
manifest_url: "https://images.neopets.com/cp/bio/data/000/000/014/14189_102e4991e9/manifest.json",
|
|
|
|
zones_restrict: "0000000000000000000000000000000000000000000000000000",
|
|
|
|
)
|
|
|
|
)
|
2024-10-21 16:46:10 -07:00
|
|
|
end
|
2024-10-24 15:04:25 -07:00
|
|
|
|
|
|
|
it "saves the pet type when saved" do
|
|
|
|
expect { pet.save! }.to change { pet.pet_type.persisted? }.from(false).to(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "saves the pet state when saved" do
|
|
|
|
expect { pet.save! }.to change { pet.pet_state.persisted? }.from(false).to(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when modeled a second time" do
|
|
|
|
before { pet.save! }
|
|
|
|
subject!(:new_pet) { Pet.load("thyassa") }
|
|
|
|
|
|
|
|
describe "its pet type" do
|
|
|
|
subject(:pet_type) { new_pet.pet_type }
|
|
|
|
|
|
|
|
it("already exists") { should be_persisted }
|
|
|
|
it("is the same as before") { should eq pet.pet_type }
|
|
|
|
it "is not changed when saving the pet" do
|
|
|
|
expect { new_pet.save! }.not_to change { pet_type.attributes }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "its pet state" do
|
|
|
|
subject(:pet_state) { new_pet.pet_state }
|
|
|
|
|
|
|
|
it("already exists") { should be_persisted }
|
|
|
|
it("is the same as before") { should eq pet.pet_state }
|
|
|
|
it "is not changed when saving the pet" do
|
|
|
|
expect { new_pet.save! }.not_to change { pet_state.attributes }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2024-10-21 16:03:58 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|