mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 01:58:12 +08:00
c9dab6fd08
It's very easy to forget to add `require 'rails_helper'` at the top of every core/plugin spec file, and omissions can cause some very confusing/sporadic errors. By setting this flag in `.rspec`, we can remove the need for `require 'rails_helper'` entirely.
24 lines
800 B
Ruby
24 lines
800 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|