@reventlessdev/reventless-aws 3.0.0-alpha.252 → 3.0.0-alpha.254

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/package.json +8 -8
  3. package/src/Platform.res +159 -21
  4. package/src/Platform.res.mjs +120 -8
  5. package/src/adapter/Runtime/AggregateRuntime_Builder_Single.res +5 -0
  6. package/src/adapter/Runtime/AggregateRuntime_Builder_Single.res.mjs +3 -0
  7. package/src/adapter/Runtime/AggregateRuntime_Builder_Single_Async.res +5 -0
  8. package/src/adapter/Runtime/AggregateRuntime_Builder_Single_Async.res.mjs +3 -0
  9. package/src/adapter/Runtime/RuntimeEnvironment_Lambda.res +66 -8
  10. package/src/adapter/Runtime/RuntimeEnvironment_Lambda.res.mjs +16 -3
  11. package/src/adapter/Runtime/StateChangeSliceRuntime_Builder_Single.res +5 -0
  12. package/src/adapter/Runtime/StateChangeSliceRuntime_Builder_Single.res.mjs +3 -0
  13. package/src/adapter/Task/TaskBucket_S3.res +11 -0
  14. package/src/adapter/Task/TaskBucket_S3.res.mjs +3 -0
  15. package/src/adapter/Upload/Upload_Claim_S3.res +361 -0
  16. package/src/adapter/Upload/Upload_Claim_S3.res.mjs +203 -0
  17. package/src/adapter/Upload/Upload_Claim_S3_Ops.res +279 -0
  18. package/src/adapter/Upload/Upload_Claim_S3_Ops.res.mjs +261 -0
  19. package/src/adapter/Upload/Upload_PendingTag.res +41 -0
  20. package/src/adapter/Upload/Upload_PendingTag.res.mjs +15 -0
  21. package/src/adapter/Upload/Upload_Presign_S3.res +12 -2
  22. package/src/adapter/Upload/Upload_Presign_S3.res.mjs +1 -0
  23. package/src/adapter/Upload/Upload_Presign_S3_Ops.res +17 -1
  24. package/src/adapter/Upload/Upload_Presign_S3_Ops.res.mjs +3 -1
  25. package/src/capability/Capability_ObjectStore_S3.res +42 -1
  26. package/src/capability/Capability_ObjectStore_S3.res.mjs +19 -1
  27. package/src/components/Api/AppSync_Adapter.res +36 -0
  28. package/src/components/Api/AppSync_Adapter.res.mjs +14 -0
  29. package/src/util/Util_LogRetention.res +86 -0
  30. package/src/util/Util_LogRetention.res.mjs +43 -0
  31. package/src/util/Util_StoreLayout.res +62 -9
  32. package/src/util/Util_StoreLayout.res.mjs +20 -2
  33. package/tests/Upload_ClaimTest.res +132 -0
  34. package/tests/Upload_ClaimTest.res.mjs +101 -0
  35. package/tests/Util_LogRetentionTest.res +122 -0
  36. package/tests/Util_LogRetentionTest.res.mjs +95 -0
  37. package/tests/Util_StoreLayoutTest.res +79 -3
  38. package/tests/Util_StoreLayoutTest.res.mjs +47 -2
