gitlab-org--gitlab-foss/spec/helpers/version_check_helper_spec.rb

35 lines
1.2 KiB
Ruby
Raw Normal View History

2017-01-12 14:00:06 +00:00
require 'spec_helper'
describe VersionCheckHelper do
describe '#version_status_badge' do
it 'should return nil if not dev environment and not enabled' do
allow(Rails.env).to receive(:production?) { false }
allow(Gitlab::CurrentSettings.current_application_settings).to receive(:version_check_enabled) { false }
2017-01-12 14:00:06 +00:00
expect(helper.version_status_badge).to be(nil)
end
context 'when production and enabled' do
before do
allow(Rails.env).to receive(:production?) { true }
allow(Gitlab::CurrentSettings.current_application_settings).to receive(:version_check_enabled) { true }
2017-01-12 14:00:06 +00:00
allow_any_instance_of(VersionCheck).to receive(:url) { 'https://version.host.com/check.svg?gitlab_info=xxx' }
@image_tag = helper.version_status_badge
end
it 'should return an image tag' do
expect(@image_tag).to match(/^<img/)
end
it 'should have a js prefixed css class' do
expect(@image_tag).to match(/class="js-version-status-badge lazy"/)
2017-01-12 14:00:06 +00:00
end
it 'should have a VersionCheck url as the src' do
2018-01-27 05:35:53 +00:00
expect(@image_tag).to match(%r{src="https://version\.host\.com/check\.svg\?gitlab_info=xxx"})
2017-01-12 14:00:06 +00:00
end
end
end
end