lsst.afw g8cdfe0ae6a+4fd9e222a8
Loading...
Searching...
No Matches
Classes | Public Member Functions | Static Public Member Functions | Public Attributes | Static Protected Attributes | List of all members
lsst.afw.typehandling.testUtils.GenericMapTestBaseClass Class Reference
Inheritance diagram for lsst.afw.typehandling.testUtils.GenericMapTestBaseClass:
lsst.afw.typehandling.testUtils.MutableGenericMapTestBaseClass

Classes

class  ComplexStorable
 
class  NotAStorable
 
class  SimpleStorable
 

Public Member Functions

 getTestData (cls, keyClass)
 
 setUp (self)
 
 checkInitMapping (self, mapClass, contents, msg="")
 
 checkInitPairs (self, mapClass, contents, msg="")
 
 checkInitKwargs (self, mapClass, contents, msg="")
 
 checkFromKeysDefault (self, mapClass, keys, msg="")
 
 checkFromKeys (self, mapClass, keys, value, msg="")
 
 checkContains (self, genericMap, contents, msg="")
 
 checkContents (self, genericMap, contents, msg="")
 
 checkGet (self, genericMap, contents, msg="")
 
 checkIteration (self, genericMap, contents, msg="")
 
 checkViews (self, genericMap, contents, msg="")
 

Static Public Member Functions

 getValidKeys (mapClass)
 

Public Attributes

 longMessage
 

Static Protected Attributes

 _testData
 

Detailed Description

Base class for unit tests of GenericMap.

Subclasses must call `GenericMapTestBaseClass.setUp(self)`
if they provide their own version.

This class is not *quite* a generic Mapping testbed, because it assumes
that the map being tested only accepts keys of a particular type, stored as
the `dtype` member.

Definition at line 33 of file testUtils.py.

Member Function Documentation

◆ checkContains()

lsst.afw.typehandling.testUtils.GenericMapTestBaseClass.checkContains ( self,
genericMap,
contents,
msg = "" )
Check the contents of a GenericMap.

Parameters
----------
genericMap : `lsst.afw.typehandling.GenericMap`
    The map to test.
contents : `Mapping`
    The key-value pairs that should be present in ``genericMap``
msg : `str`
    Error message suffix describing test parameters

Definition at line 262 of file testUtils.py.

◆ checkContents()

lsst.afw.typehandling.testUtils.GenericMapTestBaseClass.checkContents ( self,
genericMap,
contents,
msg = "" )
Check the contents of a GenericMap.

Parameters
----------
genericMap : `lsst.afw.typehandling.GenericMap`
    The map to test.
contents : `Mapping`
    The key-value pairs that should be present in ``genericMap``
msg : `str`
    Error message suffix describing test parameters

Definition at line 286 of file testUtils.py.

◆ checkFromKeys()

lsst.afw.typehandling.testUtils.GenericMapTestBaseClass.checkFromKeys ( self,
mapClass,
keys,
value,
msg = "" )
Check initialization using the ``fromkeys`` factory.

Parameters
----------
mapClass: `lsst.afw.typehandling.GenericMap`-type
    The class whose ``fromkeys`` method will be tested.
keys : `iterable`
    The keys to insert into the map.
value
    A legal value for a GenericMap.
msg : `str`
    Error message suffix describing test parameters

Definition at line 244 of file testUtils.py.

◆ checkFromKeysDefault()

lsst.afw.typehandling.testUtils.GenericMapTestBaseClass.checkFromKeysDefault ( self,
mapClass,
keys,
msg = "" )
Check initialization using the ``fromkeys`` factory.

Unlike `checkFromKeys`, this method lets ``fromkeys`` use its default
value (which may give different behavior, in nonconforming
implementations, from explicitly passing `None`).

Parameters
----------
mapClass: `lsst.afw.typehandling.GenericMap`-type
    The class whose ``fromkeys`` method will be tested.
keys : `iterable`
    The keys to insert into the map.
msg : `str`
    Error message suffix describing test parameters

Definition at line 224 of file testUtils.py.

◆ checkGet()

lsst.afw.typehandling.testUtils.GenericMapTestBaseClass.checkGet ( self,
genericMap,
contents,
msg = "" )
Check that GenericMap.get works correctly.

