summaryrefslogtreecommitdiff
path: root/features/project/commits/tags.feature
blob: a4be39b2d40899542487794da6c94682a154d203 (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
@project_commits
Feature: Project Commits Tags
  Background:
    Given I sign in as a user
    And I own project "Shop"
    Given I visit project tags page

  Scenario: I can see all git tags
    Then I should see "Shop" all tags list

  Scenario: I create a tag
    And I click new tag link
    And I submit new tag form
    Then I should see new tag created

  Scenario: I create a tag with release notes
    Given I click new tag link
    And I submit new tag form with release notes
    Then I should see new tag created
    And I should see tag release notes

  Scenario: I create a tag with invalid name
    And I click new tag link
    And I submit new tag form with invalid name
    Then I should see new an error that tag is invalid

  Scenario: I create a tag with invalid reference
    And I click new tag link
    And I submit new tag form with invalid reference
    Then I should see new an error that tag ref is invalid

  Scenario: I create a tag that already exists
    And I click new tag link
    And I submit new tag form with tag that already exists
    Then I should see new an error that tag already exists

  Scenario: I delete a tag
    Given I visit tag 'v1.1.0' page
    Given I delete tag 'v1.1.0'
    Then I should not see tag 'v1.1.0'

  Scenario: I add release notes to the tag
    Given I visit tag 'v1.1.0' page
    When I click edit tag link
    And I fill release notes and submit form
    Then I should see tag release notes