Skip to content

Commit 5c033fb

Browse files
akoclaude
andcommitted
fix: add missing CE error allowlist for custom widget and REST integration tests
The TestMxCheck_DoctypeScripts integration test fails because: - 17-custom-widget-examples.mdl has known CE0463 (TEXTFILTER template mismatch) and CE1613 (ComboBox enum as association) but no allowlist entry - 06-rest-client-examples.mdl gained SEND REST REQUEST microflows that may produce CE6035 (unsupported error handling) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 2ddcaa0 commit 5c033fb

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

mdl/executor/roundtrip_doctype_test.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,17 @@ var scriptModuleDeps = map[string][]string{
2929
var scriptKnownCEErrors = map[string][]string{
3030
"06-rest-client-examples.mdl": {
3131
"CE0061", // No entity selected (JSON response/body mapping without entity)
32+
"CE6035", // RestOperationCallAction error handling not supported
3233
"CE7056", // Undefined parameter (dynamic header {1} placeholder)
3334
"CE7062", // Missing Accept header
3435
"CE7064", // POST/PUT must include body
3536
"CE7073", // Constant needs to be defined (auth with $ConstantName)
3637
"CE7247", // Name cannot be empty (body mapping without entity)
3738
},
39+
"17-custom-widget-examples.mdl": {
40+
"CE0463", // Widget definition changed (TEXTFILTER template property count mismatch)
41+
"CE1613", // ComboBox enum attribute written as association pointer
42+
},
3843
}
3944

4045
// TestMxCheck_DoctypeScripts executes each doctype-tests/*.mdl example script

0 commit comments

Comments
 (0)