require 'spec_helper' describe FileSet do let(:user) { create(:user) } subject { described_class.new(geo_mime_type: 'image/tiff; gdal-format=GTiff') } context "when geo_mime_type is a raster format" do it "responds as a raster file" do expect(subject.raster_file?).to be_truthy end it "doesn't respond as a vector file" do expect(subject.vector_file?).to be_falsey end end describe 'raster work association' do let(:work) { FactoryGirl.create(:raster_work_with_one_file) } subject { work.file_sets.first.reload } it 'belongs to raster work' do expect(subject.raster_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