summaryrefslogtreecommitdiff
path: root/features/api/search/list_search.feature
blob: 4341cd0bd10691f1850a831c8f1e37387105e65f (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
31
32
33
@api @data @api_search @api_search_list
Feature: List search endpoints via the REST API
  In order to know what search endpoints exist programatically
  As a Developer
  I want to list all the search indexes 

  Scenario: List search indexes when no data bags have been created
    Given I am an administrator
      And there are no data bags
     When I authenticate as 'bobo'
      And I 'GET' the path '/search' 
     Then the inflated responses key 'node' should match '^http://(.+)/search/node$'     
      And the inflated responses key 'role' should match '^http://(.+)/search/role$'
      And the inflated responses key 'client' should match '^http://(.+)/search/client$'
      And the inflated responses key 'environment' should match '^http://(.+)/search/environment'
      And the inflated response should be '4' items long

  Scenario: List search indexes when a data bag has been created
    Given I am an administrator
      And a 'data_bag' named 'users' exists
     When I authenticate as 'bobo'
      And I 'GET' the path '/search'
     Then the inflated responses key 'node' should match '^http://(.+)/search/node$'
      And the inflated responses key 'role' should match '^http://(.+)/search/role$'
      And the inflated responses key 'client' should match '^http://(.+)/search/client$'
      And the inflated responses key 'users' should match '^http://(.+)/search/users$'
      And the inflated responses key 'environment' should match '^http://(.+)/search/environment'
      And the inflated response should be '5' items long

  Scenario: List search indexes when you are not authenticated 
     When I 'GET' the path '/search' 
     Then I should get a '400 "Bad Request"' exception