mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-10 04:36:43 +00:00
28 lines
1.3 KiB
Gherkin
28 lines
1.3 KiB
Gherkin
Feature: Configuration Status Telemetry
|
|
Background:
|
|
Given there exists an account with username "[user:user]" and password "password"
|
|
Then it succeeds
|
|
When bridge starts
|
|
Then it succeeds
|
|
|
|
Scenario: Init config status on user addition
|
|
Then bridge telemetry feature is enabled
|
|
When the user logs in with username "[user:user]" and password "password"
|
|
Then config status file exist for user "[user:user]"
|
|
And config status is pending for user "[user:user]"
|
|
|
|
Scenario: Config Status Success on IMAP
|
|
Then bridge telemetry feature is enabled
|
|
When the user logs in with username "[user:user]" and password "password"
|
|
Then config status file exist for user "[user:user]"
|
|
And config status is pending for user "[user:user]"
|
|
When user "[user:user]" connects and authenticates IMAP client "1"
|
|
Then config status succeed for user "[user:user]"
|
|
|
|
Scenario: Config Status Success on SMTP
|
|
Then bridge telemetry feature is enabled
|
|
When the user logs in with username "[user:user]" and password "password"
|
|
Then config status file exist for user "[user:user]"
|
|
And config status is pending for user "[user:user]"
|
|
When user "[user:user]" connects and authenticates SMTP client "1"
|
|
Then config status succeed for user "[user:user]" |