Skip to content

Commit 9a78df5

Browse files
authored
Updates config and workflows to be consistent and correct. (#147)
1 parent d6543a3 commit 9a78df5

5 files changed

+79
-15
lines changed

.github/workflows/notebook-test-suite.yml

+36-8
Original file line numberDiff line numberDiff line change
@@ -43,42 +43,70 @@ on:
4343
- uat
4444
- prod
4545
service-name:
46-
description: "Select the service to run tests against"
46+
description: "Select the service to run its tests"
4747
required: true
4848
type: choice
4949
options:
50-
# This is a list of the aliases for the service images
51-
# found at the harmony service-image-tags endpoint.
50+
# Run all regression test suites
5251
- all
52+
# These values are from Harmony's /service-image-tag endpoint and are associated
53+
## with 1 or more regression tests via the services_tests_config_[env].json files.
5354
- batchee
5455
- geoloco
5556
- giovanni-adapter
56-
- harmony
5757
- harmony-gdal-adapter
58-
# - harmony-netcdf-to-zarr": "n2z", (disabled because AWS Credentials are needed to run)
58+
## - harmony-netcdf-to-zarr": "n2z", (Disabled because of AWS credential requirements)
5959
- harmony-regridder
6060
- harmony-service-example
61+
- harmony-smap-l2-gridder
6162
- hoss
6263
- hybig
6364
- net2cog
65+
- opera-rtc-s1-browse
6466
- podaac-concise
6567
- podaac-l2-subsetter
6668
- query-cmr
67-
- smap-l2-gridder
6869
- sds-maskfill
6970
- stitchee
7071
- subset-band-name
7172
- swath-projector
7273
- trajectory-subsetter
73-
- opera-rtc-s1-browse
74+
## These run specific regression tests associated with service chains or core Harmony functionality.
75+
- harmony
76+
- harmony-regression
77+
- sambah
78+
- nsidc-icesat2
79+
7480
docker-image-tag:
7581
description: "Optional Docker image tag to use for the tests"
7682
required: false
7783
type: string
7884
default: 'latest'
7985

8086
repository_dispatch:
81-
types: [all,geoloco,harmony-gdal-adapter,harmony-netcdf-to-zarr,harmony-service-example,hoss,hybig,net2cog,swath-projector,trajectory-subsetter,sambah,opera-rtc-s1-browse]
87+
types:
88+
## These are the events sent from Harmony to this repository's API to trigger tests.
89+
## They should align with the keys to the /service-image-tag endpoint (plus all)
90+
- all
91+
- batchee
92+
- geoloco
93+
- harmony-gdal-adapter
94+
## - harmony-netcdf-to-zarr (Disabled because of AWS credential requirements)
95+
- harmony-regridder
96+
- harmony-service-example
97+
- harmony-smap-l2-gridder
98+
- hoss
99+
- hybig
100+
- net2cog
101+
- opera-rtc-s1-browse
102+
- podaac-concise
103+
- podaac-l2-subsetter
104+
- query-cmr
105+
- sds-maskfill
106+
- stitchee
107+
- subset-band-name
108+
- swath-projector
109+
- trajectory-subsetter
82110
inputs:
83111
harmony-environment:
84112
required: true

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ versioning. Rather than a static releases, this repository contains of a number
55
of regression tests that are each semi-independent. This CHANGELOG file should be used
66
to document pull requests to this repository.
77

8+
### 2025-03-05 ([#147](https://github.com/nasa/harmony-regression-tests/pull/147))
9+
10+
- Cleans up `repository_dispatch` and `workflow_dispatch` options to be consistent with Harmony's service-image-tags endpoint.
11+
- Adds documentation to clarify how the configuration works for mapping triggers to regression tests.
12+
813
### 2025-03-04 ([#146](https://github.com/nasa/harmony-regression-tests/pull/146))
914

1015
- Re-enables two ATL10 v006 tests in the nsidc-icesat2 regression notebook, as the Trajectory Subsetter now supports ATL10 v006.

config/README.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
This directory has files containing dictionary mappings of labels (keys) to lists of regression tests that run when the label is selected (values)
2+
3+
The two files describe the environments:
4+
- `services_tests_config_prod.json` for Production environment
5+
- `services_tests_config_uat.json` for UAT environment
6+
7+
Generally the mappings are:
8+
9+
- `key`: A Harmony service name directly from the Harmony /service-image-tag endpoint.
10+
11+
- `value`: A comma separated list of regression tests to run. These tests, will have a direct dependency on the service, either as the regression for the service or as a regression for a service chain that the service is apart of.
12+
13+
There are a few additional keys/values beyond the keys returned from the Harmony service-image-tags endpoint.
14+
15+
`"all"` is used to trigger every harmony regression test.
16+
`"harmony"` - triggers harmony regression test
17+
`"nsidc-icesat2"`- triggers nsidc-icesat2 regression test
18+
`"sambah"` - triggers samba regression test
19+
`"harmony-regression"` - triggers harmony-regression test
20+
21+
22+
**The important thing to note is that when you are adding a new service to
23+
harmony and adding its regression tests. You must include a mapping for the
24+
service as described by Harmony's /service-image-tag endpoint to the name of
25+
the regression test as described by the directory name in the regression tests.**

config/services_tests_config_prod.json

+8-5
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
"all": "harmony,harmony-regression,geoloco,hga,n2z,regridder,hoss,hybig,net2cog,smap-l2-gridder,subset-band-name,swath-projector,nsidc-icesat2,trajectory-subsetter,sambah,opera-rtc-s1-browse",
33
"batchee": "sambah",
44
"geoloco": "geoloco",
5-
"giovanni-adapter": "TBD",
6-
"harmony": "harmony",
5+
"giovanni-time-series-adapter": "TBD",
76
"harmony-gdal-adapter": "hga",
87
"harmony-netcdf-to-zarr": "n2z",
9-
"harmony-regridder": "regridder",
8+
"harmony-regression": "harmony-regression",
109
"harmony-service-example": "harmony-regression",
10+
"harmony-smap-l2-gridder": "smap-l2-gridder",
1111
"hoss": "hoss",
1212
"hybig": "hybig,opera-rtc-s1-browse",
1313
"net2cog": "net2cog",
@@ -16,9 +16,12 @@
1616
"podaac-l2-subsetter": "sambah",
1717
"query-cmr": "geoloco",
1818
"sds-maskfill": "hoss",
19-
"smap-l2-gridder": "smap-l2-gridder",
2019
"stitchee": "sambah",
2120
"subset-band-name": "subset-band-name",
2221
"swath-projector": "swath-projector",
23-
"trajectory-subsetter": "nsidc-icesat2,trajectory-subsetter"
22+
"trajectory-subsetter": "nsidc-icesat2,trajectory-subsetter",
23+
"harmony": "harmony",
24+
"harmony-regridder": "regridder",
25+
"nsidc-icesat2": "nsidc-icesat2",
26+
"sambah": "sambah"
2427
}

config/services_tests_config_uat.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"batchee": "sambah",
44
"geoloco": "geoloco",
55
"giovanni-adapter": "TBD",
6-
"harmony": "harmony",
76
"harmony-gdal-adapter": "hga",
87
"harmony-netcdf-to-zarr": "n2z",
98
"harmony-regridder": "regridder",
@@ -20,5 +19,9 @@
2019
"stitchee": "sambah",
2120
"subset-band-name": "subset-band-name",
2221
"swath-projector": "swath-projector",
23-
"trajectory-subsetter": "nsidc-icesat2,trajectory-subsetter"
22+
"trajectory-subsetter": "nsidc-icesat2,trajectory-subsetter",
23+
"harmony": "harmony",
24+
"harmony-regression": "harmony-regression",
25+
"nsidc-icesat2": "nsidc-icesat2",
26+
"sambah": "sambah"
2427
}

0 commit comments

Comments
 (0)