This file is indexed.

/usr/lib/python2.7/dist-packages/gnocchiclient/tests/functional/test_archive_policy.py is in python-gnocchiclient 7.0.1-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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
#    not use this file except in compliance with the License. You may obtain
#    a copy of the License at
#
#         http://www.apache.org/licenses/LICENSE-2.0
#
#    Unless required by applicable law or agreed to in writing, software
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
#    License for the specific language governing permissions and limitations
#    under the License.
import json
import uuid

from gnocchiclient.tests.functional import base


class ArchivePolicyClientTest(base.ClientTestBase):
    def test_archive_policy_scenario(self):
        # CREATE
        apname = str(uuid.uuid4())
        result = self.gnocchi(
            u'archive-policy', params=u"create %s"
            u" --back-window 0"
            u" -d granularity:1s,points:86400" % apname)
        policy = json.loads(result)
        self.assertEqual(apname, policy["name"])

        # CREATE FAIL
        result = self.gnocchi(
            u'archive-policy', params=u"create %s"
            u" --back-window 0"
            u" -d granularity:1s,points:86400" % apname,
            fail_ok=True, merge_stderr=True)
        self.assertEqual(
            "Archive policy %s already exists (HTTP 409)\n" % apname,
            result)

        # GET
        result = self.gnocchi(
            'archive-policy', params="show %s" % apname)
        policy = json.loads(result)
        self.assertEqual(apname, policy["name"])

        # LIST
        result = self.gnocchi(
            'archive-policy', params="list")
        policies = json.loads(result)
        policy_from_list = [p for p in policies
                            if p['name'] == apname][0]
        for field in ["back_window", "definition", "aggregation_methods"]:
            self.assertEqual(policy[field], policy_from_list[field])

        # UPDATE
        result = self.gnocchi(
            'archive-policy', params='update %s'
            ' -d granularity:1s,points:60' % apname)
        policy = json.loads(result)
        self.assertEqual(apname, policy["name"])

        # UPDATE FAIL
        result = self.gnocchi(
            'archive-policy', params='update %s'
            ' -d granularity:5s,points:86400' % apname,
            fail_ok=True, merge_stderr=True)
        self.assertEqual(
            "Archive policy %s does not support change: 1.0 granularity "
            "interval was changed (HTTP 400)\n" % apname,
            result)

        # DELETE
        self.gnocchi('archive-policy',
                     params="delete %s" % apname,
                     has_output=False)

        # GET FAIL
        result = self.gnocchi('archive-policy',
                              params="show %s" % apname,
                              fail_ok=True, merge_stderr=True)
        self.assertEqual(
            "Archive policy %s does not exist (HTTP 404)\n" % apname,
            result)

        # DELETE FAIL
        result = self.gnocchi('archive-policy',
                              params="delete %s" % apname,
                              fail_ok=True, merge_stderr=True,
                              has_output=False)
        self.assertEqual(
            "Archive policy %s does not exist (HTTP 404)\n" % apname,
            result)