summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/hil/test/test_ci_metrics.py35
-rw-r--r--test/hil/test/test_ci_select.py24
2 files changed, 48 insertions, 11 deletions
diff --git a/test/hil/test/test_ci_metrics.py b/test/hil/test/test_ci_metrics.py
index 89d03aaae..6c236e827 100644
--- a/test/hil/test/test_ci_metrics.py
+++ b/test/hil/test/test_ci_metrics.py
@@ -58,13 +58,16 @@ class TestByExample(unittest.TestCase):
'-o', out, os.path.join(td, '*', '*', '*.map.json')], check=True)
out2 = os.path.join(td, 'sub')
r = subprocess.run([sys.executable, METRICS, 'combine', '-q', '-j',
- '--only-examples', 'device/cdc_msc',
'-o', out2, out + '_by_example.json'],
capture_output=True, text=True)
self.assertEqual(r.returncode, 0, r.stderr)
sub = json.load(open(out2 + '.json'))
names = {f['file'] for f in sub['files']}
- self.assertEqual(names, {'usbd.c', 'cdc_device.c'}) # bare_api filtered out
+ # one data entry per example, not one blob: reading it as an ordinary
+ # metrics.json would double-count every file
+ self.assertIn('usbd.c', names)
+ self.assertIn('cdc_device.c', names)
+ self.assertNotIn('TOTAL', {n.upper() for n in names})
def test_by_example_expansion_is_keyed_on_the_filename(self):
# the '_by_example.json' suffix IS the contract (write_by_example, the CMake
@@ -339,9 +342,15 @@ class TestWorkflowSelectionHandOff(unittest.TestCase):
# with secrets - and for run_*, flips which rig jobs execute
for name in ('EX_ARGS', 'ARTIFACT_TAG'):
self.assertIn(f'echo "{name}=', self.util)
- self.assertEqual(self.util.count('case "$EX_ARGS" in') +
- self.util.count('case "$TAG" in'), 2,
- 'both GITHUB_ENV writes must screen their value first')
+ # per guard, not a sum: `count(a) + count(b) == 2` stays green when one guard is
+ # deleted and the other duplicated
+ for guard in ('case "$EX_ARGS" in', 'case "$TAG" in'):
+ self.assertEqual(self.util.count(guard), 1,
+ f'{guard}: each GITHUB_ENV write screens its value exactly once')
+ # CircleCI builds from the same PR-derived map and uses $EX_ARGS unquoted
+ cci = open(os.path.join(CIRCLECI, 'config2.yml')).read()
+ self.assertIn('case "$EX_ARGS" in', cci,
+ 'the CircleCI copy of the example filter needs the same screen')
self.assertIn('case "$BUILD_ARGS" in', self.build)
self.assertIn('unexpected characters in the " + key', self.build,
'the args_*/run_* emitter must screen each board filter')
@@ -429,12 +438,16 @@ class TestWorkflowSelectionHandOff(unittest.TestCase):
self.assertEqual(matrix.count('ci_set_matrix: UNSCOPED'), 2,
'every fall-open path must print the marker build.yml greps for')
- def test_membrowse_upload_is_not_scoped(self):
- # <TARGET>-membrowse-upload has no DEPENDS, so the aggregate rebuilds nothing -
- # it records every example, --identical for the ones without an elf. Scoping it
- # drops the excluded examples from the dataset instead of marking them unchanged.
- upload = self.util[self.util.index('--target examples-membrowse-upload'):]
- self.assertNotIn('$EX_ARGS', upload.split('\n')[0])
+ def test_membrowse_upload_sees_the_same_board_as_the_build(self):
+ # $EX_ARGS is passed for the BOARD it selects: --one-first picks a board that can
+ # build the -e set, so without it membrowse configures a different, empty build
+ # dir and uploads --identical for a board that was never compiled. It does NOT
+ # scope the targets - `examples-membrowse-upload` is not `all`, so it passes
+ # through as the aggregate, which has no DEPENDS and still records every example.
+ line = [l for l in self.util.splitlines()
+ if '--target examples-membrowse-upload' in l][0]
+ self.assertIn('$EX_ARGS', line)
+ self.assertNotIn('-e ', line.replace('$EX_ARGS', ''))
if __name__ == '__main__':
diff --git a/test/hil/test/test_ci_select.py b/test/hil/test/test_ci_select.py
index 74e5f48e6..031e8e287 100644
--- a/test/hil/test/test_ci_select.py
+++ b/test/hil/test/test_ci_select.py
@@ -777,6 +777,24 @@ class TestOrphanInvariant(unittest.TestCase):
for v in vendors:
self.assertTrue(ci_select.mcu_families(v + '/x.c', REPO), f'{v}: resolves to no family')
+ # hw/bsp families ci_set_matrix's family_list does not map to any toolchain. Before
+ # scoping these were harmless - the matrix was always every family in family_list,
+ # so a PR touching one of them still compiled the other 64. Now the selection
+ # intersects to nothing and every leg skips, so a family landing here by accident is
+ # a silent hole. espressif is deliberate: its boards are built by hil-build-esp,
+ # keyed on board name rather than family.
+ UNBUILT_FAMILIES = {'cxd56', 'efm32', 'espressif', 'f1c100s', 'pic32mz', 'py32f0',
+ 'same7x'}
+
+ def test_every_bsp_family_is_in_the_ci_matrix(self):
+ sys.path.insert(0, os.path.join(REPO, '.github/scripts'))
+ import ci_set_matrix
+ fams = set(ci_select.all_bsp_families(REPO))
+ self.assertEqual(fams - set(ci_set_matrix.family_list), self.UNBUILT_FAMILIES,
+ 'a hw/bsp family that no toolchain in ci_set_matrix.family_list '
+ 'builds: a PR touching only it now selects zero build legs. Wire '
+ 'it into family_list, or add it here with a reason.')
+
def test_every_get_deps_family_token_resolves_or_is_a_known_alias(self):
"""Same drift guard, dep side. A token naming no hw/bsp dir makes the entry
unreachable for its family in get_deps.py itself (`f in entry[2].split()`), and
@@ -1132,8 +1150,14 @@ class TestBuildClassifier(unittest.TestCase):
# real feather_rp2040_max3421 board) and espressif's component CMakeLists also
# references it — so the raw (unpruned) scan legitimately finds both; Task 4's
# buildability post-filter is what may later prune either away
+ # non-empty FIRST: a subset assertion is satisfied by set(), and since ports are
+ # now empty-means-empty (fail-closed) an unnoticed regression to zero families
+ # would select no build leg at all and merge an uncompiled HCD
+ self.assertTrue(s['families'], 'a host-port change must select some family')
self.assertLessEqual(set(s['families']), {'espressif', 'rp2040'})
+ self.assertTrue(s['family_examples'], 'and must name the examples for them')
for exs in s['family_examples'].values():
+ self.assertTrue(exs)
self.assertFalse(any(e.startswith(('device/', 'typec/')) for e in exs))
def test_port_shared_file_selects_all_examples(self): # rule 5