Initial QSfera import

This commit is contained in:
Курнат Андрей
2026-06-07 10:20:04 +03:00
commit 2315f25754
16485 changed files with 4826827 additions and 0 deletions
@@ -0,0 +1,28 @@
Feature: remove account connection
As a user
I want to remove my account
So that I won't be using any client-UI services
@smoke
Scenario: remove an account connection
Given user "Alice" has been created in the server with default attributes
And user "Brian" has been created in the server with default attributes
And the user has set up the following accounts with default settings:
| users |
| Alice |
| Brian |
When the user removes the connection for user "Brian"
Then "Brian" account should not be displayed
But "Alice" account should be added
Scenario: remove the only account connection
Given user "Alice" has been created in the server with default attributes
And user "Alice" has created folder "large-folder" in the server
And user "Alice" has uploaded file with content "test content" to "testFile.txt" in the server
And user "Alice" has set up a client with default settings
When the user removes the connection for user "Alice"
Then the settings tab should have the following options in the general section:
| Start on Login |
And the folder "large-folder" should exist on the file system
And the file "testFile.txt" should exist on the file system