This file is indexed.

/usr/lib/python3/dist-packages/pydap/tests/test_parsers.py is in python3-pydap 3.2.2+ds1-1ubuntu1.

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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
"""Test parsing functions."""

import operator

from pydap.parsers import (parse_projection, parse_selection,
                           parse_ce, parse_hyperslab, SimpleParser)
from pydap.exceptions import ConstraintExpressionError
from pydap.tests.datasets import VerySimpleSequence
import unittest


class TestParseProjection(unittest.TestCase):

    """Test projection parser.

    The projection is a comma separated list of variable ids (or names, if the
    client is using the shorthand notation), with optional hyperslabs and
    possibly function calls.

    """

    def test_basic(self):
        """Test a basic projection."""
        parsed = parse_projection("a,b,c")
        self.assertEqual(parsed, [[("a", ())], [("b", ())], [("c", ())]])

    def test_deep(self):
        """Test a projection with a deep id."""
        parsed = parse_projection("a.b.c,d")
        self.assertEqual(
            parsed, [[("a", ()), ("b", ()), ("c", ())], [("d", ())]])

    def test_hyperslab(self):
        """Test a projection with a hyperslab."""
        parsed = parse_projection("a,b.c[0:2:9]")
        self.assertEqual(
            parsed, [[("a", ())], [("b", ()), ("c", (slice(0, 10, 2),))]])

    def test_function_call(self):
        """Test a projection with a function call."""
        parsed = parse_projection("mean(a[0],1)")
        self.assertEqual(
            parsed, ['mean(a[0],1)'])

    def test_nested_function_call(self):
        """Test a projection with a function call."""
        parsed = parse_projection("mean(mean(a[0],1))")
        self.assertEqual(
            parsed, ['mean(mean(a[0],1))'])


class TestParseSelection(unittest.TestCase):

    """Test selection parser."""

    def test_simple(self):
        """Test a simple selection."""
        id1, op, id2 = parse_selection("sequence.byte>1", VerySimpleSequence)
        self.assertIs(id1, VerySimpleSequence.sequence.byte)
        self.assertIs(op, operator.gt)
        self.assertEqual(id2, 1)

    def test_inverted(self):
        """Test an inverted selection."""
        id1, op, id2 = parse_selection("1<sequence.byte", VerySimpleSequence)
        self.assertEqual(id1, 1)
        self.assertIs(op, operator.lt)
        self.assertIs(id2, VerySimpleSequence.sequence.byte)


class TestParseCe(unittest.TestCase):

    """Test the constraint expression parser."""

    def test_empty(self):
        """Test no constraint expression."""
        projection, selection = parse_ce('')
        self.assertEqual(projection, [])
        self.assertEqual(selection, [])

    def test_basic(self):
        """Test a basic constraint expression."""
        projection, selection = parse_ce("a,b&c>1")
        self.assertEqual(projection, [[("a", ())], [("b", ())]])
        self.assertEqual(selection, ["c>1"])

    def test_only_projection(self):
        """Test a constraint expression with only the projection."""
        projection, selection = parse_ce("a,b")
        self.assertEqual(projection, [[("a", ())], [("b", ())]])
        self.assertEqual(selection, [])

    def test_only_selection(self):
        """Test a constraint expression with only the selection."""
        projection, selection = parse_ce("c>1")
        self.assertEqual(projection, [])
        self.assertEqual(selection, ["c>1"])

    def test_complex(self):
        """Test a more complex constraint expression."""
        projection, selection = parse_ce("a,b[0:2:9],c&a>1&b<2")
        self.assertEqual(
            projection,
            [[("a", ())], [("b", (slice(0, 10, 2),))], [("c", ())]])
        self.assertEqual(selection, ["a>1", "b<2"])

    def test_function(self):
        """Test a constraint expression with a function call."""
        projection, selection = parse_ce(
            "time&bounds(0,360,-90,90,0,500,00Z01JAN1970,00Z04JAN1970)")
        self.assertEqual(projection, [[("time", ())]])
        self.assertEqual(
            selection,
            ["bounds(0,360,-90,90,0,500,00Z01JAN1970,00Z04JAN1970)"])

    def test_function_no_selection(self):
        """Test a constraint expression with a function call."""
        projection, selection = parse_ce(
            "time,bounds(0,360,-90,90,0,500,00Z01JAN1970,00Z04JAN1970)")
        self.assertEqual(
            projection,
            [[("time", ())],
                'bounds(0,360,-90,90,0,500,00Z01JAN1970,00Z04JAN1970)'])
        self.assertEqual(selection, [])


class TestParseHyperslab(unittest.TestCase):

    """Test hyperslab parser."""

    def test_point(self):
        """Test a single value selection."""
        self.assertEqual(parse_hyperslab('[0]'), (slice(0, 1, 1),))

    def test_start_stop(self):
        """Test start and stop, default step."""
        self.assertEqual(parse_hyperslab('[0:1]'), (slice(0, 2, 1),))

    def test_start_step_stop(self):
        """Test start, step and stop."""
        self.assertEqual(parse_hyperslab('[0:2:9]'), (slice(0, 10, 2),))

    def test_invalid(self):
        """Test invalid hyperslab."""
        with self.assertRaises(ConstraintExpressionError):
            parse_hyperslab('[0:2:9:1]')

    def test_ndimensionsal(self):
        """Test n-dimensional slices."""
        self.assertEqual(
            parse_hyperslab('[0:2:9][0][0:99]'),
            (slice(0, 10, 2), slice(0, 1, 1), slice(0, 100, 1)))


class TestSimpleParser(unittest.TestCase):

    """Test the base class for the DAS/DDS parsers."""

    def test_peek_existing(self):
        """Test the peek method when the token exists."""
        parser = SimpleParser("Hello, World!")
        self.assertEqual(parser.peek(r"\w+"), "Hello")

    def test_peek_missing(self):
        """Test the peek method when the token does not exist."""
        parser = SimpleParser("Hello, World!")
        self.assertEqual(parser.peek(r"\d+"), "")

    def test_consume_existing(self):
        """Test the consume method when the token exists."""
        parser = SimpleParser("Hello, World!")
        self.assertEqual(parser.consume(r"\w+"), "Hello")
        self.assertEqual(parser.consume(", "), ", ")
        self.assertEqual(parser.consume(r"\w+"), "World")
        self.assertEqual(parser.consume("!"), "!")

    def test_consume_missing(self):
        """Test the consume method when the token does not exist."""
        parser = SimpleParser("Hello, World!")
        with self.assertRaises(Exception):
            parser.consume(r"\d+")