This file is indexed.

/usr/lib/python3/dist-packages/pygal/test/test_xml_filters.py is in python3-pygal 2.4.0-1.

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
# -*- coding: utf-8 -*-
# This file is part of pygal
#
# A python svg graph plotting library
# Copyright © 2012-2016 Kozea
#
# This library is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option) any
# later version.
#
# This library is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with pygal. If not, see <http://www.gnu.org/licenses/>.

"""Xml filter tests"""

from pygal import Bar


class ChangeBarsXMLFilter(object):

    """xml filter that insert a subplot"""

    def __init__(self, a, b):
        """Generate data"""
        self.data = [b[i] - a[i] for i in range(len(a))]

    def __call__(self, T):
        """Apply the filter on the tree"""
        subplot = Bar(legend_at_bottom=True, explicit_size=True,
                      width=800, height=150)
        subplot.add("Difference", self.data)
        subplot = subplot.render_tree()
        subplot = subplot.findall("g")[0]
        T.insert(2, subplot)
        T.findall("g")[1].set('transform', 'translate(0,150), scale(1,0.75)')
        return T


def test_xml_filters_round_trip():
    """Ensure doing nothing does nothing"""
    plot = Bar()
    plot.add("A", [60, 75, 80, 78, 83, 90])
    plot.add("B", [92, 87, 81, 73, 68, 55])
    before = plot.render()
    plot.add_xml_filter(lambda T: T)
    after = plot.render()
    assert before == after


def test_xml_filters_change_bars():
    """Test the use a xml filter"""
    plot = Bar(legend_at_bottom=True, explicit_size=True,
               width=800, height=600)
    A = [60, 75, 80, 78, 83, 90]
    B = [92, 87, 81, 73, 68, 55]
    plot.add("A", A)
    plot.add("B", B)
    plot.add_xml_filter(ChangeBarsXMLFilter(A, B))
    q = plot.render_tree()
    assert len(q.findall("g")) == 2
    assert q.findall("g")[1].attrib[
        "transform"] == "translate(0,150), scale(1,0.75)"