@@ -0,0 +1,86 @@
1
+ // How long a stack keeps its logs, and how verbose they are — tiered by
2
+ // environment, the same way `Util_StoreLayout` tiers bucket layout and
3
+ // `Util_HostUiDomain` tiers the host-shell FQDN. Pure functions so both
4
+ // decisions are decidable and unit-testable without touching Pulumi.
5
+ //
6
+ // Retention and level pull in opposite directions between prod and dev, which is
7
+ // the whole reason a single global setting cannot serve both:
8
+ //
9
+ // prod — quiet (`info`) and long-lived (365d): incident + forensic window
10
+ // dev — loud (`debug`) and short-lived (3–7d): consumed within hours
11
+ //
12
+ // The `prodStacks` allow-list is `Util_HostUiDomain.resolveProdStacks` — the one
13
+ // notion of "is this stack production" the platform already shares for domain
14
+ // naming and store layout, on purpose. A `configOverride` (from the Pulumi
15
+ // `logRetentionDays` / `logLevel` config keys) wins over the tier default so a
16
+ // stack can be dialled without a code change.
17
+
18
+ // CloudWatch only accepts a fixed enum of retention values; every number below is
19
+ // a member of it. `0` means "never expire" and is a valid explicit opt-in, but
20
+ // never a tier default — hot CloudWatch storage billed forever is what this
21
+ // tiering exists to bound.
22
+
23
+ /** Retention in days for a stack. prod/main = 365, beta = 30, `pr-*` = 3,
24
+ everything else (alpha and any unlisted stack) = 7. A `configOverride` wins. */
25
+ let retentionDaysFor = (
26
+ ~stack: string,
27
+ ~prodStacks: array<string>,
28
+ ~configOverride: option<int>=?,
29
+ ): int =>
30
+ switch configOverride {
31
+ | Some(days) => days
32
+ | None =>
33
+ switch stack {
34
+ | s if prodStacks->Array.includes(s) => 365
35
+ | "beta" => 30
36
+ | s if s->String.startsWith("pr-") => 3
37
+ | _ => 7
38
+ }
39
+ }
40
+
41
+ /** The default `LOG_LEVEL` for a stack. prod/main and beta stay at `info` so
42
+ pre-prod behaves like prod and debug detail never leaks payloads in prod;
43
+ every other stack defaults to `debug` for verbose feedback during active
44
+ development (paired with short retention, so cheap). A `configOverride`
45
+ wins. */
46
+ let logLevelFor = (
47
+ ~stack: string,
48
+ ~prodStacks: array<string>,
49
+ ~configOverride: option<string>=?,
50
+ ): string =>
51
+ switch configOverride {
52
+ | Some(level) => level
53
+ | None =>
54
+ switch stack {
55
+ | s if prodStacks->Array.includes(s) => "info"
56
+ | "beta" => "info"
57
+ | _ => "debug"
58
+ }
59
+ }
60
+
61
+ /**
62
+ Whether the framework creates a *managed* CloudWatch log group for this stack, or
63
+ leaves Lambda/AppSync to auto-create an unmanaged one.
64
+
65
+ **Managed for every stack by default.** A stack deployed on this framework gets
66
+ its log groups from Pulumi on the first `pulumi up`, before Lambda/AppSync would
67
+ lazily auto-create them — so on a fresh stack there is nothing to adopt and no
68
+ `ResourceAlreadyExists` hazard. Every current stack is `alpha`, and there is no
69
+ prod stack to migrate, so extending management to all stacks costs nothing today.
70
+
71
+ The one case that still needs care is *adopting* a stack that predates managed
72
+ groups: it already carries Lambda's auto-created group, and `CreateLogGroup`
73
+ fails with `ResourceAlreadyExists` rather than adopting it. When such a stack
74
+ ever appears, either `pulumi import` its groups first, or name it in the
75
+ `unmanagedLogGroupStacks` config key to keep it on auto-created groups until the
76
+ import is done. That escape hatch is the "prepared for the future" seam — turning
77
+ a prod adoption into a config flip rather than an edit to this function.
78
+ */
79
+ let managesLogGroup = (~stack: string, ~unmanagedStacks: array<string>=[]): bool =>
80
+ !(unmanagedStacks->Array.includes(stack))
81
+
82
+ /** Parse the `unmanagedLogGroupStacks` config value — a CSV of stack names kept
83
+ on auto-created groups pending a `pulumi import`. Same tolerant parse as the
84
+ prod-stacks list: trims, drops empty entries. */
85
+ let parseUnmanagedStacks = (csv: string): array<string> =>
86
+ csv->String.split(",")->Array.map(String.trim)->Array.filter(s => s !== "")
@@ -0,0 +1,43 @@
1
+ // Generated by ReScript, PLEASE EDIT WITH CARE
2
+
3
+
4
+ function retentionDaysFor(stack, prodStacks, configOverride) {
5
+ if (configOverride !== undefined) {
6
+ return configOverride;
7
+ } else if (prodStacks.includes(stack)) {
8
+ return 365;
9
+ } else if (stack === "beta") {
10
+ return 30;
11
+ } else if (stack.startsWith("pr-")) {
12
+ return 3;
13
+ } else {
14
+ return 7;
15
+ }
16
+ }
17
+
18
+ function logLevelFor(stack, prodStacks, configOverride) {
19
+ if (configOverride !== undefined) {
20
+ return configOverride;
21
+ } else if (prodStacks.includes(stack) || stack === "beta") {
22
+ return "info";
23
+ } else {
24
+ return "debug";
25
+ }
26
+ }
27
+
28
+ function managesLogGroup(stack, unmanagedStacksOpt) {
29
+ let unmanagedStacks = unmanagedStacksOpt !== undefined ? unmanagedStacksOpt : [];
30
+ return !unmanagedStacks.includes(stack);
31
+ }
32
+
33
+ function parseUnmanagedStacks(csv) {
34
+ return csv.split(",").map(prim => prim.trim()).filter(s => s !== "");
35
+ }
36
+
37
+ export {
38
+ retentionDaysFor,
39
+ logLevelFor,
40
+ managesLogGroup,
41
+ parseUnmanagedStacks,
42
+ }
43
+ /* No side effect */
@@ -109,20 +109,36 @@ let bucketNameFor = (~layout: t, ~stack: string, ~plugin: string, ~store: string
109
109
  }
