This file is indexed.

/usr/lib/python2.7/dist-packages/gnocchiclient/tests/functional/test_archive_policy_rule.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
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
#    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 ArchivePolicyRuleClientTest(base.ClientTestBase):
    def test_archive_policy_rule_scenario(self):
        apname = str(uuid.uuid4())
        # Create an archive policy
        self.gnocchi(
            u'archive-policy', params=u"create %s"
            u" -d granularity:1s,points:86400" % apname)

        # CREATE
        result = self.gnocchi(
            u'archive-policy-rule', params=u"create test"
            u" --archive-policy-name %s"
            u" --metric-pattern 'disk.io.*'" % apname)
        policy_rule = json.loads(result)
        self.assertEqual('test', policy_rule["name"])

        # CREATE FAIL
        result = self.gnocchi(
            u'archive-policy-rule', params=u"create test"
            u" --archive-policy-name high"
            u" --metric-pattern 'disk.io.*'",
            fail_ok=True, merge_stderr=True)
        self.assertEqual(
            "Archive policy rule test already exists (HTTP 409)\n",
            result)
        # GET
        result = self.gnocchi(
            'archive-policy-rule', params="show test")
        policy_rule = json.loads(result)
        self.assertEqual("test", policy_rule["name"])

        # LIST
        result = self.gnocchi('archive-policy-rule', params="list")
        rules = json.loads(result)
        rule_from_list = [p for p in rules
                          if p['name'] == 'test'][0]
        for field in ["metric_pattern", "archive_policy_name"]:
            self.assertEqual(policy_rule[field], rule_from_list[field])

        # CREATE - RENAME - GET
        self.gnocchi(
            u'archive-policy-rule', params=u"create to_rename"
            u" --archive-policy-name %s"
            u" --metric-pattern 'disk.io.*'" % apname)
        result = self.gnocchi(
            u'archive-policy-rule', params=u'update to_rename'
            u' --name renamed')
        policy_rule = json.loads(result)
        self.assertEqual('renamed', policy_rule["name"])

        result = self.gnocchi(
            'archive-policy-rule', params="show renamed")
        policy_rule = json.loads(result)
        self.assertEqual("renamed", policy_rule["name"])

        # CONFIRM RENAME
        result = self.gnocchi('archive-policy-rule',
                              params="show to_rename",
                              fail_ok=True, merge_stderr=True)
        self.assertEqual(
            "Archive policy rule to_rename does not exist (HTTP 404)\n",
            result)

        # RENAME FAIL
        result = self.gnocchi(
            'archive-policy-rule', params='update test'
            ' --name renamed',
            fail_ok=True, merge_stderr=True)
        self.assertEqual(
            'Archive policy rule test does not support change:'
            ' Archive policy rule renamed already exists. (HTTP 400)\n',
            result)

        # DELETE
        self.gnocchi('archive-policy-rule', params="delete test",
                     has_output=False)

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

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