Created
June 3, 2011 01:21
-
-
Save martinstreicher/1005685 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'spec_helper' | |
def assign(*entities, &block) | |
entities = [entities].flatten.compact.uniq | |
entities.each { |e| yield(e) } | |
end | |
describe 'Visibility Rules' do | |
disconnect_sunspot | |
let!(:complete) { {:completed => true} } | |
let!(:draft) { {:completed => false} } | |
let!(:u) { Factory :user } | |
let!(:v) { Factory :user } | |
let!(:w) { Factory :user } | |
let!(:s) { Factory :site } | |
let!(:t) { Factory :site } | |
describe 'Case 1: User A >> Portfolio' do | |
before(:all) do | |
s.add_constituents(u) | |
s.add_constituents(v) | |
end | |
let!(:p) { Factory :photo, :draft => false } | |
let!(:q) { Factory :photo, :draft => false } | |
let!(:r) { Factory :photo, :draft => true } | |
it 'shows User A completed and draft media in portfolio' do | |
assign(s, u) { |i| i.add_constituents(p, q, r) } | |
Photo.filter_for_entity(u, u, complete).sort.should == [p, q].sort | |
Photo.filter_for_entity(u, u, draft).should == [r] | |
end | |
it 'shows User B completed photos, but not draft photos in portfolio' do | |
s.add_constituents(p, q, r) | |
u.add_constituents(p, q, r) | |
Photo.filter_for_entity(u, v, complete).should == [p, q] | |
Photo.filter_for_entity(u, v, draft).should == [] | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment