BigW Consortium Gitlab

project.feature 2.72 KB
Newer Older
1
Feature: Project
2
  Background:
3
    Given I sign in as a user
4
    And I own project "Shop"
5
    And project "Shop" has push event
6
    And I visit project "Shop" page
7

8 9 10 11 12 13 14 15 16 17 18 19 20
  Scenario: I edit the project avatar
    Given I visit edit project "Shop" page
    When I change the project avatar
    And I should see new project avatar
    And I should see the "Remove avatar" button

  Scenario: I remove the project avatar
    Given I visit edit project "Shop" page
    And I have an project avatar
    When I remove my project avatar
    Then I should see the default project avatar
    And I should not see the "Remove avatar" button

21 22 23 24
  Scenario: I should have readme on page
    And I visit project "Shop" page
    Then I should see project "Shop" README

25 26 27 28 29 30
  Scenario: I should see last commit with CI
    Given project "Shop" has CI enabled
    Given project "Shop" has CI build
    And I visit project "Shop" page
    And I should see last commit with CI status

31
  @javascript
32
  Scenario: I should see project activity
33
    When I visit project "Shop" activity page
34
    Then I should see project "Shop" activity feed
35

36 37 38 39 40 41 42 43 44
  Scenario: I visit edit project
    When I visit edit project "Shop" page
    Then I should see project settings

  Scenario: I edit project
    When I visit edit project "Shop" page
    And change project settings
    And I save project
    Then I should see project with new settings
45 46 47 48 49

  Scenario: I change project path
    When I visit edit project "Shop" page
    And change project path settings
    Then I should see project with new path settings
50

51 52 53 54 55
  Scenario: I should change project default branch
    When I visit edit project "Shop" page
    And change project default branch
    And I save project
    Then I should see project default branch changed
56

57 58 59 60 61 62
  Scenario: I tag a project
    When I visit edit project "Shop" page
    Then I should see project settings
    And I add project tags
    And I save project
    Then I should see project tags
63 64 65 66 67 68

  Scenario: I should not see "New Issue" or "New Merge Request" buttons
    Given I disable issues and merge requests in project
    When I visit project "Shop" page
    Then I should not see "New Issue" button
    And I should not see "New Merge Request" button
69 70 71 72 73

  Scenario: I should not see Project snippets
    Given I disable snippets in project
    When I visit project "Shop" page
    Then I should not see "Snippets" button
74 75 76 77 78 79

  @javascript
  Scenario: I edit Project Notifications
    Given I click notifications drop down button
    When I choose Mention setting
    Then I should see Notification saved message
80 81 82 83 84 85

  Scenario: I should see command line instructions
    Given I own an empty project
    And I visit my empty project page
    And I create bare repo
    Then I should see command line instructions