diff options
author | Varac <varac@leap.se> | 2017-07-21 17:54:39 +0200 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2017-08-30 16:18:43 -0400 |
commit | 300a9b08c07fcd51cc0cf0c4cbd8c3738d6dbdb4 (patch) | |
tree | 068ed145e1ebc91a6a4d9195f7af550e9cc4c68d /tests/functional/features/smoke.feature | |
parent | 39a805929dab586ff77752e86f86a980535f97ef (diff) |
[tests] Check egress IP for VPN steps
Diffstat (limited to 'tests/functional/features/smoke.feature')
-rw-r--r-- | tests/functional/features/smoke.feature | 30 |
1 files changed, 21 insertions, 9 deletions
diff --git a/tests/functional/features/smoke.feature b/tests/functional/features/smoke.feature index efa3cad..1e22011 100644 --- a/tests/functional/features/smoke.feature +++ b/tests/functional/features/smoke.feature @@ -1,19 +1,31 @@ Feature: login and logout + @smoke Scenario: See user panel after login Given I start bitmask for the first time - When I login - Then I should see the user panel + When I login + Then I should see the user panel + @smoke Scenario: Log in and log out Given I start bitmask for the first time - When I login - And I logout - Then I should see the second login page + When I login + And I logout + Then I should see the second login page @smoke - Scenario: Use VPN + Scenario: Turn VPN on + Given I start bitmask for the first time + And An initial network configuration + When I login + And I activate VPN + Then I should have my ass covered + + @wip + Scenario: Turn VPN on and off Given I start bitmask for the first time - When I login - And I activate VPN - Then I should have my ass covered + And An initial network configuration + When I login + And I activate VPN + And I deactivate VPN + Then My network should be configured as before |