github.com/Venafi/vcert/v5@v5.10.2/aruba/features/config/enroll.feature (about)

     1  Feature: Enrolling certificates with -config option
     2  
     3    As a user, I want my new -config option to be working with `enroll` action with TPP, Cloud and Test-mode endpoints
     4  
     5    Background:
     6      Given the default aruba exit timeout is 180 seconds
     7      And I have file named "tpp.ini" with TPP connection details
     8      And I have file named "tpp-deprecated.ini" with TPPdeprecated connection details
     9      And I have file named "test.ini" with test-mode connection details
    10      And I have file named "cloud.ini" with Cloud connection details
    11  
    12    Scenario Outline: Where it enrolls a certificate using different endpoints
    13      When I try to run `vcert enroll -config <config-file> -cn cfg.venafi.example.com -no-prompt -insecure`
    14      Then it should retrieve certificate
    15  
    16      @FAKE
    17      Examples:
    18        | config-file |
    19        | test.ini    |
    20  
    21      @TPP
    22      Examples:
    23        | config-file |
    24        | tpp.ini     |
    25        |tpp-deprecated.ini|
    26  
    27      @VAAS
    28      Examples:
    29        | config-file |
    30        | cloud.ini   |