2011-03-07 17:39:47 +00:00
|
|
|
require 'spec_helper'
|
|
|
|
require 'avm/image'
|
|
|
|
|
|
|
|
describe AVM::Image do
|
2011-03-11 18:59:34 +00:00
|
|
|
let(:image) { self.class.describes.new(options) }
|
|
|
|
let(:options) { {} }
|
2011-03-07 17:39:47 +00:00
|
|
|
|
|
|
|
subject { image }
|
|
|
|
|
2011-03-14 16:35:29 +00:00
|
|
|
let(:title) { 'My title' }
|
|
|
|
let(:headline) { 'Headline' }
|
|
|
|
let(:description) { 'Description' }
|
|
|
|
let(:distance_notes) { 'Distance Notes' }
|
2011-03-16 14:41:01 +00:00
|
|
|
let(:spectral_notes) { 'Spectral Notes' }
|
2011-03-14 16:35:29 +00:00
|
|
|
let(:reference_url) { 'Reference URL' }
|
|
|
|
let(:credit) { 'Credit' }
|
|
|
|
let(:date) { '2010-01-01' }
|
|
|
|
let(:id) { 'ID' }
|
2011-03-15 14:55:09 +00:00
|
|
|
let(:type) { 'Observation' }
|
2011-03-14 16:35:29 +00:00
|
|
|
let(:image_quality) { 'Good' }
|
|
|
|
let(:redshift) { 'Redshift' }
|
|
|
|
let(:light_years) { 'Light years' }
|
2011-03-07 17:39:47 +00:00
|
|
|
|
2011-03-16 19:32:50 +00:00
|
|
|
let(:coordinate_frame) { 'ICRS' }
|
|
|
|
let(:equinox) { '100' }
|
|
|
|
let(:reference_value) { [ 100, 50 ] }
|
|
|
|
let(:reference_dimension) { [ 200, 150 ] }
|
|
|
|
let(:reference_pixel) { [ 25, 15 ] }
|
|
|
|
let(:spatial_scale) { [ 40, 35 ] }
|
2011-03-17 17:30:19 +00:00
|
|
|
let(:spatial_rotation) { 10.0 }
|
2011-03-16 19:32:50 +00:00
|
|
|
let(:coordinate_system_projection) { 'TAN' }
|
|
|
|
let(:spatial_quality) { 'Full' }
|
|
|
|
let(:spatial_notes) { 'Spatial Notes' }
|
|
|
|
let(:fits_header) { 'FITS header' }
|
|
|
|
let(:spatial_cd_matrix) { [ 1, 2, 3, 4 ] }
|
|
|
|
|
2011-03-18 19:49:11 +00:00
|
|
|
let(:publisher) { 'Publisher' }
|
|
|
|
let(:publisher_id) { 'Publisher ID' }
|
|
|
|
let(:resource_id) { 'Resource ID' }
|
|
|
|
let(:resource_url) { 'Resource URL' }
|
|
|
|
let(:related_resources) { [ 'Resource 1', 'Resource 2' ] }
|
|
|
|
let(:metadata_date) { '2010-01-05' }
|
|
|
|
let(:metadata_version) { '1.2' }
|
|
|
|
|
2011-03-14 16:35:29 +00:00
|
|
|
def self.with_all_options
|
2011-03-11 18:59:34 +00:00
|
|
|
let(:options) { {
|
|
|
|
:title => title,
|
|
|
|
:headline => headline,
|
|
|
|
:description => description,
|
|
|
|
:distance_notes => distance_notes,
|
2011-03-16 14:41:01 +00:00
|
|
|
:spectral_notes => spectral_notes,
|
2011-03-11 18:59:34 +00:00
|
|
|
:reference_url => reference_url,
|
|
|
|
:credit => credit,
|
|
|
|
:date => date,
|
|
|
|
:id => id,
|
|
|
|
:type => type,
|
2011-03-15 14:55:09 +00:00
|
|
|
:quality => image_quality,
|
2011-03-11 19:04:50 +00:00
|
|
|
:redshift => redshift,
|
2011-03-16 19:32:50 +00:00
|
|
|
:light_years => light_years,
|
|
|
|
:coordinate_frame => coordinate_frame,
|
|
|
|
:equinox => equinox,
|
|
|
|
:reference_value => reference_value,
|
|
|
|
:reference_dimension => reference_dimension,
|
|
|
|
:reference_pixel => reference_pixel,
|
|
|
|
:spatial_scale => spatial_scale,
|
|
|
|
:spatial_rotation => spatial_rotation,
|
|
|
|
:coordinate_system_projection => coordinate_system_projection,
|
|
|
|
:spatial_quality => spatial_quality,
|
|
|
|
:spatial_notes => spatial_notes,
|
|
|
|
:fits_header => fits_header,
|
|
|
|
:spatial_cd_matrix => spatial_cd_matrix,
|
2011-03-18 19:49:11 +00:00
|
|
|
:publisher => publisher,
|
|
|
|
:publisher_id => publisher_id,
|
|
|
|
:resource_id => resource_id,
|
|
|
|
:resource_url => resource_url,
|
|
|
|
:related_resources => related_resources,
|
|
|
|
:metadata_date => metadata_date,
|
|
|
|
:metadata_version => metadata_version,
|
2011-03-11 18:59:34 +00:00
|
|
|
} }
|
2011-03-14 16:35:29 +00:00
|
|
|
end
|
2011-03-11 18:59:34 +00:00
|
|
|
|
2011-03-17 17:30:19 +00:00
|
|
|
let(:avm_image_type) { eval("AVM::ImageType::#{type}") }
|
|
|
|
let(:avm_image_quality) { eval("AVM::ImageQuality::#{image_quality}") }
|
|
|
|
let(:avm_coordinate_frame) { eval("AVM::CoordinateFrame::#{coordinate_frame}") }
|
|
|
|
let(:avm_coordinate_system_projection) { eval("AVM::CoordinateSystemProjection::#{coordinate_system_projection}") }
|
|
|
|
let(:avm_spatial_quality) { eval("AVM::SpatialQuality::#{spatial_quality}") }
|
|
|
|
|
2011-03-15 14:55:09 +00:00
|
|
|
def self.has_most_options
|
2011-03-07 17:39:47 +00:00
|
|
|
its(:creator) { should be_a_kind_of(AVM::Creator) }
|
2011-03-11 18:59:34 +00:00
|
|
|
its(:title) { should == title }
|
|
|
|
its(:headline) { should == headline }
|
|
|
|
its(:description) { should == description }
|
|
|
|
its(:distance_notes) { should == distance_notes }
|
2011-03-16 14:41:01 +00:00
|
|
|
its(:spectral_notes) { should == spectral_notes }
|
2011-03-11 18:59:34 +00:00
|
|
|
its(:reference_url) { should == reference_url }
|
|
|
|
its(:credit) { should == credit }
|
|
|
|
its(:date) { should == Time.parse(date) }
|
|
|
|
its(:id) { should == id }
|
2011-03-17 17:30:19 +00:00
|
|
|
its(:image_type) { should be_a_kind_of avm_image_type }
|
|
|
|
its(:image_quality) { should be_a_kind_of avm_image_quality }
|
2011-03-16 19:32:50 +00:00
|
|
|
|
2011-03-17 17:30:19 +00:00
|
|
|
its(:coordinate_frame) { should be_a_kind_of avm_coordinate_frame }
|
2011-03-16 19:32:50 +00:00
|
|
|
its(:equinox) { should == equinox }
|
|
|
|
its(:reference_value) { should == reference_value }
|
|
|
|
its(:reference_dimension) { should == reference_dimension }
|
|
|
|
its(:reference_pixel) { should == reference_pixel }
|
|
|
|
its(:spatial_scale) { should == spatial_scale }
|
|
|
|
its(:spatial_rotation) { should == spatial_rotation }
|
2011-03-17 17:30:19 +00:00
|
|
|
its(:coordinate_system_projection) { should be_a_kind_of avm_coordinate_system_projection }
|
|
|
|
its(:spatial_quality) { should be_a_kind_of avm_spatial_quality }
|
2011-03-16 19:32:50 +00:00
|
|
|
its(:spatial_notes) { should == spatial_notes }
|
|
|
|
its(:fits_header) { should == fits_header }
|
|
|
|
its(:spatial_cd_matrix) { should == spatial_cd_matrix }
|
2011-03-18 19:49:11 +00:00
|
|
|
|
|
|
|
its(:publisher) { should == publisher }
|
|
|
|
its(:publisher_id) { should == publisher_id }
|
|
|
|
its(:resource_id) { should == resource_id }
|
|
|
|
its(:resource_url) { should == resource_url }
|
|
|
|
its(:related_resources) { should == related_resources }
|
|
|
|
its(:metadata_date) { should == Time.parse(metadata_date) }
|
|
|
|
its(:metadata_version) { should == metadata_version }
|
2011-03-15 14:55:09 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
describe '#initialize' do
|
|
|
|
with_all_options
|
|
|
|
|
|
|
|
it { should be_a_kind_of(AVM::Image) }
|
|
|
|
|
|
|
|
has_most_options
|
2011-03-11 19:04:50 +00:00
|
|
|
|
2011-03-17 17:30:19 +00:00
|
|
|
its(:to_h) { should == {
|
|
|
|
:title => title,
|
|
|
|
:headline => headline,
|
|
|
|
:description => description,
|
|
|
|
:distance_notes => distance_notes,
|
|
|
|
:spectral_notes => spectral_notes,
|
|
|
|
:reference_url => reference_url,
|
|
|
|
:credit => credit,
|
|
|
|
:date => Time.parse(date),
|
|
|
|
:id => id,
|
|
|
|
:image_type => avm_image_type.new,
|
|
|
|
:image_quality => avm_image_quality.new,
|
|
|
|
:coordinate_frame => avm_coordinate_frame.new,
|
|
|
|
:equinox => equinox,
|
|
|
|
:reference_value => reference_value,
|
|
|
|
:reference_dimension => reference_dimension,
|
|
|
|
:reference_pixel => reference_pixel,
|
|
|
|
:spatial_scale => spatial_scale,
|
|
|
|
:spatial_rotation => spatial_rotation,
|
|
|
|
:coordinate_system_projection => avm_coordinate_system_projection.new,
|
|
|
|
:spatial_quality => avm_spatial_quality.new,
|
|
|
|
:spatial_notes => spatial_notes,
|
|
|
|
:fits_header => fits_header,
|
|
|
|
:spatial_cd_matrix => spatial_cd_matrix,
|
|
|
|
:distance => [ light_years, redshift ],
|
2011-03-18 19:49:11 +00:00
|
|
|
:creator => [],
|
|
|
|
:publisher => publisher,
|
|
|
|
:publisher_id => publisher_id,
|
|
|
|
:resource_id => resource_id,
|
|
|
|
:resource_url => resource_url,
|
|
|
|
:related_resources => related_resources,
|
|
|
|
:metadata_date => Time.parse(metadata_date),
|
|
|
|
:metadata_version => metadata_version,
|
2011-03-17 17:30:19 +00:00
|
|
|
} }
|
|
|
|
|
2011-03-11 19:04:50 +00:00
|
|
|
its(:distance) { should == [ light_years, redshift ] }
|
2011-03-07 17:39:47 +00:00
|
|
|
end
|
2011-03-09 15:14:31 +00:00
|
|
|
|
2011-03-15 14:55:09 +00:00
|
|
|
describe '.from_xml' do
|
|
|
|
let(:image) { AVM::Image.from_xml(File.read(file_path)) }
|
|
|
|
|
|
|
|
subject { image }
|
|
|
|
|
|
|
|
context "nothing in it" do
|
|
|
|
let(:file_path) { 'spec/sample_files/image/nothing.xmp' }
|
|
|
|
|
2011-03-16 19:32:50 +00:00
|
|
|
[ :title, :headline, :description, :distance_notes,
|
|
|
|
:spectral_notes, :reference_url, :credit, :date,
|
|
|
|
:id, :image_type, :image_quality, :redshift,
|
|
|
|
:light_years, :coordinate_frame, :equinox, :reference_value,
|
|
|
|
:reference_dimension, :reference_pixel, :spatial_scale,
|
|
|
|
:spatial_rotation, :coordinate_system_projection, :spatial_quality, :spatial_notes,
|
|
|
|
:fits_header, :spatial_cd_matrix
|
|
|
|
].each do |field|
|
|
|
|
its(field) { should be_nil }
|
|
|
|
end
|
2011-03-15 14:55:09 +00:00
|
|
|
end
|
2011-03-16 19:32:50 +00:00
|
|
|
|
2011-03-15 14:55:09 +00:00
|
|
|
context "image in it" do
|
2011-03-18 16:28:53 +00:00
|
|
|
context 'distance as a single value, assume light years' do
|
|
|
|
let(:file_path) { 'spec/sample_files/image/single_value_light_years.xmp' }
|
|
|
|
|
|
|
|
has_most_options
|
|
|
|
|
|
|
|
its(:redshift) { should be_nil }
|
|
|
|
its(:light_years) { should == light_years }
|
|
|
|
end
|
|
|
|
|
2011-03-15 14:55:09 +00:00
|
|
|
context "distance in light years" do
|
|
|
|
let(:file_path) { 'spec/sample_files/image/light_years.xmp' }
|
|
|
|
|
|
|
|
has_most_options
|
|
|
|
|
|
|
|
its(:redshift) { should be_nil }
|
2011-03-15 15:16:10 +00:00
|
|
|
its(:light_years) { should == light_years }
|
2011-03-15 14:55:09 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
context "distaince in redshift" do
|
2011-03-15 15:16:10 +00:00
|
|
|
let(:file_path) { 'spec/sample_files/image/redshift.xmp' }
|
|
|
|
|
|
|
|
has_most_options
|
|
|
|
|
|
|
|
its(:light_years) { should be_nil }
|
|
|
|
its(:redshift) { should == redshift }
|
2011-03-15 14:55:09 +00:00
|
|
|
end
|
2011-03-15 15:16:10 +00:00
|
|
|
|
2011-03-15 14:55:09 +00:00
|
|
|
context "distance in both" do
|
2011-03-15 15:16:10 +00:00
|
|
|
let(:file_path) { 'spec/sample_files/image/both.xmp' }
|
2011-03-15 14:55:09 +00:00
|
|
|
|
2011-03-15 15:16:10 +00:00
|
|
|
has_most_options
|
|
|
|
|
|
|
|
its(:light_years) { should == light_years }
|
|
|
|
its(:redshift) { should == redshift }
|
2011-03-15 14:55:09 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-03-09 15:14:31 +00:00
|
|
|
describe '#to_xml' do
|
|
|
|
let(:xml) { image.to_xml }
|
|
|
|
|
2011-03-15 14:55:09 +00:00
|
|
|
let(:dublin_core) { xml.at_xpath('//rdf:Description[@rdf:about="Dublin Core"]') }
|
|
|
|
let(:photoshop) { xml.at_xpath('//rdf:Description[@rdf:about="Photoshop"]') }
|
|
|
|
let(:avm) { xml.at_xpath('//rdf:Description[@rdf:about="AVM"]') }
|
2011-03-14 16:35:29 +00:00
|
|
|
|
2011-03-09 15:14:31 +00:00
|
|
|
context 'nothing in it' do
|
2011-03-14 16:35:29 +00:00
|
|
|
it "should have basic tags" do
|
|
|
|
xml.at_xpath('//rdf:RDF').should_not be_nil
|
|
|
|
xml.search('//rdf:RDF/rdf:Description').should_not be_empty
|
2011-03-18 16:28:53 +00:00
|
|
|
photoshop.at_xpath('./photoshop:DateCreated').should_not be_nil
|
2011-03-14 16:35:29 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with basics' do
|
|
|
|
with_all_options
|
|
|
|
|
2011-03-16 21:09:49 +00:00
|
|
|
def xpath_text(which, xpath)
|
|
|
|
which.at_xpath(xpath).text
|
|
|
|
end
|
|
|
|
|
2011-03-18 19:49:11 +00:00
|
|
|
def xpath_list(which, xpath, search = './/rdf:li')
|
|
|
|
which.at_xpath(xpath).search(search).collect(&:text)
|
2011-03-16 21:09:49 +00:00
|
|
|
end
|
|
|
|
|
2011-03-14 16:35:29 +00:00
|
|
|
it "should have the image info tags" do
|
2011-03-16 21:09:49 +00:00
|
|
|
xpath_text(dublin_core, './dc:title/rdf:Alt/rdf:li').should == title
|
|
|
|
xpath_text(photoshop, './photoshop:Headline').should == headline
|
|
|
|
xpath_text(dublin_core, './dc:description/rdf:Alt/rdf:li').should == description
|
|
|
|
|
|
|
|
xpath_text(avm, './avm:Distance.Notes').should == distance_notes
|
|
|
|
xpath_text(avm, './avm:Spectral.Notes').should == spectral_notes
|
|
|
|
xpath_text(avm, './avm:ReferenceURL').should == reference_url
|
2011-03-18 19:49:11 +00:00
|
|
|
xpath_text(photoshop, './photoshop:Credit').should == credit
|
2011-03-18 16:28:53 +00:00
|
|
|
xpath_text(photoshop, './photoshop:DateCreated').should == date
|
2011-03-16 21:09:49 +00:00
|
|
|
xpath_text(avm, './avm:ID').should == id
|
|
|
|
xpath_text(avm, './avm:Type').should == type
|
|
|
|
xpath_text(avm, './avm:Image.ProductQuality').should == image_quality
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should have the spatial tags" do
|
|
|
|
xpath_text(avm, './avm:Spatial.CoordinateFrame').should == coordinate_frame
|
|
|
|
xpath_text(avm, './avm:Spatial.Equinox').should == equinox
|
|
|
|
xpath_list(avm, './avm:Spatial.ReferenceValue').should == reference_value.collect(&:to_s)
|
|
|
|
xpath_list(avm, './avm:Spatial.ReferenceDimension').should == reference_dimension.collect(&:to_s)
|
|
|
|
xpath_list(avm, './avm:Spatial.ReferencePixel').should == reference_pixel.collect(&:to_s)
|
|
|
|
xpath_list(avm, './avm:Spatial.Scale').should == spatial_scale.collect(&:to_s)
|
|
|
|
xpath_text(avm, './avm:Spatial.CoordsystemProjection').should == coordinate_system_projection
|
|
|
|
xpath_text(avm, './avm:Spatial.Quality').should == spatial_quality
|
|
|
|
xpath_text(avm, './avm:Spatial.Notes').should == spatial_notes
|
|
|
|
xpath_text(avm, './avm:Spatial.FITSheader').should == fits_header
|
|
|
|
xpath_list(avm, './avm:Spatial.CDMatrix').should == spatial_cd_matrix.collect(&:to_s)
|
2011-03-14 16:35:29 +00:00
|
|
|
end
|
|
|
|
|
2011-03-18 19:49:11 +00:00
|
|
|
it "should have the publisher tags" do
|
|
|
|
xpath_text(avm, './avm:Publisher').should == publisher
|
|
|
|
xpath_text(avm, './avm:PublisherID').should == publisher_id
|
|
|
|
xpath_text(avm, './avm:ResourceID').should == resource_id
|
|
|
|
xpath_text(avm, './avm:ResourceURL').should == resource_url
|
|
|
|
xpath_list(avm, './avm:RelatedResources', './rdf:Bag/rdf:li').should == related_resources
|
|
|
|
xpath_text(avm, './avm:MetadataDate').should == metadata_date
|
|
|
|
xpath_text(avm, './avm:MetadataVersion').should == metadata_version
|
|
|
|
end
|
|
|
|
|
2011-03-14 16:35:29 +00:00
|
|
|
context "distance" do
|
|
|
|
context "no distances" do
|
2011-03-15 14:55:09 +00:00
|
|
|
let(:redshift) { nil }
|
|
|
|
let(:light_years) { nil }
|
2011-03-14 16:35:29 +00:00
|
|
|
|
2011-03-15 14:55:09 +00:00
|
|
|
specify { avm.at_xpath('./avm:Distance').should be_nil }
|
2011-03-14 16:35:29 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
context "redshift only" do
|
2011-03-15 14:55:09 +00:00
|
|
|
let(:light_years) { nil }
|
|
|
|
|
|
|
|
specify { avm.at_xpath('./avm:Distance/rdf:Seq/rdf:li[1]').text.should == '-' }
|
|
|
|
specify { avm.at_xpath('./avm:Distance/rdf:Seq/rdf:li[2]').text.should == redshift }
|
2011-03-14 16:35:29 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
context "light years only" do
|
2011-03-15 14:55:09 +00:00
|
|
|
let(:redshift) { nil }
|
|
|
|
|
|
|
|
specify { avm.at_xpath('./avm:Distance/rdf:Seq/rdf:li[1]').text.should == light_years }
|
|
|
|
specify { avm.at_xpath('./avm:Distance/rdf:Seq/rdf:li[2]').should be_nil }
|
2011-03-14 16:35:29 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
context "redshift and light years" do
|
2011-03-15 14:55:09 +00:00
|
|
|
specify { avm.at_xpath('./avm:Distance/rdf:Seq/rdf:li[1]').text.should == light_years }
|
|
|
|
specify { avm.at_xpath('./avm:Distance/rdf:Seq/rdf:li[2]').text.should == redshift }
|
2011-03-14 16:35:29 +00:00
|
|
|
end
|
|
|
|
end
|
2011-03-09 15:14:31 +00:00
|
|
|
end
|
|
|
|
end
|
2011-03-07 17:39:47 +00:00
|
|
|
end
|
|
|
|
|