Skip to content

Instantly share code, notes, and snippets.

@martinstreicher
Created June 3, 2011 13:52
Show Gist options
  • Save martinstreicher/1006373 to your computer and use it in GitHub Desktop.
Save martinstreicher/1006373 to your computer and use it in GitHub Desktop.
require 'spec_helper'
def assign(*entities, &block)
entities = [entities].flatten.compact.uniq
entities.each { |e| yield(e) }
end
describe 'Visibility Rules' do
disconnect_sunspot
before :all do
Site.delete_all
end
let!(:complete) { {:completed => true} }
let!(:draft) { {:draft => true} }
let!(:u) { Factory :user_without_site }
let!(:v) { Factory :user_without_site }
let!(:w) { Factory :user_without_site }
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).to_set.should == [p, q].to_set
Photo.filter_for_entity(u, u, draft).to_set.should == [p, q, r].to_set
end
it 'shows User B completed photos, but not draft photos in portfolio' do
assign(s, u) { |i| i.add_constituents(p, q, r) }
Photo.filter_for_entity(u, v, complete).to_set.should == [p, q].to_set
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