mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-03-08 01:07:05 -05:00
16 lines
734 B
Gherkin
16 lines
734 B
Gherkin
@env-config @skipOnOpencloud-decomposed-Storage @skipOnOpencloud-decomposeds3-Storage
|
|
Feature: create a resources using collaborative posixfs
|
|
|
|
Background:
|
|
Given the config "STORAGE_USERS_POSIX_WATCH_FS" has been set to "true"
|
|
And user "Alice" has been created with default attributes
|
|
|
|
|
|
Scenario: create folder
|
|
Given user "Alice" has uploaded file with content "content" to "textfile.txt"
|
|
When the administrator creates folder "myFolder" for user "Alice" on the POSIX filesystem
|
|
Then the command should be successful
|
|
When the administrator lists the content of the POSIX storage folder of user "Alice"
|
|
Then the command output should contain "myFolder"
|
|
And as "Alice" folder "/myFolder" should exist
|