BigW Consortium Gitlab

groups.feature 2.95 KB
Newer Older
1 2 3 4 5
Feature: Groups
  Background:
    Given I sign in as "John Doe"
    And "John Doe" is owner of group "Owned"

6 7 8 9
  Scenario: I should not see a group if it does not exist
    When I visit group "NonExistentGroup" page
    Then page status code should be 404

10 11 12 13
  @javascript
  Scenario: I should see group "Owned" dashboard list
    When I visit group "Owned" page
    Then I should see group "Owned" projects list
14 15 16 17

  @javascript
  Scenario: I should see group "Owned" activity feed
    When I visit group "Owned" activity page
18 19 20 21 22 23 24
    And I should see projects activity feed

  Scenario: I should see group "Owned" issues list
    Given project from group "Owned" has issues assigned to me
    When I visit group "Owned" issues page
    Then I should see issues from group "Owned" assigned to me

25 26 27 28 29 30
  Scenario: I should not see issues from archived project in "Owned" group issues list
    Given Group "Owned" has archived project
    And the archived project have some issues
    When I visit group "Owned" issues page
    Then I should not see issues from the archived project

31 32 33 34 35
  Scenario: I should see group "Owned" merge requests list
    Given project from group "Owned" has merge requests assigned to me
    When I visit group "Owned" merge requests page
    Then I should see merge requests from group "Owned" assigned to me

36 37 38 39 40 41
  Scenario: I should not see merge requests from archived project in "Owned" group merge requests list
    Given Group "Owned" has archived project
    And the archived project have some merge_requests
    When I visit group "Owned" merge requests page
    Then I should not see merge requests from the archived project

42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
  Scenario: I should see edit group "Owned" page
    When I visit group "Owned" settings page
    And I change group "Owned" name to "new-name"
    Then I should see new group "Owned" name

  Scenario: I edit group "Owned" avatar
    When I visit group "Owned" settings page
    And I change group "Owned" avatar
    And I visit group "Owned" settings page
    Then I should see new group "Owned" avatar
    And I should see the "Remove avatar" button

  Scenario: I remove group "Owned" avatar
    When I visit group "Owned" settings page
    And I have group "Owned" avatar
    And I visit group "Owned" settings page
    And I remove group "Owned" avatar
    Then I should not see group "Owned" avatar
    And I should not see the "Remove avatar" button

Artem Sidorenko committed
62 63 64 65 66 67
  # Group projects in settings
  Scenario: I should see all projects in the project list in settings
    Given Group "Owned" has archived project
    When I visit group "Owned" projects page
    Then I should see group "Owned" projects list
    And I should see "archived" label
Valery Sizov committed
68 69 70 71 72 73 74 75 76 77

  # Public group
  @javascript
  Scenario: Signed out user should see group
    Given "Mary Jane" is owner of group "Owned"
    And I am a signed out user
    And Group "Owned" has a public project "Public-project"
    When I visit group "Owned" page
    Then I should see group "Owned"
    Then I should see project "Public-project"
78