diff options
author | Luke "Jared" Bennett <lbennett@gitlab.com> | 2017-01-12 14:00:06 +0000 |
---|---|---|
committer | Luke "Jared" Bennett <lbennett@gitlab.com> | 2017-02-22 11:34:44 +0000 |
commit | bb483230e60692e203775346ac3ad4407e3864a5 (patch) | |
tree | a5e95d4e6ce1019187b6b6d7cbc6e98a59c03e2b /spec/features | |
parent | 7bf28a4adaabac7b974ef7d829e604d77eb9d9df (diff) | |
download | gitlab-ce-bb483230e60692e203775346ac3ad4407e3864a5.tar.gz |
added specs for version check imagegamesover/gitlab-ce-broken_iamge_when_doing_offline_update_check(help_page)
Diffstat (limited to 'spec/features')
-rw-r--r-- | spec/features/help_pages_spec.rb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/spec/features/help_pages_spec.rb b/spec/features/help_pages_spec.rb index 40a1fced8d8..e0b2404e60a 100644 --- a/spec/features/help_pages_spec.rb +++ b/spec/features/help_pages_spec.rb @@ -33,4 +33,30 @@ describe 'Help Pages', feature: true do it_behaves_like 'help page', prefix: '/gitlab' end end + + context 'in a production environment with version check enabled', js: true do + before do + allow(Rails.env).to receive(:production?) { true } + allow(current_application_settings).to receive(:version_check_enabled) { true } + allow_any_instance_of(VersionCheck).to receive(:url) { '/version-check-url' } + + login_as :user + visit help_path + end + + it 'should display a version check image' do + expect(find('.js-version-status-badge')).to be_visible + end + + it 'should have a src url' do + expect(find('.js-version-status-badge')['src']).to match(/\/version-check-url/) + end + + it 'should hide the version check image if the image request fails' do + # We use '--load-images=no' with poltergeist so we must trigger manually + execute_script("$('.js-version-status-badge').trigger('error');") + + expect(find('.js-version-status-badge', visible: false)).not_to be_visible + end + end end |