discourse/spec/controllers/badges_controller_spec.rb

38 lines
976 B
Ruby
Raw Normal View History

require 'spec_helper'
describe BadgesController do
let!(:badge) { Fabricate(:badge) }
let(:user) { Fabricate(:user) }
before do
SiteSetting.enable_badges = true
end
context 'index' do
it 'should return a list of all badges' do
get :index, format: :json
2015-01-09 12:04:02 -05:00
expect(response.status).to eq(200)
parsed = JSON.parse(response.body)
2015-01-09 12:04:02 -05:00
expect(parsed["badges"].length).to eq(Badge.count)
end
end
2014-04-16 10:56:11 -04:00
context 'show' do
it "should return a badge" do
get :show, id: badge.id, format: :json
2015-01-09 12:04:02 -05:00
expect(response.status).to eq(200)
2014-04-16 10:56:11 -04:00
parsed = JSON.parse(response.body)
2015-01-09 12:04:02 -05:00
expect(parsed["badge"]).to be_present
2014-04-16 10:56:11 -04:00
end
it "should mark the notification as viewed" do
log_in_user(user)
user_badge = BadgeGranter.grant(badge, user)
2015-01-09 12:04:02 -05:00
expect(user_badge.notification.read).to eq(false)
get :show, id: badge.id, format: :json
2015-01-09 12:04:02 -05:00
expect(user_badge.notification.reload.read).to eq(true)
end
2014-04-16 10:56:11 -04:00
end
end