110
110
 
111
111
  /**
112
- The prefix a store's object keys are rooted at — the store name, in **both**
112
+ The prefix a store's object keys are rooted at — `{plugin}/{store}`, in **both**
113
113
  layouts.
114
114
 
115
- This is the property that keeps the two layouts one model rather than a fork.
116
- The presign service mints `{store}/{identity}{uuid}/{file}` either way, so the
117
- stored ref is `/{store}/…` regardless of which bucket sits behind it, and only
118
- the CDN origin differs. Refs live in an append-only event log: one that encoded
119
- its bucket layout would be environment-specific and unrewritable, so a prod dump
120
- restored into a PR stack would carry refs that cannot resolve.
115
+ Layout-invariance is what keeps the two layouts one model rather than a fork.
116
+ The presign service mints `{prefix}/{identity}/{uuid}/{file}` either way, so the
117
+ stored ref is `/{prefix}/…` regardless of which bucket sits behind it, and only
118
+ the CDN origin differs. Refs live in an append-only event log: a prefix that
119
+ encoded its bucket layout would be environment-specific and unrewritable, so a
120
+ prod dump restored into a PR stack would carry refs that cannot resolve. Plugin
121
+ and store are stack-invariant, so qualifying by plugin costs none of that.
122
+
123
+ Qualified because the prefix is a **platform-global** namespace: one distribution
124
+ fronts every store bucket and takes one cache behavior per prefix, so a bare
125
+ store name made two plugins declaring `productImages` unroutable — in either
126
+ layout, since the per-store layout still lands both prefixes on the one
127
+ distribution. Qualifying narrows uniqueness from "per platform" to "per plugin",
128
+ which is what plugin isolation wants and what a platform composing plugins it
129
+ did not author needs.
121
130
 
122
131
  The cost is a slightly redundant prefix inside a dedicated bucket
123
- (`catalog-productImages/productImages/…`). Take the redundancy.
132
+ (`catalog-productImages/Catalog/productImages/…`). Take the redundancy.
133
+
134
+ **Changing this string is breaking.** Minted refs are `/{prefix}/…` in an
135
+ append-only event log, so objects written under an earlier prefix become
136
+ unreachable and their refs unresolvable. There is deliberately no grandfathering
137
+ machinery: a stack that predates a change to this function empties its stores
138
+ (`seed:reset`, which wipes per plugin) and re-seeds. Carrying a permanent prefix
139
+ set to spare a disposable stack one wipe is the worse trade.
124
140
  */
125
- let keyPrefixFor = (~store: string): string => store
141
+ let keyPrefixFor = (~plugin: string, ~store: string): string => `${plugin}/${store}`
126
142
 
