2017-01-12 09:00:06 -05: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 }
|
2018-02-02 13:39:55 -05:00
|
|
|
allow(Gitlab::CurrentSettings.current_application_settings).to receive(:version_check_enabled) { false }
|
2017-01-12 09:00:06 -05: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 }
|
2018-02-02 13:39:55 -05:00
|
|
|
allow(Gitlab::CurrentSettings.current_application_settings).to receive(:version_check_enabled) { true }
|
2017-01-12 09:00:06 -05: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
|
2017-08-08 09:25:00 -04:00
|
|
|
expect(@image_tag).to match(/class="js-version-status-badge lazy"/)
|
2017-01-12 09:00:06 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should have a VersionCheck url as the src' do
|
2018-01-27 00:35:53 -05:00
|
|
|
expect(@image_tag).to match(%r{src="https://version\.host\.com/check\.svg\?gitlab_info=xxx"})
|
2017-01-12 09:00:06 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|