mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:20:43 +08:00
a900c99993
If sso is enabled the notification payload will now include the external_id for the user. This was requested on meta: https://meta.discourse.org/t/-/129052/10
39 lines
1.2 KiB
Ruby
39 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe NotificationSerializer do
|
|
describe '#as_json' do
|
|
fab!(:user) { Fabricate(:user) }
|
|
let(:notification) { Fabricate(:notification, user: user) }
|
|
let(:serializer) { NotificationSerializer.new(notification) }
|
|
let(:json) { serializer.as_json }
|
|
|
|
it "returns the user_id" do
|
|
expect(json[:notification][:user_id]).to eq(user.id)
|
|
end
|
|
|
|
it "does not include external_id when sso is disabled" do
|
|
expect(json[:notification].key?(:external_id)).to eq(false)
|
|
end
|
|
end
|
|
|
|
describe '#sso_enabled' do
|
|
let :user do
|
|
user = Fabricate(:user)
|
|
SingleSignOnRecord.create!(user_id: user.id, external_id: '12345', last_payload: '')
|
|
user
|
|
end
|
|
let(:notification) { Fabricate(:notification, user: user) }
|
|
let(:serializer) { NotificationSerializer.new(notification) }
|
|
let(:json) { serializer.as_json }
|
|
|
|
it "should include the external_id" do
|
|
SiteSetting.sso_url = "http://example.com/discourse_sso"
|
|
SiteSetting.sso_secret = "12345678910"
|
|
SiteSetting.enable_sso = true
|
|
expect(json[:notification][:external_id]).to eq("12345")
|
|
end
|
|
end
|
|
end
|