127
143
  /**
128
144
  Who serves the declared stores — and the answer is never "both".
@@ -173,3 +189,40 @@ let coverageFor = (~required: array<string>, ~provisioned: array<string>): cover
173
189
  | (missing, provisioned) => Missing({missing, provisioned})
174
190
  }
175
191
  }
192
+
193
+ /**
194
+ After how many days a store expires objects still tagged pending — `None`, which
195
+ is the default, meaning it expires nothing.
196
+
197
+ The setting is a deployment's, not a declaration's: `@storageRef("productImages")`
198
+ says a store is needed, and says nothing about how long an unclaimed upload
199
+ should live there. Read from the `pendingUploadExpiryDays` config key (env var
200
+ `REVENTLESS_PENDING_UPLOAD_EXPIRY_DAYS`, or the `Pulumi.local.yaml` sidecar) as a
201
+ comma-separated list of `{plugin}.{store}=days` pairs:
202
+
203
+ pendingUploadExpiryDays: "Catalog.productImages=30, Ordering.receipts=14"
204
+
205
+ **Per store and off by default, on purpose.** Enabling this is the one step in
206
+ the mechanism that deletes data, and it is only sound once the claim component
207
+ has been live long enough for reconciliation to confirm that the objects still
208
+ tagged pending really are the unreferenced ones. A global switch — or a default
209
+ value — would turn it on for stores nobody had checked yet, which is the whole
210
+ failure this sequencing exists to prevent. A store that accumulates forever is a
211
+ legitimate choice, and stays the choice until a deployment says otherwise.
212
+
213
+ Only positive whole days are accepted. A malformed or non-positive entry is
214
+ ignored rather than rounded or defaulted: guessing at what a typo meant, in the
215
+ one setting that deletes objects, is not a service.
216
+ */
217
+ let pendingExpiryFor = (~config: option<string>, ~store: string): option<int> =>
218
+ config
219
+ ->Option.getOr("")
220
+ ->String.split(",")
221
+ ->Array.filterMap(entry =>
222
+ switch entry->String.split("=") {
223
+ | [name, days] if name->String.trim == store =>
224
+ days->String.trim->Int.fromString->Option.filter(d => d > 0)
225
+ | _ => None
226
+ }
227
+ )
228
+ ->Array.get(0)
@@ -1,5 +1,8 @@
1
1
  // Generated by ReScript, PLEASE EDIT WITH CARE
2
2
 
3
+ import * as Stdlib_Int from "@rescript/runtime/lib/es6/Stdlib_Int.js";
4
+ import * as Stdlib_Array from "@rescript/runtime/lib/es6/Stdlib_Array.js";
5
+ import * as Stdlib_Option from "@rescript/runtime/lib/es6/Stdlib_Option.js";
3
6
 
4
7
  let defaultEphemeralPrefixes = ["pr-"];
5
8
 
@@ -28,8 +31,8 @@ function bucketNameFor(layout, stack, plugin, store) {
28
31
  }
29
32
  }
30
33
 
