mirror of
https://github.com/mastodon/mastodon.git
synced 2026-05-23 09:36:43 -05:00
Some checks failed
Check i18n / check-i18n (push) Waiting to run
Chromatic / Check for relevant changes (push) Waiting to run
Chromatic / Run Chromatic (push) Blocked by required conditions
Check formatting / lint (push) Waiting to run
CSS Linting / lint (push) Waiting to run
Haml Linting / lint (push) Waiting to run
JavaScript Linting / lint (push) Waiting to run
Ruby Linting / lint (push) Waiting to run
JavaScript Testing / test (push) Waiting to run
Historical data migration test / test (14-alpine) (push) Waiting to run
Historical data migration test / test (15-alpine) (push) Waiting to run
Historical data migration test / test (16-alpine) (push) Waiting to run
Historical data migration test / test (17-alpine) (push) Waiting to run
Ruby Testing / build (production) (push) Waiting to run
Ruby Testing / build (test) (push) Waiting to run
Ruby Testing / test (.ruby-version) (push) Blocked by required conditions
Ruby Testing / test (3.3) (push) Blocked by required conditions
Ruby Testing / test (3.4) (push) Blocked by required conditions
Ruby Testing / End to End testing (.ruby-version) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.3) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.4) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:8.19.2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, opensearchproject/opensearch:2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.3, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.4, docker.elastic.co/elasticsearch/elasticsearch:7.17.29) (push) Blocked by required conditions
Bundler Audit / security (push) Has been cancelled
CodeQL / Analyze (actions) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
CodeQL / Analyze (ruby) (push) Has been cancelled
79 lines
2.5 KiB
Ruby
79 lines
2.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe 'Admin::Roles' do
|
|
context 'when user has administrator permissions' do
|
|
let(:user_role) { Fabricate(:user_role, permissions: UserRole::FLAGS[:administrator], position: 10) }
|
|
|
|
before { sign_in Fabricate(:user, role: user_role) }
|
|
|
|
it 'creates new user role' do
|
|
visit new_admin_role_path
|
|
|
|
fill_in 'user_role_name', with: 'Baz'
|
|
fill_in 'user_role_position', with: '1'
|
|
check 'user_role_permissions_as_keys_manage_reports'
|
|
check 'user_role_permissions_as_keys_manage_roles'
|
|
|
|
expect { click_on I18n.t('admin.roles.add_new') }
|
|
.to change(UserRole, :count)
|
|
expect(page)
|
|
.to have_title(I18n.t('admin.roles.title'))
|
|
end
|
|
end
|
|
|
|
context 'when user has permissions to manage roles' do
|
|
let(:user_role) { Fabricate(:user_role, permissions: UserRole::FLAGS[:manage_roles], position: 10) }
|
|
|
|
before { sign_in Fabricate(:user, role: user_role) }
|
|
|
|
it 'Creates user roles' do
|
|
visit admin_roles_path
|
|
expect(page)
|
|
.to have_title(I18n.t('admin.roles.title'))
|
|
|
|
click_on I18n.t('admin.roles.add_new')
|
|
expect(page)
|
|
.to have_title(I18n.t('admin.roles.add_new'))
|
|
|
|
# Position too high
|
|
fill_in 'user_role_name', with: 'Baz'
|
|
fill_in 'user_role_position', with: '100'
|
|
expect { click_on I18n.t('admin.roles.add_new') }
|
|
.to_not change(UserRole, :count)
|
|
expect(page)
|
|
.to have_text(I18n.t('activerecord.errors.models.user_role.attributes.position.elevated'))
|
|
|
|
# Valid submission
|
|
fill_in 'user_role_name', with: 'Baz'
|
|
fill_in 'user_role_position', with: '5' # Lower than user
|
|
check 'user_role_permissions_as_keys_manage_roles' # User has permission
|
|
expect { click_on I18n.t('admin.roles.add_new') }
|
|
.to change(UserRole, :count)
|
|
expect(page)
|
|
.to have_title(I18n.t('admin.roles.title'))
|
|
end
|
|
|
|
it 'Manages existing user roles' do
|
|
role = Fabricate :user_role, name: 'Baz'
|
|
|
|
visit edit_admin_role_path(role)
|
|
expect(page)
|
|
.to have_title(I18n.t('admin.roles.edit', name: 'Baz'))
|
|
|
|
# Update role attribute
|
|
fill_in 'user_role_position', with: '5' # Lower than user
|
|
expect { click_on submit_button }
|
|
.to(change { role.reload.position })
|
|
|
|
# Destroy the role
|
|
visit edit_admin_role_path(role)
|
|
expect { click_on I18n.t('admin.roles.delete') }
|
|
.to change(UserRole, :count).by(-1)
|
|
expect(page)
|
|
.to have_title(I18n.t('admin.roles.title'))
|
|
end
|
|
end
|
|
end
|