debian-mirror-gitlab/spec/requests/pwa_controller_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

59 lines
1.9 KiB
Ruby
Raw Normal View History

2022-07-16 23:28:13 +05:30
# frozen_string_literal: true
require 'spec_helper'
2023-03-04 22:38:38 +05:30
RSpec.describe PwaController, feature_category: :navigation do
2022-07-23 23:45:48 +05:30
describe 'GET #manifest' do
it 'responds with json' do
get manifest_path(format: :json)
expect(response.body).to include('The complete DevOps platform.')
2023-03-17 16:20:25 +05:30
expect(Gitlab::Json.parse(response.body)).to include({ 'short_name' => 'GitLab' })
2022-07-23 23:45:48 +05:30
expect(response).to have_gitlab_http_status(:success)
end
2023-03-04 22:38:38 +05:30
context 'with customized appearance' do
let_it_be(:appearance) do
2023-03-17 16:20:25 +05:30
create(:appearance, title: 'Long name', pwa_short_name: 'Short name', description: 'This is a test')
2023-03-04 22:38:38 +05:30
end
it 'uses custom values', :aggregate_failures do
get manifest_path(format: :json)
expect(Gitlab::Json.parse(response.body)).to include({
'description' => 'This is a test',
'name' => 'Long name',
'short_name' => 'Short name'
})
expect(response).to have_gitlab_http_status(:success)
end
end
2023-03-17 16:20:25 +05:30
context 'when user is signed in' do
before do
user = create(:user)
allow(user).to receive(:role_required?).and_return(true)
sign_in(user)
end
it 'skips the required signup info storing of user location' do
expect_next_instance_of(described_class) do |instance|
expect(instance).not_to receive(:store_location_for).with(:user, manifest_path(format: :json))
end
get manifest_path(format: :json)
end
end
2022-07-23 23:45:48 +05:30
end
2022-07-16 23:28:13 +05:30
describe 'GET #offline' do
it 'responds with static HTML page' do
get offline_path
expect(response.body).to include('You are currently offline')
expect(response).to have_gitlab_http_status(:success)
end
end
end