MDL-38184 repository_upload: Adding tests

This commit is contained in:
David Monllao
2013-03-11 06:56:02 +08:00
committed by David Monllao
parent aa988a9a6c
commit 4f07b654e1
3 changed files with 35 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
empty file for testing purposes
+2
View File
@@ -0,0 +1,2 @@
username,password,email,firstname,lastname
teacher1,moodle,[email protected],Teacher,1
1 username password email firstname lastname
2 teacher1 moodle [email protected] Teacher 1
@@ -0,0 +1,32 @@
@repository_upload @core_form @repository @_only_local
Feature: Upload files
In order to add contents
As a moodle user
I need to upload files
@javascript
Scenario: Upload a file in a single file filepicker
Given I log in as "admin"
And I expand "Front page settings" node
And I expand "Site administration" node
And I expand "Users" node
And I expand "Accounts" node
And I follow "Upload users"
When I upload "lib/tests/fixtures/upload_users.csv" file to "File" filepicker
And I press "Upload users"
Then I should see "Upload users preview"
And I should see "Teacher"
And I should see "teacher1@teacher1.com"
And I press "Cancel"
@javascript
Scenario: Upload a file in a multiple file filepicker
Given the following "courses" exists:
| fullname | shortname | category |
| Course 1 | C1 | 0 |
And I log in as "admin"
And I follow "Admin User"
And I follow "My private files"
And I upload "lib/tests/fixtures/empty.txt" file to "Files" filepicker
Then I should see "empty.txt" in the "div.fp-content" "css_element"
And I press "Cancel"