mirror of
https://github.com/discourse/discourse.git
synced 2026-03-04 01:15:08 +08:00
20 lines
782 B
Ruby
20 lines
782 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe UserAuthTokenSerializer do
|
|
fab!(:user, :moderator)
|
|
let(:token) { UserAuthToken.generate!(user_id: user.id, client_ip: "2a02:ea00::", staff: true) }
|
|
|
|
before(:each) { DiscourseIpInfo.open_db(File.join(Rails.root, "spec", "fixtures", "mmdb")) }
|
|
|
|
it "serializes user auth tokens with respect to user locale" do
|
|
I18n.locale = "de"
|
|
json = UserAuthTokenSerializer.new(token, scope: Guardian.new(user), root: false).as_json
|
|
expect(json[:location]).to include("Schweiz")
|
|
end
|
|
|
|
it "correctly translates Discourse locale to MaxMindDb locale" do
|
|
I18n.locale = "zh_CN"
|
|
json = UserAuthTokenSerializer.new(token, scope: Guardian.new(user), root: false).as_json
|
|
expect(json[:location]).to include("瑞士")
|
|
end
|
|
end
|