31
- function keyPrefixFor(store) {
32
- return store;
34
+ function keyPrefixFor(plugin, store) {
35
+ return plugin + `/` + store;
33
36
  }
34
37
 
35
38
  function servingFor(hasHostUiBundle, declaredBucketCount) {
@@ -64,6 +67,20 @@ function coverageFor(required, provisioned) {
64
67
  }
65
68
  }
66
69
 
70
+ function pendingExpiryFor(config, store) {
71
+ return Stdlib_Array.filterMap(Stdlib_Option.getOr(config, "").split(","), entry => {
72
+ let match = entry.split("=");
73
+ if (match.length !== 2) {
74
+ return;
75
+ }
76
+ let name = match[0];
77
+ let days = match[1];
78
+ if (name.trim() === store) {
79
+ return Stdlib_Option.filter(Stdlib_Int.fromString(days.trim(), undefined), d => d > 0);
80
+ }
81
+ })[0];
82
+ }
83
+
67
84
  export {
68
85
  defaultEphemeralPrefixes,
69
86
  layoutFor,
@@ -72,5 +89,6 @@ export {
72
89
  keyPrefixFor,
73
90
  servingFor,
74
91
  coverageFor,
92
+ pendingExpiryFor,
75
93
  }
76
94
  /* No side effect */
@@ -0,0 +1,132 @@
1
+ // The claim component's pure decisions — no S3, no DynamoDB stream.
2
+ //
3
+ // Everything between "a committed event appeared" and "an S3 untag happens" is
4
+ // decided by three functions in `Upload_Claim_S3_Ops`: which table a record came
5
+ // from, which refs a declared field holds, and whether a ref resolves to an
6
+ // object this claimer may touch. The untag itself has no branching left in it,
7
+ // so pinning these pins the behaviour that matters.
8
+ //
9
+ // The direction under test throughout is refusal. An untag this component
10
+ // wrongly *skips* costs a delayed cleanup; one it wrongly *performs* removes the
11
+ // only thing standing between an object and an expiry rule.
12
+
13
+ open JestGlobals
14
+
15
+ module Ops = Upload_Claim_S3_Ops
16
+
17
+ // `stores` and `refFieldsByTable` are read from the environment at module load,
18
+ // so these tests exercise the decision functions against explicitly-built
19
+ // inputs rather than a configured module — which is also the honest scope: the
20
+ // env parsing is `JSON.parse` plus field reads.
21
+
22
+ describe("Upload_Claim_S3_Ops.tableNameFromEventSourceArn", () => {
23
+ testSync("reads the table name out of a stream ARN", () =>
24
+ expect(
25
+ Ops.tableNameFromEventSourceArn(
26
+ "arn:aws:dynamodb:eu-west-1:123456789012:table/CatalogDcbEventLog-a1b2c3/stream/2026-08-02T00:00:00.000",
27
+ ),
28
+ )->toEqual(Some("CatalogDcbEventLog-a1b2c3"))
29
+ )
30
+
31
+ testSync("returns None for an ARN that is not a table stream", () =>
32
+ expect(Ops.tableNameFromEventSourceArn("arn:aws:sqs:eu-west-1:123456789012:SomeQueue"))->toEqual(
33
+ None,
34
+ )
35
+ )
36
+ })
37
+
38
+ describe("Upload_Claim_S3_Ops.keyOfRef", () => {
39
+ testSync("strips the leading slash the mint side writes", () =>
40
+ expect(Ops.keyOfRef("/Catalog/productImages/sub/uuid/p.png"))->toBe(
41
+ "Catalog/productImages/sub/uuid/p.png",
42
+ )
43
+ )
44
+
45
+ testSync("leaves an already-bare key alone", () =>
46
+ expect(Ops.keyOfRef("Catalog/productImages/sub/uuid/p.png"))->toBe(
47
+ "Catalog/productImages/sub/uuid/p.png",
48
+ )
49
+ )
50
+ })
51
+
52
+ describe("Upload_Claim_S3_Ops.refsOfField", () => {
53
+ let single: Ops.refField = {field: "imageUrl", many: false, store: "Catalog.productImages"}
54
+ let multi: Ops.refField = {field: "imageUrls", many: true, store: "Catalog.productImages"}
55
+ let ref1 = "/Catalog/productImages/sub/one/p.png"
56
+ let ref2 = "/Catalog/productImages/sub/two/q.png"
57
+
58
+ testSync("reads one ref from a string field", () =>
59
+ expect(
60
+ Ops.refsOfField(~data=Dict.fromArray([("imageUrl", JSON.Encode.string(ref1))]), single),
61
+ )->toEqual([ref1])
62
+ )
63
+
64
+ testSync("reads every ref from an array field", () =>
65
+ expect(
66
+ Ops.refsOfField(
67
+ ~data=Dict.fromArray([
68
+ ("imageUrls", JSON.Encode.array([JSON.Encode.string(ref1), JSON.Encode.string(ref2)])),
69
+ ]),
70
+ multi,
71
+ ),
72
+ )->toEqual([ref1, ref2])
73
+ )
74
+
75
+ // `StorageRef` admits "" as the "no object" sentinel, so a present-but-empty
76
+ // field must cost no S3 call rather than resolving to the store's root.
77
+ testSync("ignores the empty-string sentinel", () =>
78
+ expect(
79
+ Ops.refsOfField(~data=Dict.fromArray([("imageUrl", JSON.Encode.string(""))]), single),
80
+ )->toEqual([])
81
+ )
82
+
83
+ testSync("ignores an absent field", () =>
84
+ expect(Ops.refsOfField(~data=Dict.make(), single))->toEqual([])
85
+ )
86
+
87
+ // Arity is declared, not sniffed: a field declared single that arrives as an
88
+ // array (or the reverse) is a schema and a deploy disagreeing, and reading it
89
+ // anyway would mean guessing which one is right.
90
+ testSync("a single-arity field ignores an array value", () =>
91
+ expect(
92
+ Ops.refsOfField(
93
+ ~data=Dict.fromArray([("imageUrl", JSON.Encode.array([JSON.Encode.string(ref1)]))]),
94
+ single,
95
+ ),
96
+ )->toEqual([])
97
+ )
98
+
99
+ testSync("a multi-arity field ignores a bare string value", () =>
100
+ expect(
101
+ Ops.refsOfField(~data=Dict.fromArray([("imageUrls", JSON.Encode.string(ref1))]), multi),
102
+ )->toEqual([])
103
+ )
104
+
105
+ testSync("ignores non-string elements of an array field", () =>
106
+ expect(
107
+ Ops.refsOfField(
108
+ ~data=Dict.fromArray([
109
+ ("imageUrls", JSON.Encode.array([JSON.Encode.string(ref1), JSON.Encode.int(7)])),
110
+ ]),
111
+ multi,
112
+ ),
113
+ )->toEqual([ref1])
114
+ )
115
+ })
116
+
117
+ describe("Upload_Claim_S3_Ops.claim", () => {
118
+ // The tag key is the contract between three separately-deployed things: the
119
+ // presigned PUT that writes it, this component that removes it, and the
120
+ // lifecycle rule that expires what still carries it. A drift in any one of
121
+ // them is silent — a rule filtered on a key nobody writes matches nothing, and
122
+ // a claimer stripping the wrong key leaves every object tagged.
123
+ testSync("removes the same tag the mint side writes", () =>
124
+ expect(Upload_PendingTag.key)->toBe("reventless:pending")
125
+ )
126
+
127
+ // The presigned URL carries `Tagging` as a URL-encoded query string, so the
128
+ // colon has to survive one decode by S3 to land as the key above.
129
+ testSync("the presign tagging parameter decodes to that key and value", () =>
130
+ expect(Upload_PendingTag.putObjectTagging)->toBe("reventless%3Apending=true")
131
+ )
132
+ })
@@ -0,0 +1,101 @@
1
+ // Generated by ReScript, PLEASE EDIT WITH CARE
2
+
3
+ import * as Upload_PendingTag$ReventlessAws from "../src/adapter/Upload/Upload_PendingTag.res.mjs";
4
+ import * as Upload_Claim_S3_Ops$ReventlessAws from "../src/adapter/Upload/Upload_Claim_S3_Ops.res.mjs";
5
+
6
+ globalThis.describe("Upload_Claim_S3_Ops.tableNameFromEventSourceArn", () => {
7
+ globalThis.test("reads the table name out of a stream ARN", () => {
8
+ globalThis.expect(Upload_Claim_S3_Ops$ReventlessAws.tableNameFromEventSourceArn("arn:aws:dynamodb:eu-west-1:123456789012:table/CatalogDcbEventLog-a1b2c3/stream/2026-08-02T00:00:00.000")).toEqual("CatalogDcbEventLog-a1b2c3");
9
+ });
10
+ globalThis.test("returns None for an ARN that is not a table stream", () => {
11
+ globalThis.expect(Upload_Claim_S3_Ops$ReventlessAws.tableNameFromEventSourceArn("arn:aws:sqs:eu-west-1:123456789012:SomeQueue")).toEqual(undefined);
12
+ });
13
+ });
14
+
15
+ globalThis.describe("Upload_Claim_S3_Ops.keyOfRef", () => {
16
+ globalThis.test("strips the leading slash the mint side writes", () => {
17
+ globalThis.expect(Upload_Claim_S3_Ops$ReventlessAws.keyOfRef("/Catalog/productImages/sub/uuid/p.png")).toBe("Catalog/productImages/sub/uuid/p.png");
18
+ });
19
+ globalThis.test("leaves an already-bare key alone", () => {
20
+ globalThis.expect(Upload_Claim_S3_Ops$ReventlessAws.keyOfRef("Catalog/productImages/sub/uuid/p.png")).toBe("Catalog/productImages/sub/uuid/p.png");
21
+ });
22
+ });
23
+
24
+ globalThis.describe("Upload_Claim_S3_Ops.refsOfField", () => {
25
+ let single = {
26
+ field: "imageUrl",
27
+ many: false,
28
+ store: "Catalog.productImages"
29
+ };
30
+ let multi = {
31
+ field: "imageUrls",
32
+ many: true,
33
+ store: "Catalog.productImages"
34
+ };
35
+ let ref1 = "/Catalog/productImages/sub/one/p.png";
36
+ let ref2 = "/Catalog/productImages/sub/two/q.png";
37
+ globalThis.test("reads one ref from a string field", () => {
38
+ globalThis.expect(Upload_Claim_S3_Ops$ReventlessAws.refsOfField(Object.fromEntries([[
39
+ "imageUrl",
40
+ ref1
41
+ ]]), single)).toEqual([ref1]);
42
+ });
43
+ globalThis.test("reads every ref from an array field", () => {
44
+ globalThis.expect(Upload_Claim_S3_Ops$ReventlessAws.refsOfField(Object.fromEntries([[
45
+ "imageUrls",
46
+ [
47
+ ref1,
48
+ ref2
49
+ ]
50
+ ]]), multi)).toEqual([
51
+ ref1,
52
+ ref2
53
+ ]);
54
+ });
55
+ globalThis.test("ignores the empty-string sentinel", () => {
56
+ globalThis.expect(Upload_Claim_S3_Ops$ReventlessAws.refsOfField(Object.fromEntries([[
57
+ "imageUrl",
58
+ ""
59
+ ]]), single)).toEqual([]);
60
+ });
61
+ globalThis.test("ignores an absent field", () => {
62
+ globalThis.expect(Upload_Claim_S3_Ops$ReventlessAws.refsOfField({}, single)).toEqual([]);
63
+ });
64
+ globalThis.test("a single-arity field ignores an array value", () => {
65
+ globalThis.expect(Upload_Claim_S3_Ops$ReventlessAws.refsOfField(Object.fromEntries([[
66
+ "imageUrl",
67
+ [ref1]
68
+ ]]), single)).toEqual([]);
69
+ });
70
+ globalThis.test("a multi-arity field ignores a bare string value", () => {
71
+ globalThis.expect(Upload_Claim_S3_Ops$ReventlessAws.refsOfField(Object.fromEntries([[
72
+ "imageUrls",
73
+ ref1
74
+ ]]), multi)).toEqual([]);
75
+ });
76
+ globalThis.test("ignores non-string elements of an array field", () => {
77
+ globalThis.expect(Upload_Claim_S3_Ops$ReventlessAws.refsOfField(Object.fromEntries([[
78
+ "imageUrls",
79
+ [
80
+ ref1,
81
+ 7
82
+ ]
83
+ ]]), multi)).toEqual([ref1]);
84
+ });
85
+ });
86
+
87
+ globalThis.describe("Upload_Claim_S3_Ops.claim", () => {
88
+ globalThis.test("removes the same tag the mint side writes", () => {
89
+ globalThis.expect(Upload_PendingTag$ReventlessAws.key).toBe("reventless:pending");
90
+ });
91
+ globalThis.test("the presign tagging parameter decodes to that key and value", () => {
92
+ globalThis.expect(Upload_PendingTag$ReventlessAws.putObjectTagging).toBe("reventless%3Apending=true");
93
+ });
94
+ });
95
+
96
+ let Ops;
97
+
98
+ export {
99
+ Ops,
100
+ }
101
+ /* Not a pure module */
@@ -0,0 +1,122 @@
1
+ open JestGlobals
2
+
3
+ let prodStacks = Util_HostUiDomain.defaultProdStacks
4
+
5
+ describe("Util_LogRetention.retentionDaysFor", () => {
6
+ testSync("prod keeps logs a year", () =>
7
+ expect(Util_LogRetention.retentionDaysFor(~stack="prod", ~prodStacks))->toBe(365)
8
+ )
9
+
10
+ testSync("'main' is production too, by the shared prod list", () =>
11
+ expect(Util_LogRetention.retentionDaysFor(~stack="main", ~prodStacks))->toBe(365)
12
+ )
13
+
14
+ testSync("beta keeps a month of pre-prod history", () =>
15
+ expect(Util_LogRetention.retentionDaysFor(~stack="beta", ~prodStacks))->toBe(30)
16
+ )
17
+
18
+ testSync("a PR stack keeps the minimum — torn down quickly", () =>
19
+ expect(Util_LogRetention.retentionDaysFor(~stack="pr-1234", ~prodStacks))->toBe(3)
20
+ )
21
+
22
+ testSync("alpha keeps a week — active development, consumed within hours", () =>
23
+ expect(Util_LogRetention.retentionDaysFor(~stack="alpha", ~prodStacks))->toBe(7)
24
+ )
25
+
26
+ // Same fail-open as the store-layout allow-list: an unlisted production name
27
+ // silently gets the dev tier. Asserted so it is a decision on record and the
28
+ // config override is the documented fix.
29
+ testSync("an unlisted stack falls open to the dev tier", () =>
30
+ expect(Util_LogRetention.retentionDaysFor(~stack="production", ~prodStacks))->toBe(7)
31
+ )
32
+
33
+ testSync("adding it to the prod list is the fix", () =>
34
+ expect(
35
+ Util_LogRetention.retentionDaysFor(~stack="production", ~prodStacks=["prod", "production"]),
36
+ )->toBe(365)
37
+ )
38
+
39
+ // The config key is the escape hatch — a stack dialled without a code change,
40
+ // including `0` (never expire) as an explicit opt-in.
41
+ testSync("a config override wins over the tier default", () =>
42
+ expect(Util_LogRetention.retentionDaysFor(~stack="alpha", ~prodStacks, ~configOverride=14))->toBe(14)
43
+ )
44
+
45
+ testSync("0 = never expire is expressible via the override", () =>
46
+ expect(Util_LogRetention.retentionDaysFor(~stack="prod", ~prodStacks, ~configOverride=0))->toBe(0)
47
+ )
48
+ })
49
+
50
+ describe("Util_LogRetention.logLevelFor", () => {
51
+ // Retention and level pull in opposite directions: prod is long-lived AND
52
+ // quiet; the dev stacks are short-lived AND loud.
53
+ testSync("prod is quiet — info, no debug noise or payload leakage", () =>
54
+ expect(Util_LogRetention.logLevelFor(~stack="prod", ~prodStacks))->toBe("info")
55
+ )
56
+
57
+ testSync("beta mirrors prod so pre-prod behaves like prod", () =>
58
+ expect(Util_LogRetention.logLevelFor(~stack="beta", ~prodStacks))->toBe("info")
59
+ )
60
+
61
+ testSync("alpha is verbose — debug feedback during active development", () =>
62
+ expect(Util_LogRetention.logLevelFor(~stack="alpha", ~prodStacks))->toBe("debug")
63
+ )
64
+
65
+ testSync("a PR stack is verbose too", () =>
66
+ expect(Util_LogRetention.logLevelFor(~stack="pr-7", ~prodStacks))->toBe("debug")
67
+ )
68
+
69
+ testSync("a config override wins over the tier default", () =>
70
+ expect(
71
+ Util_LogRetention.logLevelFor(~stack="prod", ~prodStacks, ~configOverride="debug"),
72
+ )->toBe("debug")
73
+ )
74
+ })
75
+
76
+ describe("Util_LogRetention.managesLogGroup", () => {
77
+ // Managed for every stack by default — a stack deployed on this framework gets
78
+ // its groups from Pulumi before Lambda/AppSync would auto-create them, so a
79
+ // fresh stack has nothing to adopt.
80
+ testSync("alpha is managed", () =>
81
+ expect(Util_LogRetention.managesLogGroup(~stack="alpha"))->toBe(true)
82
+ )
83
+
84
+ testSync("a PR stack is managed", () =>
85
+ expect(Util_LogRetention.managesLogGroup(~stack="pr-42"))->toBe(true)
86
+ )
87
+
88
+ testSync("prod is managed too — a fresh prod stack has no group to adopt", () =>
89
+ expect(Util_LogRetention.managesLogGroup(~stack="prod"))->toBe(true)
90
+ )
91
+
92
+ testSync("beta is managed too", () =>
93
+ expect(Util_LogRetention.managesLogGroup(~stack="beta"))->toBe(true)
94
+ )
95
+
96
+ // The escape hatch: a stack pending a `pulumi import` stays on auto-created
97
+ // groups until the import is done — a config flip, not a code change.
98
+ testSync("a stack named in unmanagedLogGroupStacks is left auto-created", () =>
99
+ expect(
100
+ Util_LogRetention.managesLogGroup(~stack="legacy-prod", ~unmanagedStacks=["legacy-prod"]),
101
+ )->toBe(false)
102
+ )
103
+
104
+ testSync("only the named stacks are excluded — others stay managed", () =>
105
+ expect(
106
+ Util_LogRetention.managesLogGroup(~stack="alpha", ~unmanagedStacks=["legacy-prod"]),
107
+ )->toBe(true)
108
+ )
109
+ })
110
+
111
+ describe("Util_LogRetention.parseUnmanagedStacks", () => {
112
+ testSync("empty config manages every stack", () =>
113
+ expect(Util_LogRetention.parseUnmanagedStacks(""))->toEqual([])
114
+ )
115
+
116
+ testSync("CSV is trimmed and empty entries dropped", () =>
117
+ expect(Util_LogRetention.parseUnmanagedStacks(" legacy-prod , , old-beta "))->toEqual([
118
+ "legacy-prod",
119
+ "old-beta",
120
+ ])
121
+ )
122
+ })