summaryrefslogtreecommitdiff
path: root/features/teams/team.feature
blob: d914313efb60cd637b6a7f60a810cbda22a5a283 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
Feature: UserTeams
  Background:
    Given I sign in as a user
    And I own project "Shop"
    And project "Shop" has push event

  Scenario: No teams, no dashboard info block
    When I do not have teams with me
    And I visit dashboard page
    Then I should see dashboard page without teams info block

  Scenario: I should see teams info block
    When I have teams with my membership
    And I visit dashboard page
    Then I should see dashboard page with teams information block

  Scenario: I should see all teams list
    When exist user teams
    And I visit dashboard page
    And I click on "All teams" link
    Then I should see "All teams" page
    And I should see exist teams in teams list

  Scenario: I should can create new team
    When I have teams with my membership
    And I visit dashboard page
    When I click to "New team" link
    And I submit form with new team info
    Then I should be redirected to new team page

  Scenario: I should see team dashboard list
    When I have teams with projects and members
    When I visit team page
    Then I should see projects list

  Scenario: I should see team issues list
    Given I have team with projects and members
    And project from team has issues assigned to me
    When I visit team issues page
    Then I should see issues from this team assigned to me

  Scenario: I should see teams members issues list
    Given I have team with projects and members
    Given project from team has issues assigned to teams members
    When I visit team issues page
    Then I should see issues from this team assigned to teams members

  Scenario: I should see team merge requests list
    Given I have team with projects and members
    Given project from team has merge requests assigned to me
    When I visit team merge requests page
    Then I should see merge requests from this team assigned to me

  Scenario: I should see teams members merge requests list
    Given I have team with projects and members
    Given project from team has merge requests assigned to team members
    When I visit team merge requests page
    Then I should see merge requests from this team assigned to me

  Scenario: I should add user to projects in Team
    Given I have team with projects and members
    Given I have new user "John"
    When I visit team people page
    When I click link "New Team Member"
    And I select user "John" from list with role "Reporter"
    Then I should see user "John" in team list

  Scenario: I should assign my team to my own project
    Given I have team with projects and members
    And I have my own project without teams
    And I visit my team page
    When I click on link "Projects"
    Then I should see form with my own project in avaliable projects list
    When I submit form with selected project and max access
    Then I should see my own project in team projects list