debian-mirror-gitlab/features/project/commits/commits.feature

63 lines
1.8 KiB
Gherkin
Raw Normal View History

2015-12-23 02:04:40 +05:30
@project_commits
2015-04-26 12:48:37 +05:30
Feature: Project Commits
2014-09-02 18:07:02 +05:30
Background:
Given I sign in as a user
And I own a project
And I visit my project's commits page
Scenario: I browse commits list for master branch
Then I see project commits
Scenario: I browse atom feed of commits list for master branch
Given I click atom feed link
Then I see commits atom feed
Scenario: I browse commit from list
Given I click on commit link
Then I see commit info
And I see side-by-side diff button
2015-10-24 18:46:33 +05:30
Scenario: I browse commit with ci from list
Given commit has ci status
2015-12-23 02:04:40 +05:30
And repository contains ".gitlab-ci.yml" file
When I click on commit link
2015-10-24 18:46:33 +05:30
Then I see commit ci info
And I click status link
Then I see builds list
2014-09-02 18:07:02 +05:30
Scenario: I browse commit with side-by-side diff view
Given I click on commit link
And I click side-by-side diff button
Then I see inline diff button
2015-04-26 12:48:37 +05:30
@javascript
2014-09-02 18:07:02 +05:30
Scenario: I compare refs
Given I visit compare refs page
And I fill compare fields with refs
Then I see compared refs
2015-04-26 12:48:37 +05:30
And I unfold diff
Then I should see additional file lines
2014-09-02 18:07:02 +05:30
Scenario: I browse commits for a specific path
Given I visit my project's commits page for a specific path
Then I see breadcrumb links
2015-04-26 12:48:37 +05:30
# TODO: Implement feature in graphs
#Scenario: I browse commits stats
#Given I visit my project's commits stats page
#Then I see commits stats
2014-09-02 18:07:02 +05:30
Scenario: I browse big commit
Given I visit big commit page
Then I see big commit warning
2015-09-11 14:41:01 +05:30
And I see "Reload with full diff" link
2014-09-02 18:07:02 +05:30
Scenario: I browse a commit with an image
Given I visit a commit with an image that changed
Then The diff links to both the previous and current image
@javascript
Scenario: I filter commits by message
When I search "submodules" commits
Then I should see only "submodules" commits