debian-mirror-gitlab/features/project/source/browse_files.feature

214 lines
6.7 KiB
Gherkin
Raw Normal View History

2015-04-26 12:48:37 +05:30
Feature: Project Source Browse Files
2014-09-02 18:07:02 +05:30
Background:
Given I sign in as a user
And I own project "Shop"
Given I visit project source page
Scenario: I browse files from master branch
Then I should see files from repository
Scenario: I browse files for specific ref
Given I visit project source page for "6d39438"
Then I should see files from repository for "6d39438"
Scenario: I browse file content
Given I click on ".gitignore" file in repo
2015-04-26 12:48:37 +05:30
Then I should see its content
2014-09-02 18:07:02 +05:30
Scenario: I browse raw file
Given I visit blob file from repo
2015-04-26 12:48:37 +05:30
And I click link "Raw"
2014-09-02 18:07:02 +05:30
Then I should see raw file content
Scenario: I can create file
2015-10-24 18:46:33 +05:30
Given I click on "New file" link in repo
2014-09-02 18:07:02 +05:30
Then I can see new file page
2015-04-26 12:48:37 +05:30
@javascript
Scenario: I can create and commit file
2015-10-24 18:46:33 +05:30
Given I click on "New file" link in repo
2015-04-26 12:48:37 +05:30
And I edit code
And I fill the new file name
And I fill the commit message
And I click on "Commit Changes"
Then I am redirected to the new file
And I should see its new content
2015-09-25 12:07:36 +05:30
@javascript
Scenario: I can upload file and commit
2015-10-24 18:46:33 +05:30
Given I click on "Upload file" link in repo
2015-09-25 12:07:36 +05:30
And I upload a new text file
And I fill the upload file commit message
2015-10-24 18:46:33 +05:30
And I fill the new branch name
2015-09-25 12:07:36 +05:30
And I click on "Upload file"
Then I can see the new text file
2015-10-24 18:46:33 +05:30
And I am redirected to the uploaded file on new branch
2015-09-25 12:07:36 +05:30
And I can see the new commit message
@javascript
Scenario: I can replace file and commit
Given I click on ".gitignore" file in repo
And I see the ".gitignore"
And I click on "Replace"
And I replace it with a text file
And I fill the replace file commit message
And I click on "Replace file"
Then I can see the new text file
And I can see the replacement commit message
2015-04-26 12:48:37 +05:30
@javascript
Scenario: I can create and commit file and specify new branch
2015-10-24 18:46:33 +05:30
Given I click on "New file" link in repo
2015-04-26 12:48:37 +05:30
And I edit code
And I fill the new file name
And I fill the commit message
And I fill the new branch name
And I click on "Commit Changes"
Then I am redirected to the new file on new branch
And I should see its new content
2015-09-11 14:41:01 +05:30
@javascript
2015-04-26 12:48:37 +05:30
Scenario: I can create file in empty repo
Given I own an empty project
And I visit my empty project page
And I create bare repo
When I click on "add a file" link
And I edit code
And I fill the new file name
And I fill the commit message
And I click on "Commit Changes"
Then I am redirected to the new file
And I should see its new content
@javascript
Scenario: If I enter an illegal file name I see an error message
2015-10-24 18:46:33 +05:30
Given I click on "New file" link in repo
2015-04-26 12:48:37 +05:30
And I fill the new file name with an illegal name
And I edit code
And I fill the commit message
And I click on "Commit changes"
Then I am on the new file page
And I see a commit error message
2014-09-02 18:07:02 +05:30
@javascript
Scenario: I can edit file
Given I click on ".gitignore" file in repo
2015-04-26 12:48:37 +05:30
And I click button "Edit"
2014-09-02 18:07:02 +05:30
Then I can edit code
2015-04-26 12:48:37 +05:30
Scenario: If the file is binary the edit link is hidden
Given I visit a binary file in the repo
Then I cannot see the edit button
Scenario: If I don't have edit permission the edit link is disabled
Given public project "Community"
And I visit project "Community" source page
And I click on ".gitignore" file in repo
Then The edit button is disabled
2014-09-02 18:07:02 +05:30
@javascript
2015-04-26 12:48:37 +05:30
Scenario: I can edit and commit file
Given I click on ".gitignore" file in repo
And I click button "Edit"
And I edit code
And I fill the commit message
And I click on "Commit Changes"
Then I am redirected to the ".gitignore"
And I should see its new content
@javascript
Scenario: I can edit and commit file to new branch
Given I click on ".gitignore" file in repo
And I click button "Edit"
And I edit code
And I fill the commit message
And I fill the new branch name
And I click on "Commit Changes"
Then I am redirected to the ".gitignore" on new branch
And I should see its new content
@javascript @wip
Scenario: If I don't change the content of the file I see an error message
2014-09-02 18:07:02 +05:30
Given I click on ".gitignore" file in repo
And I click button "edit"
2015-04-26 12:48:37 +05:30
And I fill the commit message
And I click on "Commit changes"
# Test fails because carriage returns are added to the file.
Then I am on the ".gitignore" edit file page
And I see a commit error message
2015-10-24 18:46:33 +05:30
@javascript
Scenario: I can create directory in repo
When I click on "New directory" link in repo
And I fill the new directory name
And I fill the commit message
And I fill the new branch name
And I click on "Create directory"
Then I am redirected to the new directory
@javascript
Scenario: I attempt to create an existing directory
When I click on "New directory" link in repo
And I fill an existing directory name
And I fill the commit message
And I click on "Create directory"
Then I see "Unable to create directory"
And I am redirected to the root directory
2015-04-26 12:48:37 +05:30
@javascript
Scenario: I can see editing preview
Given I click on ".gitignore" file in repo
And I click button "Edit"
2014-09-02 18:07:02 +05:30
And I edit code
And I click link "Diff"
Then I see diff
2015-04-26 12:48:37 +05:30
@javascript
Scenario: I can remove file and commit
Given I click on ".gitignore" file in repo
And I see the ".gitignore"
And I click on "Remove"
And I fill the commit message
And I click on "Remove file"
Then I am redirected to the files URL
And I don't see the ".gitignore"
2014-09-02 18:07:02 +05:30
Scenario: I can browse directory with Browse Dir
Given I click on files directory
2015-04-26 12:48:37 +05:30
And I click on History link
2014-09-02 18:07:02 +05:30
Then I see Browse dir link
Scenario: I can browse file with Browse File
Given I click on readme file
2015-04-26 12:48:37 +05:30
And I click on History link
2014-09-02 18:07:02 +05:30
Then I see Browse file link
Scenario: I can browse code with Browse Code
2015-04-26 12:48:37 +05:30
Given I click on History link
2014-09-02 18:07:02 +05:30
Then I see Browse code link
2015-04-26 12:48:37 +05:30
# Permalink
Scenario: I click on the permalink link from a branch ref
Given I click on ".gitignore" file in repo
And I click on Permalink
Then I am redirected to the permalink URL
Scenario: I don't see the permalink link from a SHA ref
Given I visit project source page for "6d394385cf567f80a8fd85055db1ab4c5295806f"
And I click on ".gitignore" file in repo
Then I don't see the permalink link
2015-09-11 14:41:01 +05:30
@javascript
Scenario: I browse code with single quotes in the ref
Given I switch ref to 'test'
And I see the ref 'test' has been selected
And I visit the 'test' tree
Then I see the commit data
2015-10-24 18:46:33 +05:30
@javascript
Scenario: I browse code with a leading dot in the directory
Given I switch ref to fix
And I visit the fix tree
Then I see the commit data for a directory with a leading dot