2013-07-13 21:24:16 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
require_dependency 'site'
|
|
|
|
|
|
|
|
describe Site do
|
|
|
|
it "omits categories users can not write to from the category list" do
|
|
|
|
category = Fabricate(:category)
|
|
|
|
user = Fabricate(:user)
|
|
|
|
|
2013-10-23 19:05:51 -04:00
|
|
|
Site.new(Guardian.new(user)).categories.count.should == 2
|
2013-07-13 21:24:16 -04:00
|
|
|
|
|
|
|
category.set_permissions(:everyone => :create_post)
|
|
|
|
category.save
|
|
|
|
|
2014-02-24 14:52:21 -05:00
|
|
|
guardian = Guardian.new(user)
|
|
|
|
|
|
|
|
Site.new(guardian)
|
2013-10-23 19:05:51 -04:00
|
|
|
.categories
|
|
|
|
.keep_if{|c| c.name == category.name}
|
|
|
|
.first
|
|
|
|
.permission
|
|
|
|
.should_not == CategoryGroup.permission_types[:full]
|
2014-02-24 14:52:21 -05:00
|
|
|
|
|
|
|
# If a parent category is not visible, the child categories should not be returned
|
|
|
|
category.set_permissions(:staff => :full)
|
|
|
|
category.save
|
|
|
|
|
|
|
|
sub_category = Fabricate(:category, parent_category_id: category.id)
|
|
|
|
Site.new(guardian).categories.should_not include(sub_category)
|
2013-07-13 21:24:16 -04:00
|
|
|
end
|
2014-02-24 14:52:21 -05:00
|
|
|
|
2013-07-13 21:24:16 -04:00
|
|
|
end
|