This file is indexed.

/usr/lib/python2.7/dist-packages/aodh/tests/functional/gabbi/gabbits/basic.yaml is in python-aodh 2.0.0-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#
# Some simple tests just to confirm that the system works.
#
fixtures:
    - ConfigFixture

tests:

# Root gives us some information on where to go from here.
-    name: quick root check
     url: /
     response_headers:
         content-type: application/json; charset=UTF-8
     response_strings:
         - '"base": "application/json"'
     response_json_paths:
         versions.values.[0].status: stable
         versions.values.[0].media-types.[0].base: application/json

# NOTE(chdent): Ideally since / has a links ref to /v2, /v2 ought not 404!
-    name: v2 visit
     desc: this demonstrates a bug in the info in /
     url: $RESPONSE['versions.values.[0].links.[0].href']
     status: 404