-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
231 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,152 @@ | ||
require 'spec_helper' | ||
|
||
describe NetboxClientRuby::DeviceType, faraday_stub: true do | ||
let(:entity_id) { 1 } | ||
let(:expected_model) { 'devicetype1' } | ||
let(:sut) { NetboxClientRuby::DeviceType } | ||
let(:base_url) { '/api/dcim/device-types/' } | ||
|
||
let(:request_url) { "#{base_url}#{entity_id}.json" } | ||
let(:response) { File.read("spec/fixtures/dcim/device-type_#{entity_id}.json") } | ||
|
||
subject { sut.new entity_id } | ||
|
||
describe '#id' do | ||
it 'shall be the expected id' do | ||
expect(subject.id).to eq(entity_id) | ||
end | ||
end | ||
|
||
describe '#model' do | ||
it 'should fetch the data' do | ||
expect(faraday).to receive(:get).and_call_original | ||
|
||
expect(subject.model).to_not be_nil | ||
end | ||
|
||
it 'shall be the expected model' do | ||
expect(subject.model).to eq(expected_model) | ||
end | ||
end | ||
|
||
describe '#manufacturer' do | ||
it 'should return a Manufacturer' do | ||
expect(subject.manufacturer).to be_a(NetboxClientRuby::Manufacturer) | ||
end | ||
|
||
it 'should be the expected manufacturer' do | ||
expect(subject.manufacturer.id).to be(1) | ||
end | ||
end | ||
|
||
describe '#interface_ordering' do | ||
it 'should return a InterfaceOrdering' do | ||
expect(subject.interface_ordering).to be_a(NetboxClientRuby::InterfaceOrdering) | ||
end | ||
end | ||
|
||
describe '.delete' do | ||
let(:request_method) { :delete } | ||
let(:response_status) { 204 } | ||
let(:response) { nil } | ||
|
||
it 'should delete the object' do | ||
expect(faraday).to receive(request_method).and_call_original | ||
subject.delete | ||
end | ||
end | ||
|
||
describe '.update' do | ||
let(:request_method) { :patch } | ||
let(:request_params) { { 'model' => 'noob' } } | ||
|
||
it 'should update the object' do | ||
expect(faraday).to receive(request_method).and_call_original | ||
expect(subject.update(model: 'noob').model).to eq(expected_model) | ||
end | ||
end | ||
|
||
describe '.reload' do | ||
it 'should reload the object' do | ||
expect(faraday).to receive(request_method).twice.and_call_original | ||
|
||
subject.reload | ||
subject.reload | ||
end | ||
end | ||
|
||
describe '.save' do | ||
let(:model) { 'foobar' } | ||
let(:slug) { model } | ||
let(:request_params) { { 'model' => model, 'slug' => slug } } | ||
|
||
context 'update' do | ||
let(:request_method) { :patch } | ||
|
||
subject do | ||
region = sut.new entity_id | ||
region.model = model | ||
region.slug = slug | ||
region | ||
end | ||
|
||
it 'does not call PATCH until save is called' do | ||
expect(faraday).to_not receive(request_method) | ||
expect(faraday).to_not receive(:get) | ||
|
||
expect(subject.model).to eq(model) | ||
expect(subject.slug).to eq(slug) | ||
end | ||
|
||
it 'calls PATCH when save is called' do | ||
expect(faraday).to receive(request_method).and_call_original | ||
|
||
expect(subject.save).to be(subject) | ||
end | ||
|
||
it 'Reads the anwer from the PATCH answer' do | ||
expect(faraday).to receive(request_method).and_call_original | ||
|
||
subject.save | ||
expect(subject.model).to eq(expected_model) | ||
expect(subject.slug).to eq(expected_model) | ||
end | ||
end | ||
|
||
context 'create' do | ||
let(:request_method) { :post } | ||
let(:request_url) { base_url } | ||
|
||
subject do | ||
region = sut.new | ||
region.model = model | ||
region.slug = slug | ||
region | ||
end | ||
|
||
it 'does not POST until save is called' do | ||
expect(faraday).to_not receive(request_method) | ||
expect(faraday).to_not receive(:get) | ||
|
||
expect(subject.model).to eq(model) | ||
expect(subject.slug).to eq(slug) | ||
end | ||
|
||
it 'POSTs the data upon a call of save' do | ||
expect(faraday).to receive(request_method).and_call_original | ||
|
||
expect(subject.save).to be(subject) | ||
end | ||
|
||
it 'Reads the answer from the POST' do | ||
expect(faraday).to receive(request_method).and_call_original | ||
|
||
subject.save | ||
|
||
expect(subject.id).to be(1) | ||
expect(subject.model).to eq(expected_model) | ||
expect(subject.slug).to eq(expected_model) | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
require 'spec_helper' | ||
|
||
describe NetboxClientRuby::DeviceTypes, faraday_stub: true do | ||
let(:expected_length) { 1 } | ||
let(:singular_type) { NetboxClientRuby::DeviceType } | ||
|
||
let(:response) { File.read('spec/fixtures/dcim/device-types.json') } | ||
let(:request_url) { '/api/dcim/device-types.json' } | ||
let(:request_url_params) do | ||
{ limit: NetboxClientRuby.config.netbox.pagination.default_limit } | ||
end | ||
|
||
context 'unpaged fetch' do | ||
describe '#length' do | ||
it 'shall be the expected length' do | ||
expect(subject.length).to be expected_length | ||
end | ||
end | ||
|
||
describe '#total' do | ||
it 'shall be the expected total' do | ||
expect(subject.total).to be expected_length | ||
end | ||
end | ||
end | ||
|
||
describe '#reload' do | ||
it 'fetches the correct data' do | ||
expect(faraday).to receive(:get).and_call_original | ||
subject.reload | ||
end | ||
|
||
it 'caches the data' do | ||
expect(faraday).to receive(:get).and_call_original | ||
subject.total | ||
subject.total | ||
end | ||
|
||
it 'reloads the data' do | ||
expect(faraday).to receive(:get).twice.and_call_original | ||
subject.reload | ||
subject.reload | ||
end | ||
end | ||
|
||
describe '#as_array' do | ||
it 'return the correct amount' do | ||
expect(subject.as_array.length).to be expected_length | ||
end | ||
|
||
it 'returns Site instances' do | ||
subject.as_array.each do |element| | ||
expect(element).to be_a singular_type | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters