Project

General

Profile

« Previous | Next » 

Revision 5db9d353

Added by Marek Hulán almost 10 years ago

Fixes #6117 - clean usergroup cache

Dependent destroy was missing on through association from user side.

View differences:

test/unit/user_test.rb
end
end
test "chaging hostgroup should update cache" do
u = FactoryGirl.create(:user)
g1 = FactoryGirl.create(:usergroup)
g2 = FactoryGirl.create(:usergroup)
assert_empty u.usergroups
assert_empty u.cached_usergroups
u.usergroups = [g1, g2]
u.reload
assert_equal [g1.id, g2.id].sort, u.cached_usergroup_ids.sort
u.usergroups = [g2]
u.reload
assert_equal [g2.id].sort, u.cached_usergroup_ids.sort
u.usergroups = [g1]
u.reload
assert_equal [g1.id].sort, u.cached_usergroup_ids.sort
u.usergroups = []
u.reload
assert_empty u.cached_usergroups
end
# Uncomment after users get access to children taxonomies of their current taxonomies.
#
# test 'default taxonomy inclusion validator takes into account inheritance' do

Also available in: Unified diff