#-- copyright # OpenProject is a project management system. # # Copyright (C) 2012-2013 the OpenProject Team # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License version 3. # # See doc/COPYRIGHT.rdoc for more details. #++ Feature: Membership Background: Given I am already admin Given there is a role "Manager" And there is a role "Developer" And there is 1 project with the following: | Identifier | project1 | And there is 1 User with: | Login | peter | | Firstname | Peter | | Lastname | Pan | And there is 1 User with: | Login | hannibal | | Firstname | Hannibal | | Lastname | Smith | And there is a group named "A-Team" with the following members: | peter | | hannibal | @javascript Scenario: Adding and Removing a Group as Member, non impaired When I go to the members tab of the settings page of the project "project1" And I add the principal "A-Team" as "Manager" Then I should be on the members tab of the settings page of the project "project1" And I should see "Successful creation." within ".flash.notice" And I should see "A-Team" within ".members" When I delete the "A-Team" membership And I wait for the AJAX requests to finish Then I should see "No data to display" @javascript Scenario: Adding and removing a User as Member, non impaired When I go to the members tab of the settings page of the project "project1" And I add the principal "Hannibal Smith" as "Manager" Then I should see "Successful creation." within ".flash.notice" And I should see "Hannibal Smith" within ".members" When I delete the "Hannibal Smith" membership And I wait for the AJAX requests to finish Then I should see "No data to display" @javascript Scenario: Entering a Username as Member in firstname, lastname order, non impaired When I go to the members tab of the settings page of the project "project1" And I enter the principal name "Hannibal S" Then I should see "Hannibal Smith" @javascript Scenario: Entering a Username as Member in lastname, firstname order, non impaired When I go to the members tab of the settings page of the project "project1" And I enter the principal name "Smith, H" Then I should see "Hannibal Smith" @javascript Scenario: Adding and Removing a Group as Member, impaired When I am impaired And I go to the members tab of the settings page of the project "project1" And I add the principal "A-Team" as "Manager" Then I should be on the members tab of the settings page of the project "project1" And I should see "Successful creation." within ".flash.notice" And I should see "A-Team" within ".members" When I delete the "A-Team" membership And I wait for the AJAX requests to finish Then I should see "No data to display" @javascript Scenario: Entering a Username as Member in firstname, lastname order, impaired When I am impaired And I go to the members tab of the settings page of the project "project1" And I enter the principal name "Hannibal S" Then I should see "Hannibal Smith" @javascript Scenario: Entering a Username as Member in lastname, firstname order, impaired When I am impaired And I go to the members tab of the settings page of the project "project1" And I enter the principal name "Smith, H" Then I should see "Hannibal Smith" @javascript Scenario: Adding and removing a User as Member, impaired When I am impaired And I go to the members tab of the settings page of the project "project1" And I add the principal "Hannibal Smith" as "Manager" Then I should see "Successful creation." within ".flash.notice" And I should see "Hannibal Smith" within ".members" When I delete the "Hannibal Smith" membership And I wait for the AJAX requests to finish Then I should see "No data to display"