canvas-lms/spec/integration/avatar_is_fallback_spec.rb

60 lines
1.9 KiB
Ruby

# frozen_string_literal: true
#
# Copyright (C) 2011 - present Instructure, Inc.
#
# This file is part of Canvas.
#
# Canvas is free software: you can redistribute it and/or modify it under
# the terms of the GNU Affero General Public License as published by the Free
# Software Foundation, version 3 of the License.
#
# Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
# A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
# details.
#
# You should have received a copy of the GNU Affero General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
#
require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
describe UsersController do
context "avatar_is_fallback" do
before :once do
user_factory
end
before :each do
user_session @user
end
it 'is absent when avatars are turned off' do
get '/'
expect(assigns(:js_env)[:current_user]).not_to have_key :avatar_is_fallback
end
context "with avatars enabled" do
before :once do
Account.default.tap do |a|
a.enable_service(:avatars)
a.save!
end
end
it 'is true when there is no real avatar image' do
get '/'
expect(assigns(:js_env)[:current_user][:avatar_image_url]).to include User.default_avatar_fallback
expect(assigns(:js_env)[:current_user][:avatar_is_fallback]).to eq true
end
it 'is false when there is a real avatar image' do
@user.avatar_image_url = 'https://canvas.instructure.com/avi.png'; @user.save!
get '/'
expect(assigns(:js_env)[:current_user][:avatar_image_url]).to eq @user.avatar_image_url
expect(assigns(:js_env)[:current_user][:avatar_is_fallback]).to eq false
end
end
end
end