LSST Applications  21.0.0-147-g0e635eb1+1acddb5be5,22.0.0+052faf71bd,22.0.0+1ea9a8b2b2,22.0.0+6312710a6c,22.0.0+729191ecac,22.0.0+7589c3a021,22.0.0+9f079a9461,22.0.1-1-g7d6de66+b8044ec9de,22.0.1-1-g87000a6+536b1ee016,22.0.1-1-g8e32f31+6312710a6c,22.0.1-10-gd060f87+016f7cdc03,22.0.1-12-g9c3108e+df145f6f68,22.0.1-16-g314fa6d+c825727ab8,22.0.1-19-g93a5c75+d23f2fb6d8,22.0.1-19-gb93eaa13+aab3ef7709,22.0.1-2-g8ef0a89+b8044ec9de,22.0.1-2-g92698f7+9f079a9461,22.0.1-2-ga9b0f51+052faf71bd,22.0.1-2-gac51dbf+052faf71bd,22.0.1-2-gb66926d+6312710a6c,22.0.1-2-gcb770ba+09e3807989,22.0.1-20-g32debb5+b8044ec9de,22.0.1-23-gc2439a9a+fb0756638e,22.0.1-3-g496fd5d+09117f784f,22.0.1-3-g59f966b+1e6ba2c031,22.0.1-3-g849a1b8+f8b568069f,22.0.1-3-gaaec9c0+c5c846a8b1,22.0.1-32-g5ddfab5d3+60ce4897b0,22.0.1-4-g037fbe1+64e601228d,22.0.1-4-g8623105+b8044ec9de,22.0.1-5-g096abc9+d18c45d440,22.0.1-5-g15c806e+57f5c03693,22.0.1-7-gba73697+57f5c03693,master-g6e05de7fdc+c1283a92b8,master-g72cdda8301+729191ecac,w.2021.39
LSST Data Management Base Package
Functions
lsst.afw.table.testUtils Namespace Reference

Functions

def joinWords (items)
 
def diffSchemas (schema1, schema2, flags=Schema.IDENTICAL)
 
def assertSchemasEqual (testCase, schema1, schema2, flags=Schema.IDENTICAL)
 

Function Documentation

◆ assertSchemasEqual()

def lsst.afw.table.testUtils.assertSchemasEqual (   testCase,
  schema1,
  schema2,
  flags = Schema.IDENTICAL 
)
Assert that two Schemas are equal.

Generates a message from the difference between the schemas; see
:py:func:`diffSchemas` for more information.

Parameters
----------
testCase :
    Comparison test case that should fail is schemas differ.
schema1 : :py:class:`lsst.afw.table.Schema`
    First input schema.
schema2 : :py:class:`lsst.afw.table.Schema`
    Second input schema.
flags : `int`
    A bitwise OR of :py:class:`lsst.afw.table.Schema.ComparisonFlags`
    indicating which features of schema items to compare.

Definition at line 97 of file testUtils.py.

97 def assertSchemasEqual(testCase, schema1, schema2, flags=Schema.IDENTICAL):
98  """Assert that two Schemas are equal.
99 
100  Generates a message from the difference between the schemas; see
101  :py:func:`diffSchemas` for more information.
102 
103  Parameters
104  ----------
105  testCase :
106  Comparison test case that should fail is schemas differ.
107  schema1 : :py:class:`lsst.afw.table.Schema`
108  First input schema.
109  schema2 : :py:class:`lsst.afw.table.Schema`
110  Second input schema.
111  flags : `int`
112  A bitwise OR of :py:class:`lsst.afw.table.Schema.ComparisonFlags`
113  indicating which features of schema items to compare.
114  """
115  msg = diffSchemas(schema1, schema2, flags=flags)
116  if msg:
117  testCase.fail(msg)
def diffSchemas(schema1, schema2, flags=Schema.IDENTICAL)
Definition: testUtils.py:53
def assertSchemasEqual(testCase, schema1, schema2, flags=Schema.IDENTICAL)
Definition: testUtils.py:97

