rating/spec/models/extension/rated_spec.rb

59 lines
1.7 KiB
Ruby
Raw Normal View History

2017-10-30 01:44:23 +00:00
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe Rating::Extension, ':rated' do
2017-11-02 18:55:46 +00:00
let!(:category) { create :category }
2017-10-30 01:44:23 +00:00
2017-11-02 18:55:46 +00:00
let!(:user_1) { create :user }
let!(:user_2) { create :user }
2017-10-30 01:44:23 +00:00
2017-11-02 18:55:46 +00:00
let!(:article_1) { create :article }
let!(:article_2) { create :article }
let!(:article_3) { create :article }
let!(:rate_1) { create :rating_rate, author: user_1, resource: article_1, value: 100 }
let!(:rate_2) { create :rating_rate, author: user_1, resource: article_2, value: 11 }
let!(:rate_3) { create :rating_rate, author: user_1, resource: article_3, value: 10 }
let!(:rate_4) { create :rating_rate, author: user_2, resource: article_1, value: 1 }
let!(:rate_5) { create :rating_rate, author: user_1, resource: article_1, scopeable: category, value: 1 }
let!(:rate_6) { create :rating_rate, author: user_2, resource: article_1, scopeable: category, value: 2 }
context 'with no scope' do
it 'returns rates made by this author' do
expect(user_1.rated).to match_array [rate_1, rate_2, rate_3]
end
end
context 'with no scope' do
it 'returns scoped rates made by this author' do
expect(user_1.rated(scope: category)).to eq [rate_5]
end
2017-10-30 01:44:23 +00:00
end
context 'when destroy author' do
before do
2017-11-02 18:55:46 +00:00
expect(Rating::Rate.where(author: user_1).count).to eq 4
2017-10-30 01:44:23 +00:00
2017-11-02 18:55:46 +00:00
user_1.destroy!
2017-10-30 01:44:23 +00:00
end
2017-11-02 18:55:46 +00:00
it 'destroys rates of that author' do
expect(Rating::Rate.where(author: user_1).count).to eq 0
2017-10-30 01:44:23 +00:00
end
end
context 'when destroy resource rated by author' do
before do
2017-11-02 18:55:46 +00:00
expect(Rating::Rate.where(resource: article_1).count).to eq 4
2017-10-30 01:44:23 +00:00
2017-11-02 18:55:46 +00:00
article_1.destroy!
2017-10-30 01:44:23 +00:00
end
2017-11-02 18:55:46 +00:00
it 'destroys rates of that resource' do
expect(Rating::Rate.where(resource: article_1).count).to eq 0
2017-10-30 01:44:23 +00:00
end
end
end