2019-12-21 20:55:43 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe VersionCheckHelper do
|
|
|
|
describe '#version_status_badge' do
|
2019-07-07 11:18:12 +05:30
|
|
|
it 'returns nil if not dev environment and not enabled' do
|
2019-12-04 20:38:33 +05:30
|
|
|
stub_rails_env('development')
|
2018-03-17 18:26:18 +05:30
|
|
|
allow(Gitlab::CurrentSettings.current_application_settings).to receive(:version_check_enabled) { false }
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
expect(helper.version_status_badge).to be(nil)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when production and enabled' do
|
|
|
|
before do
|
2019-12-04 20:38:33 +05:30
|
|
|
stub_rails_env('production')
|
2018-03-17 18:26:18 +05:30
|
|
|
allow(Gitlab::CurrentSettings.current_application_settings).to receive(:version_check_enabled) { true }
|
2019-02-15 15:39:39 +05:30
|
|
|
allow(VersionCheck).to receive(:url) { 'https://version.host.com/check.svg?gitlab_info=xxx' }
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
it 'returns an image tag' do
|
2019-02-15 15:39:39 +05:30
|
|
|
expect(helper.version_status_badge).to start_with('<img')
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
it 'has a js prefixed css class' do
|
2019-02-15 15:39:39 +05:30
|
|
|
expect(helper.version_status_badge)
|
|
|
|
.to match(/class="js-version-status-badge lazy"/)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
it 'has a VersionCheck url as the src' do
|
2019-02-15 15:39:39 +05:30
|
|
|
expect(helper.version_status_badge)
|
|
|
|
.to include(%{src="https://version.host.com/check.svg?gitlab_info=xxx"})
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|