This file is indexed.

/usr/lib/python3/dist-packages/pydap/tests/test_handlers_netcdf.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
"""Test the DAP handler, which forms the core of the client."""

import sys
from netCDF4 import Dataset
import tempfile
import os
import numpy as np
from six.moves import zip

from pydap.handlers.netcdf import NetCDFHandler
from pydap.handlers.dap import DAPHandler
from pydap.wsgi.ssf import ServerSideFunctions

if sys.version_info < (2, 7):
    import unittest2 as unittest
else:
    import unittest


class TestNetCDFHandler(unittest.TestCase):

    """Test that the handler creates the correct dataset from a URL."""
    data = [(10, 15.2, 'Diamond_St'),
            (11, 13.1, 'Blacktail_Loop'),
            (12, 13.3, 'Platinum_St'),
            (13, 12.1, 'Kodiak_Trail')]

    def setUp(self):
        """Create WSGI apps"""

        # Create tempfile:
        fileno, self.test_file = tempfile.mkstemp(suffix='.nc')
        # must close file number:
        os.close(fileno)
        with Dataset(self.test_file, 'w') as output:
            output.createDimension('index', None)
            temp = output.createVariable('index', '<i4', ('index',))
            split_data = zip(*self.data)
            temp[:] = next(split_data)
            temp = output.createVariable('temperature', '<f8', ('index',))
            temp[:] = next(split_data)
            temp = output.createVariable('station', 'S40', ('index',))
            for item_id, item in enumerate(next(split_data)):
                temp[item_id] = item

    def test_handler_direct(self):
        """Test that dataset has the correct data proxies for grids."""
        dataset = NetCDFHandler(self.test_file).dataset
        dtype = [('index', '<i4'),
                 ('temperature', '<f8'),
                 ('station', 'S40')]
        retrieved_data = list(zip(dataset['index'][:],
                                  dataset['temperature'].array[:],
                                  dataset['station'].array[:]))
        np.testing.assert_array_equal(np.array(retrieved_data, dtype=dtype),
                                      np.array(self.data, dtype=dtype))

    def tearDown(self):
        os.remove(self.test_file)


class TestNetCDFHandlerServer(unittest.TestCase):

    """Test that the handler creates the correct dataset from a URL."""
    data = [(10, 15.2, 'Diamond_St'),
            (11, 13.1, 'Blacktail_Loop'),
            (12, 13.3, 'Platinum_St'),
            (13, 12.1, 'Kodiak_Trail')]

    def setUp(self):
        """Create WSGI apps"""

        # Create tempfile:
        fileno, self.test_file = tempfile.mkstemp(suffix='.nc')
        # must close file number:
        os.close(fileno)
        with Dataset(self.test_file, 'w') as output:
            output.createDimension('index', None)
            temp = output.createVariable('index', '<i4', ('index',))
            split_data = zip(*self.data)
            temp[:] = next(split_data)
            temp = output.createVariable('temperature', '<f8', ('index',))
            temp[:] = next(split_data)
            temp = output.createVariable('station', 'S40', ('index',))
            for item_id, item in enumerate(next(split_data)):
                temp[item_id] = item

    def test_open(self):
        """Test that NetCDFHandler can be read through open_url."""
        handler = NetCDFHandler(self.test_file)
        application = ServerSideFunctions(handler)
        dataset = DAPHandler("http://localhost:8001/", application).dataset
        dtype = [('index', '<i4'),
                 ('temperature', '<f8'),
                 ('station', 'S40')]
        retrieved_data = list(zip(dataset['index'][:],
                                  dataset['temperature'].array[:],
                                  dataset['station'].array[:]))
        np.testing.assert_array_equal(np.array(retrieved_data, dtype=dtype),
                                      np.array(self.data, dtype=dtype))

    def tearDown(self):
        os.remove(self.test_file)