summaryrefslogtreecommitdiff
path: root/spec/views/v1
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2014-02-22 07:27:56 -0700
committermo khan <mo@mokhan.ca>2014-02-22 07:27:56 -0700
commit10d812064f745c4d11eeba91daf3376e608f0c6f (patch)
tree3a35a5233f1ae110d8bd9ea205af7994aecaeef6 /spec/views/v1
parentd135f8b87de18d684b815d758ec2eaef9149ee23 (diff)
update json response for company_licenses#index.
Diffstat (limited to 'spec/views/v1')
-rw-r--r--spec/views/v1/company_licenses/index.json.jbuilder_spec.rb29
-rw-r--r--spec/views/v1/licenses/index.json.jbuilder_spec.rb21
2 files changed, 42 insertions, 8 deletions
diff --git a/spec/views/v1/company_licenses/index.json.jbuilder_spec.rb b/spec/views/v1/company_licenses/index.json.jbuilder_spec.rb
index 52b5fe5..6d85141 100644
--- a/spec/views/v1/company_licenses/index.json.jbuilder_spec.rb
+++ b/spec/views/v1/company_licenses/index.json.jbuilder_spec.rb
@@ -1,18 +1,41 @@
require "spec_helper"
describe 'v1/company_licenses/index' do
- let!(:company) { Company.create(name: 'acme') }
- let!(:license) { company.licenses.create(issued_at: 2.days.ago, expired_at: 1.day.from_now) }
+ let(:company) { Company.new(name: 'ABC Resources Ltd.') }
+ let(:user) { User.new(company: company) }
+ let(:location) { Location.new(latitude: 51.06, longitude: -114.09, township: '1') }
+ let(:well_type) { WellType::DEV }
+ let(:license) { License.new(id: SecureRandom.uuid, company: company, applicant: user, location: location, issued_at: 2.days.ago, expired_at: 1.day.from_now, well_type: well_type) }
before :each do
- assign(:licenses, company.licenses)
+ assign(:licenses, [license])
render
end
let(:result) { JSON.parse(rendered) }
+ it "includes the license id" do
+ result.first["id"].should == license.id
+ end
+
it "includes the license date range" do
result.first["issued_at"].should == license.issued_at.to_s
result.first["expired_at"].should == license.expired_at.to_s
end
+
+ it "includes the company information" do
+ result.first["company"]["name"].should == license.company.name
+ end
+
+ it "includes information on the type of well" do
+ result.first["well_type"]["id"].should == well_type.id
+ result.first["well_type"]["acronym"].should == well_type.acronym
+ result.first["well_type"]["name"].should == well_type.name
+ end
+
+ it "includes location information" do
+ result.first["location"]["latitude"].should == location.latitude
+ result.first["location"]["longitude"].should == location.longitude
+ result.first["location"]["township"].should == location.township
+ end
end
diff --git a/spec/views/v1/licenses/index.json.jbuilder_spec.rb b/spec/views/v1/licenses/index.json.jbuilder_spec.rb
index 412f6fb..c3743a5 100644
--- a/spec/views/v1/licenses/index.json.jbuilder_spec.rb
+++ b/spec/views/v1/licenses/index.json.jbuilder_spec.rb
@@ -5,26 +5,37 @@ describe 'v1/licenses/index' do
let(:user) { User.new(company: company) }
let(:location) { Location.new(latitude: 51.06, longitude: -114.09, township: '1') }
let(:well_type) { WellType::DEV }
- let!(:license) { License.new(id: SecureRandom.uuid, company: company, applicant: user, location: location, issued_at: 2.days.ago, expired_at: 1.day.from_now, well_type: well_type) }
+ let(:license) { License.new(id: SecureRandom.uuid, company: company, applicant: user, location: location, issued_at: 2.days.ago, expired_at: 1.day.from_now, well_type: well_type) }
before :each do
assign(:licenses, [license])
render
- puts rendered
end
let(:result) { JSON.parse(rendered) }
- it "includes the license date range" do
+ it "includes the license id" do
result.first["id"].should == license.id
+ end
+
+ it "includes the license date range" do
+ result.first["issued_at"].should == license.issued_at.to_s
+ result.first["expired_at"].should == license.expired_at.to_s
+ end
+
+ it "includes the company information" do
result.first["company"]["name"].should == license.company.name
+ end
+
+ it "includes information on the type of well" do
result.first["well_type"]["id"].should == well_type.id
result.first["well_type"]["acronym"].should == well_type.acronym
result.first["well_type"]["name"].should == well_type.name
+ end
+
+ it "includes location information" do
result.first["location"]["latitude"].should == location.latitude
result.first["location"]["longitude"].should == location.longitude
result.first["location"]["township"].should == location.township
- result.first["issued_at"].should == license.issued_at.to_s
- result.first["expired_at"].should == license.expired_at.to_s
end
end