2020-01-01 13:55:28 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe 'layouts/application' do
|
2020-01-01 13:55:28 +05:30
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(view).to receive(:current_application_settings).and_return(Gitlab::CurrentSettings.current_application_settings)
|
|
|
|
allow(view).to receive(:experiment_enabled?).and_return(false)
|
|
|
|
allow(view).to receive(:session).and_return({})
|
|
|
|
allow(view).to receive(:user_signed_in?).and_return(true)
|
|
|
|
allow(view).to receive(:current_user).and_return(user)
|
|
|
|
allow(view).to receive(:current_user_mode).and_return(Gitlab::Auth::CurrentUserMode.new(user))
|
|
|
|
end
|
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
describe "visual review toolbar" do
|
|
|
|
context "ENV['REVIEW_APPS_ENABLED'] is set to true" do
|
|
|
|
before do
|
|
|
|
stub_env(
|
|
|
|
'REVIEW_APPS_ENABLED' => true,
|
|
|
|
'REVIEW_APPS_MERGE_REQUEST_IID' => '123'
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders the visual review toolbar' do
|
|
|
|
render
|
|
|
|
|
|
|
|
expect(rendered).to include('review-app-toolbar-script')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "ENV['REVIEW_APPS_ENABLED'] is set to false" do
|
|
|
|
before do
|
|
|
|
stub_env('REVIEW_APPS_ENABLED', false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not render the visual review toolbar' do
|
|
|
|
render
|
|
|
|
|
|
|
|
expect(rendered).not_to include('review-app-toolbar-script')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
context 'body data elements for pageview context' do
|
|
|
|
let(:body_data) do
|
|
|
|
{
|
|
|
|
body_data_page: 'projects:issues:show',
|
|
|
|
body_data_page_type_id: '1',
|
|
|
|
body_data_project_id: '2',
|
|
|
|
body_data_namespace_id: '3'
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(view).to receive(:body_data).and_return(body_data)
|
|
|
|
render
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes the body element page' do
|
|
|
|
expect(rendered).to include('data-page="projects:issues:show"')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes the body element page_type_id' do
|
|
|
|
expect(rendered).to include('data-page-type-id="1"')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes the body element project_id' do
|
|
|
|
expect(rendered).to include('data-project-id="2"')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'includes the body element namespace_id' do
|
|
|
|
expect(rendered).to include('data-namespace-id="3"')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|