mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 22:05:48 +08:00
e219588142
* Introduced fab!, a helper that creates database state for a group It's almost identical to let_it_be, except: 1. It creates a new object for each test by default, 2. You can disable it using PREFABRICATION=0
26 lines
824 B
Ruby
26 lines
824 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe UserAuthTokenSerializer do
|
|
|
|
fab!(:user) { Fabricate(:moderator) }
|
|
let(:token) { UserAuthToken.generate!(user_id: user.id, client_ip: '2a02:ea00::', staff: true) }
|
|
|
|
before(:each) do
|
|
DiscourseIpInfo.open_db(File.join(Rails.root, 'spec', 'fixtures', 'mmdb'))
|
|
end
|
|
|
|
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
|