12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- require 'rails_helper'
- describe Agents::TumblrLikesAgent do
- before do
- allow_any_instance_of(Agents::TumblrLikesAgent).to receive(:tumblr) {
- double.tap { |obj|
- allow(obj).to receive(:blog_likes).with('wendys.tumblr.com', after: 0) {
- JSON.parse File.read(Rails.root.join('spec/data_fixtures/tumblr_likes.json'))
- }
- allow(obj).to receive(:blog_likes).with('notfound.tumblr.com', after: 0) { { 'status' => 404, 'msg' => 'Not Found' } }
- }
- }
- end
- describe 'a blog which returns likes' do
- before do
- @agent = Agents::TumblrLikesAgent.new(name: "Wendy's Tumblr Likes", options: {
- blog_name: 'wendys.tumblr.com',
- expected_update_period_in_days: 10
- })
- @agent.service = services(:generic)
- @agent.user = users(:bob)
- @agent.save!
- end
- it 'creates events based on likes' do
- expect { @agent.check }.to change { Event.count }.by(20)
- end
- end
- describe 'a blog which returns an error' do
- before do
- @broken_agent = Agents::TumblrLikesAgent.new(name: "Fake Blog Likes", options: {
- blog_name: 'notfound.tumblr.com',
- expected_update_period_in_days: 10
- })
- @broken_agent.user = users(:bob)
- @broken_agent.service = services(:generic)
- @broken_agent.save!
- end
- it 'creates an error message when status and msg are returned instead of liked_posts' do
- expect { @broken_agent.check }.to change { @broken_agent.logs.count }.by(1)
- end
- end
- end
|