Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/presenters/user_presenter_spec.rb')
-rw-r--r--spec/presenters/user_presenter_spec.rb65
1 files changed, 64 insertions, 1 deletions
diff --git a/spec/presenters/user_presenter_spec.rb b/spec/presenters/user_presenter_spec.rb
index 9c51c0b0078..883eec68304 100644
--- a/spec/presenters/user_presenter_spec.rb
+++ b/spec/presenters/user_presenter_spec.rb
@@ -5,7 +5,9 @@ require 'spec_helper'
RSpec.describe UserPresenter do
let_it_be(:user) { create(:user) }
- subject(:presenter) { described_class.new(user) }
+ let(:current_user) { user }
+
+ subject(:presenter) { described_class.new(user, current_user: current_user) }
describe '#web_path' do
it { expect(presenter.web_path).to eq("/#{user.username}") }
@@ -14,4 +16,65 @@ RSpec.describe UserPresenter do
describe '#web_url' do
it { expect(presenter.web_url).to eq("http://localhost/#{user.username}") }
end
+
+ context 'Gitpod' do
+ let(:gitpod_url) { "https://gitpod.io" }
+ let(:gitpod_application_enabled) { true }
+
+ before do
+ allow(Gitlab::CurrentSettings).to receive(:gitpod_enabled).and_return(gitpod_application_enabled)
+ allow(Gitlab::CurrentSettings).to receive(:gitpod_url).and_return(gitpod_url)
+ end
+
+ context 'Gitpod enabled for application' do
+ describe '#preferences_gitpod_path' do
+ it { expect(presenter.preferences_gitpod_path).to eq("/-/profile/preferences#user_gitpod_enabled") }
+ end
+
+ describe '#profile_enable_gitpod_path' do
+ it { expect(presenter.profile_enable_gitpod_path).to eq("/-/profile?user%5Bgitpod_enabled%5D=true") }
+ end
+ end
+
+ context 'Gitpod disabled for application' do
+ let(:gitpod_application_enabled) { false }
+
+ describe '#preferences_gitpod_path' do
+ it { expect(presenter.preferences_gitpod_path).to eq(nil) }
+ end
+
+ describe '#profile_enable_gitpod_path' do
+ it { expect(presenter.profile_enable_gitpod_path).to eq(nil) }
+ end
+ end
+ end
+
+ describe '#saved_replies' do
+ let_it_be(:other_user) { create(:user) }
+ let_it_be(:saved_reply) { create(:saved_reply, user: user) }
+
+ context 'when feature is disabled' do
+ before do
+ stub_feature_flags(saved_replies: false)
+ end
+
+ it { expect(presenter.saved_replies).to eq(::Users::SavedReply.none) }
+ end
+
+ context 'when feature is enabled' do
+ before do
+ stub_feature_flags(saved_replies: current_user)
+ end
+
+ context 'when user has no permission to read saved replies' do
+ let(:current_user) { other_user }
+
+ it { expect(presenter.saved_replies).to eq(::Users::SavedReply.none) }
+ end
+
+ context 'when user has permission to read saved replies' do
+ it { expect(presenter.saved_replies).to eq([saved_reply]) }
+ end
+ end
+ end
end