workerd icon indicating copy to clipboard operation
workerd copied to clipboard

Add --compat-date flag and @all-compat-flags variant to wd_test

Open danlapid opened this issue 1 month ago • 0 comments

  • Add --compat-date flag and @all-compat-flags variant to wd_test

Add a --compat-date CLI flag to workerd test that overrides the compatibility date for all workers. When this flag is used, workers must NOT specify compatibilityDate in the config - this allows the test harness to control the compat date externally.

The wd_test macro now generates three variants:

  • name@ (default): oldest compat date (2000-01-01)
  • name@all-compat-flags: newest compat date (2999-12-31)
  • name@all-autogates: all autogates + oldest compat date

Tests can selectively disable variants using generate_default_variant, generate_all_compat_flags_variant, and generate_all_autogates_variant flags.

Also adds test cases to verify the compat-flag variants work correctly by checking Cloudflare.compatibilityFlags.formdata_parser_supports_files is enabled/disabled based on the compat date.

  • Make all tests pass after adding all-compat-flags variant

First we bulk remove compat date from all tests. Then we add enable-flags to make the default variant pass. Then we add disable-flags to make the all-compat-flags variant pass.

Python tests don't run all-compat-flags and all-autogates variants. I made them all pass under those variants and then disabled the variants. The impact on CI times is just way too high to justify the value sadly. We need to find a way to improve python test CI times and then reenable them.

danlapid avatar Dec 25 '25 15:12 danlapid