__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
@core @core_user
Feature: Hidden user fields behavior
In order to hide private information of users
As an admin
I can set Hide user fields setting
Background:
Given the following "users" exist:
| username | firstname | lastname | email | description | city |
| user | Profile | User | user@example.com | This is me | Donostia |
| student | Student | User | student@example.com | | |
| teacher | Teacher | User | teacher@example.com | | |
And the following "courses" exist:
| fullname | shortname | format |
| Course 1 | C1 | topics |
And the following "course enrolments" exist:
| user | course | role |
| user | C1 | student |
| student | C1 | student |
| teacher | C1 | editingteacher |
And the following config values are set as admin:
| hiddenuserfields | description,email |
Scenario Outline: Hidden user fields on course context profile based on role permission
Given I log in as "<user>"
And I am on "Course 1" course homepage
And I navigate to course participants
And I should see "Profile User"
When I click on "Profile User" "link"
Then I <expected> "This is me"
And I <expected> "user@example.com"
And I should see "Donostia"
Examples:
| user | expected |
| student | should not see |
| teacher | should see |
| admin | should see |
Scenario Outline: Hidden user fields on system context profile based on role permission
Given I log in as "<user>"
And I am on "Course 1" course homepage
And I navigate to course participants
And I should see "Profile User"
When I click on "Profile User" "link"
And I click on "Full profile" "link"
Then I <expected> "This is me"
And I <expected> "user@example.com"
And I should see "Donostia"
Examples:
| user | expected |
| student | should not see |
| teacher | should not see |
| admin | should see |