Parameters
----------
genericMap : `lsst.afw.typehandling.GenericMap`
    The map to test.
contents : `Mapping`
    The key-value pairs that should be present in ``genericMap``
msg : `str`
    Error message suffix describing test parameters

Definition at line 310 of file testUtils.py.

◆ checkInitKwargs()

lsst.afw.typehandling.testUtils.GenericMapTestBaseClass.checkInitKwargs ( self,
mapClass,
contents,
msg = "" )
Check bulk insertion from keywords into a GenericMap.

Parameters
----------
mapClass: `lsst.afw.typehandling.GenericMapS`-type
    The class whose ``__init__`` method will be tested.
    Must allow string keys.
contents : `Mapping`
    The key-value pairs to insert into the map
msg : `str`
    Error message suffix describing test parameters

Definition at line 205 of file testUtils.py.

◆ checkInitMapping()

lsst.afw.typehandling.testUtils.GenericMapTestBaseClass.checkInitMapping ( self,
mapClass,
contents,
msg = "" )
Check initialization from a mapping.

Parameters
----------
mapClass : `lsst.afw.typehandling.GenericMap`-type
    The class whose ``__init__`` method will be tested.
contents : `Mapping`
    The key-value pairs to insert into the map
msg : `str`
    Error message suffix describing test parameters

Definition at line 153 of file testUtils.py.

◆ checkInitPairs()

lsst.afw.typehandling.testUtils.GenericMapTestBaseClass.checkInitPairs ( self,
mapClass,
contents,
msg = "" )
Check initialization from an iterable of pairs.

Parameters
----------
mapClass: `lsst.afw.typehandling.GenericMap`-type
    The class whose ``__init__`` method will be tested.
contents : `Mapping`
    The key-value pairs to insert into the map
msg : `str`
    Error message suffix describing test parameters

Definition at line 179 of file testUtils.py.

◆ checkIteration()

lsst.afw.typehandling.testUtils.GenericMapTestBaseClass.checkIteration ( self,
genericMap,
contents,
msg = "" )
Check the result of iterating over a GenericMap.

Parameters
----------
genericMap : `lsst.afw.typehandling.GenericMap`
    The map to test.
contents : `Mapping`
    The key-value pairs that should be present in ``genericMap``
msg : `str`
    Error message suffix describing test parameters

Definition at line 336 of file testUtils.py.

◆ checkViews()

lsst.afw.typehandling.testUtils.GenericMapTestBaseClass.checkViews ( self,
genericMap,
contents,
msg = "" )
Check the views provided by a GenericMap.

Parameters
----------
genericMap : `lsst.afw.typehandling.GenericMap`
    The map to test.
contents : `Mapping`
    The key-value pairs that should be present in ``genericMap``
msg : `str`
    Error message suffix describing test parameters

Definition at line 350 of file testUtils.py.

◆ getTestData()

lsst.afw.typehandling.testUtils.GenericMapTestBaseClass.getTestData ( cls,
keyClass )
Generic dataset for testing GenericMap classes that can handle it.

Parameters
----------
keyClass : `type`
    The type of key expected by the GenericMap.

Definition at line 96 of file testUtils.py.

◆ getValidKeys()

lsst.afw.typehandling.testUtils.GenericMapTestBaseClass.getValidKeys ( mapClass)
static
Return all keys suitable for a GenericMap.

Parameters
----------
mapClass : `type`
    A type object for a subclass of either `GenericMap` or a
    key-specific specialization.

Returns
-------
keyTypes: `set` [`type`]
    The types that can be used as keys. If ``mapClass`` is a
    key-specific specialization, this set will contain exactly
    one type.

Definition at line 107 of file testUtils.py.

◆ setUp()

lsst.afw.typehandling.testUtils.GenericMapTestBaseClass.setUp ( self)
Set up a test

Subclasses must call this method if they override setUp.

Definition at line 128 of file testUtils.py.

Member Data Documentation

◆ _testData

lsst.afw.typehandling.testUtils.GenericMapTestBaseClass._testData
staticprotected

Definition at line 85 of file testUtils.py.

◆ longMessage

lsst.afw.typehandling.testUtils.GenericMapTestBaseClass.longMessage

Definition at line 136 of file testUtils.py.


The documentation for this class was generated from the following file: