debian-mirror-gitlab/spec/helpers/version_check_helper_spec.rb

37 lines
1.2 KiB
Ruby
Raw Normal View History

2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe VersionCheckHelper do
2017-08-17 22:00:37 +05:30
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 }
2022-01-26 12:08:38 +05:30
allow(VersionCheck).to receive(:image_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
2022-01-26 12:08:38 +05:30
it 'has a VersionCheck image_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