Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test.feature « tst_addAccount « gui « test - github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 09e7c25bf3818c4e854d11ce97c5719f34aa3a9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Feature: adding accounts

    As a user
    I want to be able join multiple owncloud servers to the client
    So that I can sync data with various organisations


	Background:
        Given user "Alice" has been created on the server with default attributes and without skeleton files

    Scenario: Adding normal Account
        Given the user has started the client
        When the user adds the first account with
            | server      | %local_server%     |
            | user        | Alice              |
            | password    | 1234               |
            | localfolder | %client_sync_path% |
        Then an account should be displayed with the displayname Alice Hansen and host %local_server_hostname%


     Scenario: Adding multiple accounts
        Given user "Brian" has been created on the server with default attributes and without skeleton files
        And user "Alice" has set up a client with default settings
        When the user adds an account with
            | server      | %local_server%     |
            | user        | Brian              |
            | password    | AaBb2Cc3Dd4        |
            | localfolder | %client_sync_path% |
        Then an account should be displayed with the displayname Alice Hansen and host %local_server_hostname%
        And an account should be displayed with the displayname Brian Murphy and host %local_server_hostname%