Sha256: dd1214ba5ae1a91e4ffb51c062c29aa0c5f5ed8a12e72f894d7ec48117bd1b1d
Contents?: true
Size: 1.38 KB
Versions: 18
Compression:
Stored size: 1.38 KB
Contents
require 'spec_helper' describe FileSet do let(:user) { create(:user) } subject { described_class.new(geo_mime_type: 'application/zip; ogr-format="ESRI Shapefile"') } context "when geo_mime_type is a vector format" do it "responds as a vector file" do expect(subject.vector_file?).to be_truthy end it "doesn't respond as a raster file" do expect(subject.raster_file?).to be_falsey end end describe 'vector work association' do let(:work) { FactoryGirl.create(:vector_work_with_one_file) } subject { work.file_sets.first.reload } it 'belongs to vector work' do expect(subject.vector_work).to match_array [work] end end describe "to_solr" do let(:solr_doc) { FactoryGirl.build(:vector_file, date_uploaded: Time.zone.today, cartographic_projection: 'urn:ogc:def:crs:EPSG::6326').to_solr } it "indexes the coordinate reference system" do expect(solr_doc.keys).to include 'cartographic_projection_tesim' end end describe 'metadata' do it 'has descriptive metadata' do expect(subject).to respond_to(:title) end it 'has an authoritative cartographic projection' do expect(subject).to respond_to(:cartographic_projection) end it 'has standard' do expect(subject).to respond_to(:geo_mime_type) end end end
Version data entries
18 entries across 18 versions & 2 rubygems