mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 04:31:56 +08:00
df3886d6e5
This commit introduces a new site setting "google_oauth2_hd_groups". If enabled, group information will be fetched from Google during authentication, and stored in the Discourse database. These 'associated groups' can be connected to a Discourse group via the "Membership" tab of the group preferences UI. The majority of the implementation is generic, so we will be able to add support to more authentication methods in the near future. https://meta.discourse.org/t/managing-group-membership-via-authentication/175950
42 lines
1.4 KiB
Ruby
42 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe GroupAssociatedGroup do
|
|
let(:user) { Fabricate(:user) }
|
|
let(:group) { Fabricate(:group) }
|
|
let(:group2) { Fabricate(:group) }
|
|
let(:associated_group) { Fabricate(:associated_group) }
|
|
let(:associated_group2) { Fabricate(:associated_group) }
|
|
|
|
before do
|
|
UserAssociatedGroup.create(user_id: user.id, associated_group_id: associated_group.id)
|
|
@gag = described_class.create(group_id: group.id, associated_group_id: associated_group.id)
|
|
end
|
|
|
|
it "adds users to group when created" do
|
|
expect(group.users.include?(user)).to eq(true)
|
|
end
|
|
|
|
it "removes users from group when destroyed" do
|
|
@gag.destroy!
|
|
expect(group.users.include?(user)).to eq(false)
|
|
end
|
|
|
|
it "does not remove users with multiple associations to group when destroyed" do
|
|
UserAssociatedGroup.create(user_id: user.id, associated_group_id: associated_group2.id)
|
|
described_class.create(group_id: group.id, associated_group_id: associated_group2.id)
|
|
|
|
@gag.destroy!
|
|
expect(group.users.include?(user)).to eq(true)
|
|
end
|
|
|
|
it "removes users with multiple associations to other groups when destroyed" do
|
|
UserAssociatedGroup.create(user_id: user.id, associated_group_id: associated_group2.id)
|
|
described_class.create(group_id: group2.id, associated_group_id: associated_group2.id)
|
|
|
|
@gag.destroy!
|
|
expect(group.users.include?(user)).to eq(false)
|
|
end
|
|
end
|