discourse/spec/components/feed_element_installer_spec.rb
Kyle Zhao 5f318a5241 FEATURE: Replace SimpleRSS with Ruby RSS module (#5311)
* SPEC: PollFeedJob parsing atom feed

* add FeedItemAccessor

It is to provide a consistent interface to access a feed item's tag
content.

* add FeedElementInstaller

to install non-standard and non-namespaced feed elements

* FEATURE: replace SimpleRSS with Ruby RSS module

* get FinalDestination and download with Excon

* support namespaced element with FeedElementInstaller
2017-12-06 10:45:09 +11:00

41 lines
1.3 KiB
Ruby

require 'feed_element_installer'
require 'rails_helper'
describe FeedElementInstaller do
describe '#install_rss_element' do
let(:raw_feed) { file_from_fixtures('feed.rss', 'feed').read }
it 'creates parsing for a non-standard, namespaced element' do
FeedElementInstaller.install('discourse:username', raw_feed)
feed = RSS::Parser.parse(raw_feed)
expect(feed.items.first.discourse_username).to eq('xrav3nz')
end
it 'does not create parsing for a non-standard, non-namespaced element' do
FeedElementInstaller.install('username', raw_feed)
feed = RSS::Parser.parse(raw_feed)
expect { feed.items.first.username }.to raise_error(NoMethodError)
end
end
describe '#install_atom_element' do
let(:raw_feed) { file_from_fixtures('feed.atom', 'feed').read }
it 'creates parsing for a non-standard, namespaced element' do
FeedElementInstaller.install('discourse:username', raw_feed)
feed = RSS::Parser.parse(raw_feed)
expect(feed.items.first.discourse_username).to eq('xrav3nz')
end
it 'does not create parsing for a non-standard, non-namespaced element' do
FeedElementInstaller.install('username', raw_feed)
feed = RSS::Parser.parse(raw_feed)
expect { feed.items.first.username }.to raise_error(NoMethodError)
end
end
end