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/features/users/show_spec.rb')
-rw-r--r--spec/features/users/show_spec.rb36
1 files changed, 36 insertions, 0 deletions
diff --git a/spec/features/users/show_spec.rb b/spec/features/users/show_spec.rb
index 932c1d8d4bd..8c2b555305a 100644
--- a/spec/features/users/show_spec.rb
+++ b/spec/features/users/show_spec.rb
@@ -59,6 +59,42 @@ describe 'User page' do
end
end
+ context 'with blocked profile' do
+ let(:user) { create(:user, state: :blocked) }
+
+ it 'shows no tab' do
+ visit(user_path(user))
+
+ expect(page).to have_css("div.profile-header")
+ expect(page).not_to have_css("ul.nav-links")
+ end
+
+ it 'shows blocked message' do
+ visit(user_path(user))
+
+ expect(page).to have_content("This user is blocked")
+ end
+
+ it 'shows user name as blocked' do
+ visit(user_path(user))
+
+ expect(page).to have_css(".cover-title", text: 'Blocked user')
+ end
+
+ it 'shows no additional fields' do
+ visit(user_path(user))
+
+ expect(page).not_to have_css(".profile-user-bio")
+ expect(page).not_to have_css(".profile-link-holder")
+ end
+
+ it 'shows username' do
+ visit(user_path(user))
+
+ expect(page).to have_content("@#{user.username}")
+ end
+ end
+
it 'shows the status if there was one' do
create(:user_status, user: user, message: "Working hard!")