summaryrefslogtreecommitdiff
path: root/features/api/data/delete_data_bag_item.feature
blob: 057c2e55ecebff4cbb54c359915a124ac7e2f8e0 (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
@api @data @api_data @api_data_item
Feature: Delete a Data Bag Item via the REST API 
  In order to remove a Data Bag Item
  As a Developer 
  I want to delete a Data Bag Item via the REST API
  
  Scenario: Delete a Data Bag Item
    Given a 'registration' named 'bobo' exists
      And a 'data_bag' named 'users' exists
      And a 'data_bag_item' named 'francis' exists
     When I authenticate as 'bobo'
      And I 'DELETE' the path '/data/users/francis'
     Then the inflated responses key 'id' should match '^francis$'

  Scenario: Delete a Data Bag Item that does not exist
    Given a 'registration' named 'bobo' exists
      And a 'data_bag' named 'users' exists
     When I authenticate as 'bobo'
     When I 'DELETE' the path '/data/users/francis'
     Then I should get a '404 "Not Found"' exception

  Scenario: Delete a Data Bag Item without authenticating 
    Given a 'data_bag' named 'users' exists
      And a 'data_bag_item' named 'francis' exists
     When I 'DELETE' the path '/data/users/francis'
     Then I should get a '401 "Unauthorized"' exception