spec/model/slideshow_spec.rb in slideshare_api-0.0.3 vs spec/model/slideshow_spec.rb in slideshare_api-0.0.4

- old
+ new

@@ -1,160 +1,271 @@ require 'spec_helper' describe SlideshareApi::Model::Slideshow do describe 'attributes' do - let(:slideshow_xml) { Nokogiri::XML(open('spec/fixtures/slideshow.xml').read) } + context 'without xml input' do + subject { SlideshareApi::Model::Slideshow.new } - subject { SlideshareApi::Model::Slideshow.new slideshow_xml } + it { expect(subject.original_slideshow_xml).to be nil } + end - it { expect(subject.original_slideshow_xml).to eq slideshow_xml } - it { expect(subject.id).to eq slideshow_xml.search('ID').text.to_i } - it { expect(subject.title).to eq slideshow_xml.search('Title').text } - it { expect(subject.description).to eq slideshow_xml.search('Description').text } + context 'with xml input' do + subject { SlideshareApi::Model::Slideshow.new slideshow_xml } - describe 'status' do - context 'queued_for_conversion' do - before { slideshow_xml.search('Status').first.content = 0 } - it { expect(subject.status).to eq :queued_for_conversion } - end + context 'not detailed xml' do + let(:slideshow_xml) { Nokogiri::XML(open('spec/fixtures/slideshow.xml').read) } - context 'converting' do - before { slideshow_xml.search('Status').first.content = 1 } - it { expect(subject.status).to eq :converting } - end + it { expect(subject.original_slideshow_xml).to eq slideshow_xml } + it { expect(subject.id).to eq slideshow_xml.search('ID').text.to_i } + it { expect(subject.title).to eq slideshow_xml.search('Title').text } + it { expect(subject.description).to eq slideshow_xml.search('Description').text } - context 'converted' do - before { slideshow_xml.search('Status').first.content = 2 } - it { expect(subject.status).to eq :converted } - end + describe 'status' do + context 'queued_for_conversion' do + before { slideshow_xml.search('Status').first.content = 0 } + it { expect(subject.status).to eq :queued_for_conversion } + end - context 'conversion_failed' do - before { slideshow_xml.search('Status').first.content = 3 } - it { expect(subject.status).to eq :conversion_failed } - end - end + context 'converting' do + before { slideshow_xml.search('Status').first.content = 1 } + it { expect(subject.status).to eq :converting } + end - it { expect(subject.username).to eq slideshow_xml.search('Username').text } - it { expect(subject.url).to eq slideshow_xml.search('URL').text } - it { expect(subject.thumbnail_url).to eq slideshow_xml.search('ThumbnailURL').text } - it { expect(subject.thumbnail_size).to eq slideshow_xml.search('ThumbnailSize').text } - it { expect(subject.thumbnail_small_url).to eq slideshow_xml.search('ThumbnailSmallURL').text } - it { expect(subject.embed).to eq slideshow_xml.search('Embed').text } - it { expect(subject.created_at).to eq Time.parse slideshow_xml.search('Created').text } - it { expect(subject.updated_at).to eq Time.parse slideshow_xml.search('Updated').text } - it { expect(subject.language).to eq slideshow_xml.search('Language').text } - it { expect(subject.format).to eq slideshow_xml.search('Format').text } + context 'converted' do + before { slideshow_xml.search('Status').first.content = 2 } + it { expect(subject.status).to eq :converted } + end - context 'it is downloadable' do - before { slideshow_xml.search('Download').first.content = 1 } - it { expect(subject.is_downloadable).to eq true } - end + context 'conversion_failed' do + before { slideshow_xml.search('Status').first.content = 3 } + it { expect(subject.status).to eq :conversion_failed } + end + end - context 'it is not downloadable' do - before { slideshow_xml.search('Download').first.content = 0 } - it { expect(subject.is_downloadable).to eq false } - end + it { expect(subject.username).to eq slideshow_xml.search('Username').text } + it { expect(subject.url).to eq slideshow_xml.search('URL').text } + it { expect(subject.thumbnail_url).to eq slideshow_xml.search('ThumbnailURL').text } + it { expect(subject.thumbnail_size).to eq slideshow_xml.search('ThumbnailSize').text } + it { expect(subject.thumbnail_small_url).to eq slideshow_xml.search('ThumbnailSmallURL').text } + it { expect(subject.embed).to eq slideshow_xml.search('Embed').text } + it { expect(subject.created_at).to eq Time.parse slideshow_xml.search('Created').text } + it { expect(subject.updated_at).to eq Time.parse slideshow_xml.search('Updated').text } + it { expect(subject.language).to eq slideshow_xml.search('Language').text } + it { expect(subject.format).to eq slideshow_xml.search('Format').text } - describe 'type' do - context 'presentation' do - before { slideshow_xml.search('SlideshowType').first.content = 0 } - it { expect(subject.type).to eq :presentation } - end + context 'it is downloadable' do + before { slideshow_xml.search('Download').first.content = 1 } + it { expect(subject.is_downloadable).to eq true } + end - context 'document' do - before { slideshow_xml.search('SlideshowType').first.content = 1 } - it { expect(subject.type).to eq :document } - end + context 'it is not downloadable' do + before { slideshow_xml.search('Download').first.content = 0 } + it { expect(subject.is_downloadable).to eq false } + end - context 'portfolio' do - before { slideshow_xml.search('SlideshowType').first.content = 2 } - it { expect(subject.type).to eq :portfolio } - end + describe 'type' do + context 'presentation' do + before { slideshow_xml.search('SlideshowType').first.content = 0 } + it { expect(subject.type).to eq :presentation } + end - context 'video' do - before { slideshow_xml.search('SlideshowType').first.content = 3 } - it { expect(subject.type).to eq :video } + context 'document' do + before { slideshow_xml.search('SlideshowType').first.content = 1 } + it { expect(subject.type).to eq :document } + end + + context 'portfolio' do + before { slideshow_xml.search('SlideshowType').first.content = 2 } + it { expect(subject.type).to eq :portfolio } + end + + context 'video' do + before { slideshow_xml.search('SlideshowType').first.content = 3 } + it { expect(subject.type).to eq :video } + end + end + + context 'it is in contest' do + before { slideshow_xml.search('InContest').first.content = 1 } + it { expect(subject.is_in_contest).to eq true } + end + + context 'it is not in contest' do + before { slideshow_xml.search('InContest').first.content = 0 } + it { expect(subject.is_in_contest).to eq false } + end + + it { expect(subject.user_id).to eq nil } + it { expect(subject.ppt_location).to eq nil } + it { expect(subject.stripped_title).to eq nil } + it { expect(subject.tags).to eq nil } + it { expect(subject.download_count).to eq nil } + it { expect(subject.view_count).to eq nil } + it { expect(subject.comment_count).to eq nil } + it { expect(subject.favorite_count).to eq nil } + it { expect(subject.slide_count).to eq nil } + it { expect(subject.related_slideshow_ids).to eq nil } + it { expect(subject.is_private).to eq nil } + it { expect(subject.is_not_flagged).to eq nil } + it { expect(subject.is_visible).to eq nil } + it { expect(subject.url_is_secret).to eq nil } + it { expect(subject.is_embaddable).to eq nil } + it { expect(subject.is_visible_by_contacts).to eq nil } end - end - context 'it is in contest' do - before { slideshow_xml.search('InContest').first.content = 1 } - it { expect(subject.is_in_contest).to eq true } - end + context 'detailed xml' do + let(:slideshow_xml) { Nokogiri::XML(open('spec/fixtures/slideshow_detailed.xml').read) } - context 'it is not in contest' do - before { slideshow_xml.search('InContest').first.content = 0 } - it { expect(subject.is_in_contest).to eq false } - end + it { expect(subject.original_slideshow_xml).to eq slideshow_xml } + it { expect(subject.id).to eq slideshow_xml.search('ID').text.to_i } + it { expect(subject.title).to eq slideshow_xml.search('Title').text } + it { expect(subject.description).to eq slideshow_xml.search('Description').text } - it { expect(subject.user_id).to eq slideshow_xml.search('UserID').text.to_i } - it { expect(subject.ppt_location).to eq slideshow_xml.search('PPTLocation').text } - it { expect(subject.stripped_title).to eq slideshow_xml.search('StrippedTitle').text } - it { expect(subject.tags).to eq slideshow_xml.search('Tag').map(&:text) } - it { expect(subject.download_count).to eq slideshow_xml.search('NumDownloads').text.to_i } - it { expect(subject.view_count).to eq slideshow_xml.search('NumViews').text.to_i } - it { expect(subject.comment_count).to eq slideshow_xml.search('NumComments').text.to_i } - it { expect(subject.favorite_count).to eq slideshow_xml.search('NumFavorites').text.to_i } - it { expect(subject.slide_count).to eq slideshow_xml.search('NumSlides').text.to_i } - it { expect(subject.related_slideshow_ids).to eq slideshow_xml.search('RelatedSlideshowID').map(&:text).map(&:to_i) } + describe 'status' do + context 'queued_for_conversion' do + before { slideshow_xml.search('Status').first.content = 0 } + it { expect(subject.status).to eq :queued_for_conversion } + end - context 'it is private' do - before { slideshow_xml.search('PrivacyLevel').first.content = 1 } - it { expect(subject.is_private).to eq true } - end + context 'converting' do + before { slideshow_xml.search('Status').first.content = 1 } + it { expect(subject.status).to eq :converting } + end - context 'it is not private' do - before { slideshow_xml.search('PrivacyLevel').first.content = 0 } - it { expect(subject.is_private).to eq false } - end + context 'converted' do + before { slideshow_xml.search('Status').first.content = 2 } + it { expect(subject.status).to eq :converted } + end - context 'it is flagged' do - before { slideshow_xml.search('FlagVisible').first.content = 1 } - it { expect(subject.is_not_flagged).to eq true } - end + context 'conversion_failed' do + before { slideshow_xml.search('Status').first.content = 3 } + it { expect(subject.status).to eq :conversion_failed } + end + end - context 'it is not flagged' do - before { slideshow_xml.search('FlagVisible').first.content = 0 } - it { expect(subject.is_not_flagged).to eq false } - end + it { expect(subject.username).to eq slideshow_xml.search('Username').text } + it { expect(subject.url).to eq slideshow_xml.search('URL').text } + it { expect(subject.thumbnail_url).to eq slideshow_xml.search('ThumbnailURL').text } + it { expect(subject.thumbnail_size).to eq slideshow_xml.search('ThumbnailSize').text } + it { expect(subject.thumbnail_small_url).to eq slideshow_xml.search('ThumbnailSmallURL').text } + it { expect(subject.embed).to eq slideshow_xml.search('Embed').text } + it { expect(subject.created_at).to eq Time.parse slideshow_xml.search('Created').text } + it { expect(subject.updated_at).to eq Time.parse slideshow_xml.search('Updated').text } + it { expect(subject.language).to eq slideshow_xml.search('Language').text } + it { expect(subject.format).to eq slideshow_xml.search('Format').text } - context 'it is visible' do - before { slideshow_xml.search('ShowOnSS').first.content = 1 } - it { expect(subject.is_visible).to eq true } - end + context 'it is downloadable' do + before { slideshow_xml.search('Download').first.content = 1 } + it { expect(subject.is_downloadable).to eq true } + end - context 'it is not visible' do - before { slideshow_xml.search('ShowOnSS').first.content = 0 } - it { expect(subject.is_visible).to eq false } - end + context 'it is not downloadable' do + before { slideshow_xml.search('Download').first.content = 0 } + it { expect(subject.is_downloadable).to eq false } + end - context 'url is secret' do - before { slideshow_xml.search('SecretURL').first.content = 1 } - it { expect(subject.url_is_secret).to eq true } - end + describe 'type' do + context 'presentation' do + before { slideshow_xml.search('SlideshowType').first.content = 0 } + it { expect(subject.type).to eq :presentation } + end - context 'url is not secret' do - before { slideshow_xml.search('SecretURL').first.content = 0 } - it { expect(subject.url_is_secret).to eq false } - end + context 'document' do + before { slideshow_xml.search('SlideshowType').first.content = 1 } + it { expect(subject.type).to eq :document } + end - context 'it is embaddable' do - before { slideshow_xml.search('AllowEmbed').first.content = 1 } - it { expect(subject.is_embaddable).to eq true } - end + context 'portfolio' do + before { slideshow_xml.search('SlideshowType').first.content = 2 } + it { expect(subject.type).to eq :portfolio } + end - context 'url is not embaddable' do - before { slideshow_xml.search('AllowEmbed').first.content = 0 } - it { expect(subject.is_embaddable).to eq false } - end + context 'video' do + before { slideshow_xml.search('SlideshowType').first.content = 3 } + it { expect(subject.type).to eq :video } + end + end - context 'it is visible by contacts' do - before { slideshow_xml.search('ShareWithContacts').first.content = 1 } - it { expect(subject.is_visible_by_contacts).to eq true } - end + context 'it is in contest' do + before { slideshow_xml.search('InContest').first.content = 1 } + it { expect(subject.is_in_contest).to eq true } + end - context 'url is not visible by contacts' do - before { slideshow_xml.search('ShareWithContacts').first.content = 0 } - it { expect(subject.is_visible_by_contacts).to eq false } + context 'it is not in contest' do + before { slideshow_xml.search('InContest').first.content = 0 } + it { expect(subject.is_in_contest).to eq false } + end + + it { expect(subject.user_id).to eq slideshow_xml.search('UserID').text.to_i } + it { expect(subject.ppt_location).to eq slideshow_xml.search('PPTLocation').text } + it { expect(subject.stripped_title).to eq slideshow_xml.search('StrippedTitle').text } + it { expect(subject.tags).to eq slideshow_xml.search('Tag').map(&:text) } + it { expect(subject.download_count).to eq slideshow_xml.search('NumDownloads').text.to_i } + it { expect(subject.view_count).to eq slideshow_xml.search('NumViews').text.to_i } + it { expect(subject.comment_count).to eq slideshow_xml.search('NumComments').text.to_i } + it { expect(subject.favorite_count).to eq slideshow_xml.search('NumFavorites').text.to_i } + it { expect(subject.slide_count).to eq slideshow_xml.search('NumSlides').text.to_i } + it { expect(subject.related_slideshow_ids).to eq slideshow_xml.search('RelatedSlideshowID').map(&:text).map(&:to_i) } + + context 'it is private' do + before { slideshow_xml.search('PrivacyLevel').first.content = 1 } + it { expect(subject.is_private).to eq true } + end + + context 'it is not private' do + before { slideshow_xml.search('PrivacyLevel').first.content = 0 } + it { expect(subject.is_private).to eq false } + end + + context 'it is flagged' do + before { slideshow_xml.search('FlagVisible').first.content = 1 } + it { expect(subject.is_not_flagged).to eq true } + end + + context 'it is not flagged' do + before { slideshow_xml.search('FlagVisible').first.content = 0 } + it { expect(subject.is_not_flagged).to eq false } + end + + context 'it is visible' do + before { slideshow_xml.search('ShowOnSS').first.content = 1 } + it { expect(subject.is_visible).to eq true } + end + + context 'it is not visible' do + before { slideshow_xml.search('ShowOnSS').first.content = 0 } + it { expect(subject.is_visible).to eq false } + end + + context 'url is secret' do + before { slideshow_xml.search('SecretURL').first.content = 1 } + it { expect(subject.url_is_secret).to eq true } + end + + context 'url is not secret' do + before { slideshow_xml.search('SecretURL').first.content = 0 } + it { expect(subject.url_is_secret).to eq false } + end + + context 'it is embaddable' do + before { slideshow_xml.search('AllowEmbed').first.content = 1 } + it { expect(subject.is_embaddable).to eq true } + end + + context 'url is not embaddable' do + before { slideshow_xml.search('AllowEmbed').first.content = 0 } + it { expect(subject.is_embaddable).to eq false } + end + + context 'it is visible by contacts' do + before { slideshow_xml.search('ShareWithContacts').first.content = 1 } + it { expect(subject.is_visible_by_contacts).to eq true } + end + + context 'url is not visible by contacts' do + before { slideshow_xml.search('ShareWithContacts').first.content = 0 } + it { expect(subject.is_visible_by_contacts).to eq false } + end + end end end end \ No newline at end of file