Commit 5262dc3
test: tag Raincloud corpus tests @tag("raincloud"), excluded by default
A plain `./mvnw verify` silently ran the full real-world Raincloud corpus
whenever a developer had hydrated it locally (via hydrate-raincloud-corpus.sh):
the two Raincloud tests only gated real work behind
`assumeTrue(Files.exists(manifestPath()))`, which is a no-op skip on CI (corpus
never hydrated) but a surprise on a dev machine. In particular
RaincloudSizeComparisonIntegrationTest — documented as purely informational —
does a full Parquet->Vortex re-encode (FSST training, etc.) per slug, costing a
release preflight 15+ minutes of unexpected CPU-heavy work.
Make the exclusion explicit and controllable with JUnit 5 `@Tag`:
- Tag both classes `@Tag("raincloud")`.
- Failsafe `excludedGroups` (integration/pom.xml), bound to a new
`vortex.it.excludedGroups` property defaulting to `raincloud`, so a routine
build excludes them from test discovery entirely (stronger than assumeTrue's
skip) yet the CLI can opt back in.
Verified against a locally hydrated 10-slug corpus:
- `./mvnw verify -pl integration -am` no longer discovers/runs either class.
- Failsafe 3.5.6 applies `excludedGroups` even to an explicitly named
`-Dit.test=Raincloud...` class, and a literal pom value cannot be cleared
from the CLI — hence the property indirection. Opting in requires
`-Dvortex.it.excludedGroups=` in addition to `-Dit.test`. The full
conformance run (11 tests) passes end-to-end with that flag.
Updated the documented invocations to include the flag: CLAUDE.md Commands
section and the hydrate script's usage/output hints. No CHANGELOG entry:
test/tooling-only churn, no change to shipped artifacts.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>1 parent c148393 commit 5262dc3
5 files changed
Lines changed: 47 additions & 2 deletions
File tree
- integration
- src/test/java/io/github/dfa1/vortex/integration
- scripts
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
63 | 63 | | |
64 | 64 | | |
65 | 65 | | |
66 | | - | |
67 | | - | |
| 66 | + | |
| 67 | + | |
68 | 68 | | |
69 | 69 | | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
70 | 77 | | |
71 | 78 | | |
72 | 79 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
17 | 22 | | |
18 | 23 | | |
19 | 24 | | |
| |||
203 | 208 | | |
204 | 209 | | |
205 | 210 | | |
| 211 | + | |
| 212 | + | |
| 213 | + | |
| 214 | + | |
| 215 | + | |
| 216 | + | |
| 217 | + | |
| 218 | + | |
| 219 | + | |
| 220 | + | |
206 | 221 | | |
207 | 222 | | |
208 | 223 | | |
| |||
Lines changed: 8 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
| 15 | + | |
15 | 16 | | |
16 | 17 | | |
17 | 18 | | |
| |||
55 | 56 | | |
56 | 57 | | |
57 | 58 | | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
58 | 66 | | |
59 | 67 | | |
60 | 68 | | |
| |||
Lines changed: 8 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
| 5 | + | |
5 | 6 | | |
6 | 7 | | |
7 | 8 | | |
| |||
25 | 26 | | |
26 | 27 | | |
27 | 28 | | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
28 | 36 | | |
29 | 37 | | |
30 | 38 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
13 | 18 | | |
14 | 19 | | |
15 | 20 | | |
| |||
115 | 120 | | |
116 | 121 | | |
117 | 122 | | |
| 123 | + | |
| 124 | + | |
118 | 125 | | |
0 commit comments