69 lines
2.2 KiB
Ruby
69 lines
2.2 KiB
Ruby
#
|
|
# Copyright (C) 2015 - 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.rb')
|
|
|
|
describe Setting do
|
|
|
|
context "getting" do
|
|
|
|
it 'should get the default value as a string' do
|
|
expect(Setting.get('my_new_setting', true)).to eq 'true'
|
|
end
|
|
|
|
it 'should get the default value as a string for dates' do
|
|
time = Time.now.utc
|
|
expect(Setting.get('my_new_setting', time)).to eq time.to_s
|
|
end
|
|
|
|
it 'should return set values' do
|
|
Setting.set('my_new_setting', '1')
|
|
expect(Setting.get('my_new_setting', '0')).to eq '1'
|
|
end
|
|
|
|
it 'should allow passing a cache expiration' do
|
|
opts = { expires_in: 1.minute }
|
|
# cache 0 in process
|
|
expect(Setting.get('my_new_setting', '0', cache_options: opts)).to eq '0'
|
|
# some other process sets the value out from under us
|
|
Setting.create!(name: 'my_new_setting', value: '1')
|
|
# but we still see the cached value for now
|
|
expect(Setting.get('my_new_setting', '0', cache_options: opts)).to eq '0'
|
|
# until the expiration has passed
|
|
Timecop.travel(2.minutes.from_now) do
|
|
expect(Setting.get('my_new_setting', '0', cache_options: opts)).to eq '1'
|
|
end
|
|
end
|
|
end
|
|
|
|
context "setting" do
|
|
|
|
it 'should set boolean values as strings' do
|
|
Setting.set('my_new_setting', true)
|
|
expect(Setting.get('my_new_setting', '1')).to eq 'true'
|
|
end
|
|
|
|
it 'should set time values as strings' do
|
|
time = Time.now.utc
|
|
Setting.set('my_new_setting', time)
|
|
expect(Setting.get('my_new_setting', '1')).to eq time.to_s
|
|
end
|
|
end
|
|
|
|
end
|