◆ diffSchemas()

def lsst.afw.table.testUtils.diffSchemas (   schema1,
  schema2,
  flags = Schema.IDENTICAL 
)
Return a string diff of two schemas.

Parameters
----------
schema1 : :py:class:`lsst.afw.table.Schema`
    First schema to diff.  Items appearing only in this schema
    will be prefixed with "-" in the diff.
schema2 : :py:class:`lsst.afw.table.Schema`
    Second schema to diff.  Items appearing only in this schema
    will be prefixed with "-" in the diff.
flags : `int`
    A bitwise OR of :py:class:`lsst.afw.table.Schema.ComparisonFlags`
    indicating which features of schema items to compare.  The returned
    diff will always show all differences, but no diff will be shown if
    the only differences are not included in the flags.  Default is
    `lsst.afw.table.Schema.IDENTICAL`, which checks everything.

Returns
-------
diff : `str`
    A "unified diff" string representation of the difference between the
    schemas, or an empty string if there is no difference.

Definition at line 53 of file testUtils.py.

53 def diffSchemas(schema1, schema2, flags=Schema.IDENTICAL):
54  """Return a string diff of two schemas.
55 
56  Parameters
57  ----------
58  schema1 : :py:class:`lsst.afw.table.Schema`
59  First schema to diff. Items appearing only in this schema
60  will be prefixed with "-" in the diff.
61  schema2 : :py:class:`lsst.afw.table.Schema`
62  Second schema to diff. Items appearing only in this schema
63  will be prefixed with "-" in the diff.
64  flags : `int`
65  A bitwise OR of :py:class:`lsst.afw.table.Schema.ComparisonFlags`
66  indicating which features of schema items to compare. The returned
67  diff will always show all differences, but no diff will be shown if
68  the only differences are not included in the flags. Default is
69  `lsst.afw.table.Schema.IDENTICAL`, which checks everything.
70 
71  Returns
72  -------
73  diff : `str`
74  A "unified diff" string representation of the difference between the
75  schemas, or an empty string if there is no difference.
76  """
77  result = schema1.compare(schema2, flags)
78  if result == flags:
79  return ""
80  components = []
81  if not result & Schema.EQUAL_KEYS:
82  components.append("keys")
83  if not result & Schema.EQUAL_NAMES:
84  components.append("names")
85  if not result & Schema.EQUAL_DOCS:
86  components.append("docs")
87  if not result & Schema.EQUAL_UNITS:
88  components.append("units")
89  if not result & Schema.EQUAL_ALIASES:
90  components.append("aliases")
91  diff = "\n".join(difflib.unified_diff(
92  str(schema1).split("\n"), str(schema2).split("\n")))
93  return f"{joinWords(components).capitalize()} differ:\n{diff}"
94 
95 
96 @lsst.utils.tests.inTestCase

◆ joinWords()

def lsst.afw.table.testUtils.joinWords (   items)
Join a sequence of words into a comma-separated, 'and'-finalized
string with correct English syntax.

Parameters
----------
items : Array of `str`
    Sequence to be joined.

Returns
-------
result : `str`
     Correct English Oxford-comma terminated string.

Definition at line 29 of file testUtils.py.

29 def joinWords(items):
30  """Join a sequence of words into a comma-separated, 'and'-finalized
31  string with correct English syntax.
32 
33  Parameters
34  ----------
35  items : Array of `str`
36  Sequence to be joined.
37 
38  Returns
39  -------
40  result : `str`
41  Correct English Oxford-comma terminated string.
42  """
43  if len(items) == 1:
44  result = items[0]
45  elif len(items) == 2:
46  result = f"{items[0]} and {items[1]}"
47  else:
48  allButLast = ", ".join(items[:-1])
49  result = f"{allButLast}, and items{[-1]}"
50  return result
51 
52