mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 15:32:26 +08:00
1976306539
This allows an app (such as Ember CLI) to get the full list of locales for a user, including admin and overrides.
55 lines
1.4 KiB
Ruby
55 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe BootstrapController do
|
|
|
|
it "returns data as anonymous" do
|
|
get "/bootstrap.json"
|
|
expect(response.status).to eq(200)
|
|
|
|
json = response.parsed_body
|
|
expect(json).to be_present
|
|
|
|
bootstrap = json['bootstrap']
|
|
expect(bootstrap).to be_present
|
|
expect(bootstrap['title']).to be_present
|
|
expect(bootstrap['setup_data']['base_url']).to eq(Discourse.base_url)
|
|
expect(bootstrap['stylesheets']).to be_present
|
|
|
|
preloaded = bootstrap['preloaded']
|
|
expect(preloaded['site']).to be_present
|
|
expect(preloaded['siteSettings']).to be_present
|
|
expect(preloaded['currentUser']).to be_blank
|
|
expect(preloaded['topicTrackingStates']).to be_blank
|
|
end
|
|
|
|
it "returns user data when authenticated" do
|
|
user = Fabricate(:user)
|
|
sign_in(user)
|
|
get "/bootstrap.json"
|
|
expect(response.status).to eq(200)
|
|
|
|
json = response.parsed_body
|
|
expect(json).to be_present
|
|
|
|
bootstrap = json['bootstrap']
|
|
preloaded = bootstrap['preloaded']
|
|
expect(preloaded['currentUser']).to be_present
|
|
expect(preloaded['topicTrackingStates']).to be_present
|
|
end
|
|
|
|
it "returns extra locales (admin) when staff" do
|
|
user = Fabricate(:admin)
|
|
sign_in(user)
|
|
get "/bootstrap.json"
|
|
expect(response.status).to eq(200)
|
|
|
|
json = response.parsed_body
|
|
expect(json).to be_present
|
|
|
|
bootstrap = json['bootstrap']
|
|
expect(bootstrap['extra_locales']).to be_present
|
|
end
|
|
end
|