github.com/Venafi/vcert/v5@v5.10.2/aruba/features/firefly/credmgmt-firefly.feature (about) 1 @FIREFLY 2 Feature: Managing credentials tokens from Identity Providers 3 4 As a user 5 I want to get credentials for Firefly with Okta as IdP 6 7 Background: 8 Given the default aruba exit timeout is 180 seconds 9 10 Scenario Outline: request access token from IdP 11 When I get credentials from "<identity-provider>" 12 And I remember the output 13 And it should output access token 14 15 Examples: 16 | identity-provider | 17 | Okta | 18 19 Scenario Outline: request access token from IdP in JSON format 20 When I get credentials from "<identity-provider>" with -format json 21 And I remember the output 22 And it should output access token in JSON 23 24 Examples: 25 | identity-provider | 26 | Okta | 27 28 Scenario Outline: request access token from IdP using password flow 29 When I get credentials from "<identity-provider>" with username and password 30 And I remember the output 31 And it should output access token 32 33 Examples: 34 | identity-provider | 35 | Okta | 36 37 @TODO # currently interactive mode is not working for Idp for Firefly 38 Scenario Outline: request access token from IdP using password flow interactively 39 When I interactively get credentials from "<identity-provider>" with username and no password 40 And I remember the output 41 And it should output access token 42 43 Examples: 44 | identity-provider | 45 | Okta |