@elevasis/core 0.10.0 → 0.11.1

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 (58) hide show
  1. package/dist/index.d.ts +69 -159
  2. package/dist/index.js +324 -613
  3. package/dist/organization-model/index.d.ts +69 -159
  4. package/dist/organization-model/index.js +324 -613
  5. package/dist/test-utils/index.d.ts +192 -45
  6. package/dist/test-utils/index.js +260 -600
  7. package/package.json +1 -1
  8. package/src/__tests__/template-core-compatibility.test.ts +73 -91
  9. package/src/_gen/__tests__/__snapshots__/contracts.md.snap +94 -182
  10. package/src/auth/multi-tenancy/index.ts +20 -17
  11. package/src/auth/multi-tenancy/memberships/api-schemas.ts +142 -126
  12. package/src/auth/multi-tenancy/memberships/index.ts +26 -22
  13. package/src/auth/multi-tenancy/permissions.test.ts +42 -0
  14. package/src/auth/multi-tenancy/permissions.ts +104 -0
  15. package/src/organization-model/README.md +102 -97
  16. package/src/organization-model/__tests__/defaults.test.ts +19 -6
  17. package/src/organization-model/__tests__/domains/resource-mappings.test.ts +24 -93
  18. package/src/organization-model/__tests__/graph.test.ts +82 -894
  19. package/src/organization-model/__tests__/resolve.test.ts +59 -690
  20. package/src/organization-model/__tests__/schema.test.ts +83 -407
  21. package/src/organization-model/contracts.ts +4 -3
  22. package/src/organization-model/defaults.ts +277 -141
  23. package/src/organization-model/domains/features.ts +31 -22
  24. package/src/organization-model/domains/navigation.ts +27 -20
  25. package/src/organization-model/foundation.ts +42 -54
  26. package/src/organization-model/graph/build.ts +42 -217
  27. package/src/organization-model/graph/index.ts +4 -4
  28. package/src/organization-model/graph/link.ts +10 -0
  29. package/src/organization-model/graph/schema.ts +21 -16
  30. package/src/organization-model/graph/types.ts +10 -10
  31. package/src/organization-model/helpers.ts +74 -0
  32. package/src/organization-model/index.ts +7 -7
  33. package/src/organization-model/organization-graph.mdx +89 -272
  34. package/src/organization-model/organization-model.mdx +152 -320
  35. package/src/organization-model/published.ts +20 -19
  36. package/src/organization-model/resolve.ts +8 -33
  37. package/src/organization-model/schema.ts +63 -205
  38. package/src/organization-model/types.ts +12 -11
  39. package/src/platform/constants/versions.ts +3 -3
  40. package/src/platform/registry/__tests__/command-view.test.ts +6 -5
  41. package/src/platform/registry/__tests__/resource-link.test.ts +30 -0
  42. package/src/platform/registry/__tests__/resource-registry.integration.test.ts +15 -15
  43. package/src/platform/registry/command-view.ts +10 -12
  44. package/src/platform/registry/index.ts +93 -93
  45. package/src/platform/registry/resource-link.ts +32 -0
  46. package/src/platform/registry/resource-registry.ts +917 -876
  47. package/src/platform/registry/serialization.ts +56 -73
  48. package/src/platform/registry/serialized-types.ts +17 -12
  49. package/src/platform/registry/types.ts +14 -43
  50. package/src/reference/_generated/contracts.md +94 -182
  51. package/src/reference/glossary.md +71 -105
  52. package/src/scaffold-registry/__tests__/index.test.ts +125 -1
  53. package/src/scaffold-registry/__tests__/schema.test.ts +48 -20
  54. package/src/scaffold-registry/index.ts +236 -188
  55. package/src/scaffold-registry/schema.ts +47 -22
  56. package/src/supabase/database.types.ts +2880 -2719
  57. package/src/test-utils/fixtures/memberships.ts +82 -80
  58. package/src/platform/registry/domains.ts +0 -165
@@ -1,690 +1,59 @@
1
- import { describe, expect, it } from 'vitest'
2
- import { OrganizationModelSchema } from '../schema'
3
- import { defineOrganizationModel, resolveOrganizationModel } from '../resolve'
4
-
5
- describe('organization-model', () => {
6
- it('resolves defaults for a minimal override', () => {
7
- const model = resolveOrganizationModel(
8
- defineOrganizationModel({
9
- branding: {
10
- organizationName: 'Acme',
11
- productName: 'Acme OS',
12
- shortName: 'Acme'
13
- }
14
- })
15
- )
16
-
17
- expect(model.version).toBe(1)
18
- expect(model.branding.organizationName).toBe('Acme')
19
- expect(model.sales.pipelines[0]?.stages).toHaveLength(6)
20
- expect(model.navigation.defaultSurfaceId).toBe('crm.pipeline')
21
-
22
- const operationsFeature = model.features.find((f) => f.id === 'operations')
23
- expect(operationsFeature?.enabled).toBe(true)
24
- })
25
-
26
- it('replaces arrays when a downstream override supplies a full slice', () => {
27
- const model = resolveOrganizationModel({
28
- features: [
29
- {
30
- id: 'crm',
31
- label: 'CRM',
32
- description: 'Custom CRM workspace',
33
- enabled: true,
34
- color: 'blue',
35
- entityIds: [],
36
- surfaceIds: ['custom.home'],
37
- resourceIds: [],
38
- capabilityIds: []
39
- }
40
- ],
41
- navigation: {
42
- defaultSurfaceId: 'custom.home',
43
- surfaces: [
44
- {
45
- id: 'custom.home',
46
- label: 'Home',
47
- path: '/home',
48
- surfaceType: 'page',
49
- featureIds: ['crm'],
50
- entityIds: [],
51
- resourceIds: [],
52
- capabilityIds: []
53
- }
54
- ],
55
- groups: [{ id: 'primary', label: 'Primary', placement: 'primary', surfaceIds: ['custom.home'] }]
56
- }
57
- })
58
-
59
- expect(model.navigation.defaultSurfaceId).toBe('custom.home')
60
- expect(model.navigation.surfaces).toHaveLength(1)
61
- expect(model.navigation.surfaces[0]?.path).toBe('/home')
62
- })
63
-
64
- describe('deepMerge semantics', () => {
65
- it('returns defaults when no override is provided', () => {
66
- const model = resolveOrganizationModel(undefined)
67
-
68
- expect(model.version).toBe(1)
69
- expect(model.branding.organizationName).toBe('Default Organization')
70
- expect(model.branding.productName).toBe('Elevasis')
71
- expect(model.branding.shortName).toBe('Elevasis')
72
- expect(model.features).toHaveLength(8)
73
- expect(model.navigation.defaultSurfaceId).toBe('crm.pipeline')
74
- expect(model.navigation.surfaces).toHaveLength(24)
75
- expect(model.navigation.groups).toHaveLength(4)
76
- })
77
-
78
- it('preserves sibling fields when overriding a nested property', () => {
79
- const model = resolveOrganizationModel({
80
- branding: {
81
- organizationName: 'OverriddenOrg'
82
- }
83
- })
84
-
85
- expect(model.branding.organizationName).toBe('OverriddenOrg')
86
- expect(model.branding.productName).toBe('Elevasis')
87
- expect(model.branding.shortName).toBe('Elevasis')
88
- })
89
-
90
- it('replaces arrays entirely rather than merging', () => {
91
- const model = resolveOrganizationModel({
92
- features: [
93
- {
94
- id: 'crm',
95
- label: 'CRM',
96
- description: 'CRM only',
97
- enabled: true,
98
- color: 'blue',
99
- entityIds: [],
100
- surfaceIds: [],
101
- resourceIds: [],
102
- capabilityIds: []
103
- }
104
- ],
105
- navigation: {
106
- defaultSurfaceId: 'home',
107
- surfaces: [
108
- {
109
- id: 'home',
110
- label: 'Home',
111
- path: '/home',
112
- surfaceType: 'page',
113
- featureIds: [],
114
- entityIds: [],
115
- resourceIds: [],
116
- capabilityIds: []
117
- }
118
- ],
119
- groups: []
120
- }
121
- })
122
-
123
- expect(model.features).toHaveLength(1)
124
- expect(model.features[0]?.id).toBe('crm')
125
- })
126
-
127
- it('ignores undefined values in the override', () => {
128
- const model = resolveOrganizationModel({
129
- branding: {
130
- organizationName: 'Test',
131
- productName: undefined
132
- }
133
- })
134
-
135
- expect(model.branding.organizationName).toBe('Test')
136
- expect(model.branding.productName).toBe('Elevasis')
137
- })
138
- })
139
-
140
- describe('navigation group normalization', () => {
141
- const singleSurfaceOverride = {
142
- features: [
143
- {
144
- id: 'crm',
145
- label: 'CRM',
146
- description: 'CRM workspace',
147
- enabled: true,
148
- color: 'blue',
149
- entityIds: [],
150
- surfaceIds: ['crm.pipeline'],
151
- resourceIds: [],
152
- capabilityIds: []
153
- }
154
- ],
155
- navigation: {
156
- defaultSurfaceId: 'crm.pipeline',
157
- surfaces: [
158
- {
159
- id: 'crm.pipeline',
160
- label: 'Pipeline',
161
- path: '/crm/pipeline',
162
- surfaceType: 'graph' as const,
163
- featureIds: ['crm'],
164
- entityIds: [],
165
- resourceIds: [],
166
- capabilityIds: []
167
- }
168
- ]
169
- // groups intentionally omitted -- normalization must filter inherited groups
170
- }
171
- }
172
-
173
- it('filters inherited groups to match overridden surfaces', () => {
174
- const model = resolveOrganizationModel(singleSurfaceOverride)
175
-
176
- expect(model.navigation.surfaces).toHaveLength(1)
177
- expect(model.navigation.surfaces[0]?.id).toBe('crm.pipeline')
178
-
179
- // Only the workspace group survives (it has crm.pipeline); operations group is gone
180
- expect(model.navigation.groups).toHaveLength(1)
181
- expect(model.navigation.groups[0]?.id).toBe('primary-workspace')
182
- expect(model.navigation.groups[0]?.surfaceIds).toEqual(['crm.pipeline'])
183
- })
184
-
185
- it('removes groups with no valid surface references', () => {
186
- const model = resolveOrganizationModel(singleSurfaceOverride)
187
-
188
- // The operations group references surfaces not present in the override -- it must be removed
189
- const operationsGroup = model.navigation.groups.find((g) => g.id === 'primary-operations')
190
- expect(operationsGroup).toBeUndefined()
191
- })
192
-
193
- it('skips normalization when groups are explicitly overridden', () => {
194
- const model = resolveOrganizationModel({
195
- features: [
196
- {
197
- id: 'crm',
198
- label: 'CRM',
199
- description: 'CRM workspace',
200
- enabled: true,
201
- color: 'blue',
202
- entityIds: [],
203
- surfaceIds: ['crm.pipeline'],
204
- resourceIds: [],
205
- capabilityIds: []
206
- }
207
- ],
208
- navigation: {
209
- defaultSurfaceId: 'crm.pipeline',
210
- surfaces: [
211
- {
212
- id: 'crm.pipeline',
213
- label: 'Pipeline',
214
- path: '/crm/pipeline',
215
- surfaceType: 'graph',
216
- featureIds: ['crm'],
217
- entityIds: [],
218
- resourceIds: [],
219
- capabilityIds: []
220
- }
221
- ],
222
- groups: [
223
- {
224
- id: 'custom-group',
225
- label: 'Custom',
226
- placement: 'primary',
227
- surfaceIds: ['crm.pipeline']
228
- }
229
- ]
230
- }
231
- })
232
-
233
- expect(model.navigation.groups).toHaveLength(1)
234
- expect(model.navigation.groups[0]?.id).toBe('custom-group')
235
- expect(model.navigation.groups[0]?.surfaceIds).toEqual(['crm.pipeline'])
236
- })
237
- })
238
-
239
- describe('defineOrganizationModel', () => {
240
- it('returns the input unchanged', () => {
241
- const input = { branding: { organizationName: 'Test', productName: 'TestOS', shortName: 'T' } }
242
- const output = defineOrganizationModel(input)
243
-
244
- expect(output).toBe(input)
245
- })
246
- })
247
-
248
- describe('deepMerge edge cases', () => {
249
- it('overrides a numeric primitive field in a nested object', () => {
250
- // version is a numeric literal; overriding branding fields (numeric-adjacent: color codes etc.)
251
- // Use crm pipeline stage count as a numeric primitive proxy
252
- const model = resolveOrganizationModel({
253
- branding: {
254
- organizationName: 'NumericTest'
255
- }
256
- })
257
-
258
- // The resolved model should have the overridden string value; confirms primitive override path
259
- expect(model.branding.organizationName).toBe('NumericTest')
260
- // Sibling string fields are preserved from defaults
261
- expect(typeof model.branding.productName).toBe('string')
262
- expect(model.branding.productName.length).toBeGreaterThan(0)
263
- })
264
-
265
- it('replaces a top-level array with an empty array', () => {
266
- // resourceMappings defaults to [] in the DEFAULT_ORGANIZATION_MODEL. We seed one entry,
267
- // confirm it lands, then override with [] and confirm replacement (not append).
268
- // Using resourceMappings avoids navigation cross-ref complexity.
269
- const withMappings = resolveOrganizationModel({
270
- resourceMappings: [
271
- {
272
- id: 'rm-1',
273
- label: 'Test Resource',
274
- resourceId: 'res-1',
275
- resourceType: 'workflow',
276
- featureIds: [],
277
- entityIds: [],
278
- surfaceIds: [],
279
- capabilityIds: []
280
- }
281
- ]
282
- })
283
- expect(withMappings.resourceMappings).toHaveLength(1)
284
-
285
- // Now override with empty — confirms replacement semantics, not append
286
- const withEmpty = resolveOrganizationModel({
287
- resourceMappings: []
288
- })
289
- expect(withEmpty.resourceMappings).toHaveLength(0)
290
- })
291
-
292
- it('replaces a deeply-nested array with a shorter array (not appended)', () => {
293
- // Confirms array merge does NOT happen — the override is used verbatim.
294
- // We provide a complete consistent model (features + navigation) so superRefine passes,
295
- // isolating the assertion to "array length = override length, not override + default length".
296
- const model = resolveOrganizationModel({
297
- features: [
298
- {
299
- id: 'crm',
300
- label: 'CRM',
301
- description: 'CRM only',
302
- enabled: true,
303
- color: 'blue',
304
- entityIds: [],
305
- surfaceIds: ['crm.pipeline'],
306
- resourceIds: [],
307
- capabilityIds: []
308
- },
309
- {
310
- id: 'lead-gen',
311
- label: 'Lead Gen',
312
- description: 'Lead gen only',
313
- enabled: false,
314
- color: 'cyan',
315
- entityIds: [],
316
- surfaceIds: ['lead-gen.lists'],
317
- resourceIds: [],
318
- capabilityIds: []
319
- }
320
- ],
321
- navigation: {
322
- defaultSurfaceId: 'crm.pipeline',
323
- surfaces: [
324
- {
325
- id: 'crm.pipeline',
326
- label: 'Pipeline',
327
- path: '/crm/pipeline',
328
- surfaceType: 'graph',
329
- featureIds: ['crm'],
330
- entityIds: [],
331
- resourceIds: [],
332
- capabilityIds: []
333
- },
334
- {
335
- id: 'lead-gen.lists',
336
- label: 'Lists',
337
- path: '/lead-gen/lists',
338
- surfaceType: 'page',
339
- featureIds: ['lead-gen'],
340
- entityIds: [],
341
- resourceIds: [],
342
- capabilityIds: []
343
- }
344
- ],
345
- groups: []
346
- }
347
- })
348
-
349
- // deepMerge replaces, not appends: exactly 2 features (not 2 + 8 defaults)
350
- expect(model.features).toHaveLength(2)
351
- expect(model.features[0]?.id).toBe('crm')
352
- expect(model.features[1]?.id).toBe('lead-gen')
353
- })
354
-
355
- it('deeply-nested undefined fields in override are skipped (multi-level)', () => {
356
- // Three levels deep: branding -> a field set to undefined inside a nested call
357
- // The path here is: override.branding.organizationName = 'Keep', productName = undefined
358
- // Result: productName comes from defaults, not undefined
359
- const model = resolveOrganizationModel({
360
- branding: {
361
- organizationName: 'Keep',
362
- productName: undefined,
363
- shortName: undefined
364
- }
365
- })
366
-
367
- expect(model.branding.organizationName).toBe('Keep')
368
- // undefined-valued keys are skipped; defaults remain
369
- expect(model.branding.productName).toBe('Elevasis')
370
- expect(model.branding.shortName).toBe('Elevasis')
371
- })
372
-
373
- it('null override in a nested object field overwrites the default', () => {
374
- // null is NOT skipped by deepMerge (only undefined is). A null value for an object field
375
- // replaces the default with null. This test documents current behavior.
376
- // NOTE: This behavior reveals a potential gap — if a caller accidentally passes null for a
377
- // required nested object, deepMerge will assign null and OrganizationModelSchema.parse() will
378
- // catch it. The parse acts as the safety net here, not deepMerge itself.
379
- //
380
- // TODO: The deepMerge function does not guard against null overrides. If a caller passes
381
- // null for a required sub-object (e.g. branding: null), the parse throws a schema error
382
- // instead of a clear "null override rejected" message. Consider adding an explicit null-guard
383
- // in deepMerge to produce a better developer error surface — tracked in vibe-layer decision #22.
384
- expect(() =>
385
- resolveOrganizationModel({
386
- // @ts-expect-error: intentionally passing null to test runtime behavior
387
- branding: null
388
- })
389
- ).toThrow()
390
- })
391
-
392
- it('string primitive override replaces default at nested leaf', () => {
393
- // Covers the non-plain-object branch in deepMerge when both base and override are strings
394
- const model = resolveOrganizationModel({
395
- navigation: {
396
- defaultSurfaceId: 'crm.pipeline'
397
- }
398
- })
399
-
400
- expect(model.navigation.defaultSurfaceId).toBe('crm.pipeline')
401
- // Sibling object field is preserved from defaults
402
- expect(model.navigation.surfaces.length).toBeGreaterThan(0)
403
- expect(model.navigation.groups.length).toBeGreaterThan(0)
404
- })
405
-
406
- it('deeply nested object merges without clobbering peer keys', () => {
407
- // Three-level merge: override a leaf inside navigation without touching other navigation fields.
408
- // navigation.defaultSurfaceId is overridden; navigation.surfaces and groups come from defaults.
409
- const model = resolveOrganizationModel({
410
- navigation: {
411
- defaultSurfaceId: 'crm.pipeline'
412
- }
413
- })
414
-
415
- // Only the leaf was overridden; peer arrays are inherited from defaults (non-empty)
416
- expect(model.navigation.defaultSurfaceId).toBe('crm.pipeline')
417
- // Peer arrays come from defaults — we check they are non-empty without pinning to a count
418
- // that would break every time defaults.ts adds a new surface or group.
419
- expect(model.navigation.surfaces.length).toBeGreaterThan(0)
420
- expect(model.navigation.groups.length).toBeGreaterThan(0)
421
- })
422
- })
423
-
424
- describe('merged-result schema validation (80/20 gap — decision #22)', () => {
425
- // These cases demonstrate that deepMerge() can produce a type-compatible merged result that
426
- // OrganizationModelSchema.parse() correctly rejects via superRefine(). The gap cited in
427
- // vibe-layer decision #22 is that callers who skip parse() (e.g. use the merged object directly)
428
- // will silently carry invalid cross-references. The parse call inside resolveOrganizationModel
429
- // is the required gate — skipping it is the 80/20 risk.
430
-
431
- it('rejects a model where defaultSurfaceId does not match any declared surface', () => {
432
- // Override navigation to replace all surfaces with one surface, but keep defaultSurfaceId
433
- // pointing at a different (non-existent) surface.
434
- // deepMerge produces a structurally valid object; superRefine catches the dangling ref.
435
- expect(() =>
436
- resolveOrganizationModel({
437
- navigation: {
438
- defaultSurfaceId: 'does-not-exist',
439
- surfaces: [
440
- {
441
- id: 'crm.pipeline',
442
- label: 'Pipeline',
443
- path: '/crm/pipeline',
444
- surfaceType: 'graph',
445
- featureIds: [],
446
- entityIds: [],
447
- resourceIds: [],
448
- capabilityIds: []
449
- }
450
- ],
451
- groups: []
452
- },
453
- features: []
454
- })
455
- ).toThrow()
456
- })
457
-
458
- it('rejects a model where a feature references a surface that does not back-reference it', () => {
459
- // Feature says it owns surface 'crm.pipeline'; surface does NOT list the feature in featureIds.
460
- // Both sides are plain strings — TypeScript cannot catch this. superRefine must.
461
- expect(() =>
462
- resolveOrganizationModel({
463
- features: [
464
- {
465
- id: 'crm',
466
- label: 'CRM',
467
- description: 'CRM',
468
- enabled: true,
469
- color: 'blue',
470
- entityIds: [],
471
- surfaceIds: ['crm.pipeline'], // claims this surface
472
- resourceIds: [],
473
- capabilityIds: []
474
- }
475
- ],
476
- navigation: {
477
- defaultSurfaceId: 'crm.pipeline',
478
- surfaces: [
479
- {
480
- id: 'crm.pipeline',
481
- label: 'Pipeline',
482
- path: '/crm/pipeline',
483
- surfaceType: 'graph',
484
- featureIds: [], // does NOT back-reference 'crm'
485
- entityIds: [],
486
- resourceIds: [],
487
- capabilityIds: []
488
- }
489
- ],
490
- groups: []
491
- }
492
- })
493
- ).toThrow()
494
- })
495
-
496
- it('rejects a model where a surface references a feature that does not back-reference it', () => {
497
- // Mirror of the previous case: surface claims a feature; feature does not list the surface.
498
- expect(() =>
499
- resolveOrganizationModel({
500
- features: [
501
- {
502
- id: 'crm',
503
- label: 'CRM',
504
- description: 'CRM',
505
- enabled: true,
506
- color: 'blue',
507
- entityIds: [],
508
- surfaceIds: [], // does NOT list 'crm.pipeline'
509
- resourceIds: [],
510
- capabilityIds: []
511
- }
512
- ],
513
- navigation: {
514
- defaultSurfaceId: 'crm.pipeline',
515
- surfaces: [
516
- {
517
- id: 'crm.pipeline',
518
- label: 'Pipeline',
519
- path: '/crm/pipeline',
520
- surfaceType: 'graph',
521
- featureIds: ['crm'], // claims feature 'crm'
522
- entityIds: [],
523
- resourceIds: [],
524
- capabilityIds: []
525
- }
526
- ],
527
- groups: []
528
- }
529
- })
530
- ).toThrow()
531
- })
532
-
533
- it('rejects a model with duplicate feature ids', () => {
534
- // Two features with the same id — structurally valid JavaScript, superRefine detects the collision
535
- expect(() =>
536
- resolveOrganizationModel({
537
- features: [
538
- {
539
- id: 'crm',
540
- label: 'CRM A',
541
- description: 'First',
542
- enabled: true,
543
- color: 'blue',
544
- entityIds: [],
545
- surfaceIds: [],
546
- resourceIds: [],
547
- capabilityIds: []
548
- },
549
- {
550
- id: 'crm', // duplicate
551
- label: 'CRM B',
552
- description: 'Second',
553
- enabled: false,
554
- color: 'red',
555
- entityIds: [],
556
- surfaceIds: [],
557
- resourceIds: [],
558
- capabilityIds: []
559
- }
560
- ],
561
- navigation: {
562
- defaultSurfaceId: 'crm.pipeline',
563
- surfaces: [
564
- {
565
- id: 'crm.pipeline',
566
- label: 'Pipeline',
567
- path: '/crm/pipeline',
568
- surfaceType: 'graph',
569
- featureIds: [],
570
- entityIds: [],
571
- resourceIds: [],
572
- capabilityIds: []
573
- }
574
- ],
575
- groups: []
576
- }
577
- })
578
- ).toThrow()
579
- })
580
-
581
- it('rejects a model with duplicate navigation surface ids', () => {
582
- // Two surfaces sharing an id — TypeScript sees string[], superRefine enforces uniqueness
583
- expect(() =>
584
- resolveOrganizationModel({
585
- features: [],
586
- navigation: {
587
- defaultSurfaceId: 'crm.pipeline',
588
- surfaces: [
589
- {
590
- id: 'crm.pipeline',
591
- label: 'Pipeline A',
592
- path: '/crm/pipeline',
593
- surfaceType: 'graph',
594
- featureIds: [],
595
- entityIds: [],
596
- resourceIds: [],
597
- capabilityIds: []
598
- },
599
- {
600
- id: 'crm.pipeline', // duplicate
601
- label: 'Pipeline B',
602
- path: '/crm/pipeline-2',
603
- surfaceType: 'page',
604
- featureIds: [],
605
- entityIds: [],
606
- resourceIds: [],
607
- capabilityIds: []
608
- }
609
- ],
610
- groups: []
611
- }
612
- })
613
- ).toThrow()
614
- })
615
-
616
- it('accepts a fully consistent minimal model with bidirectional refs', () => {
617
- // Positive control: a hand-constructed model that satisfies all superRefine cross-ref rules
618
- // should NOT throw — proving the rejection cases above are schema-specific, not noise
619
- expect(() =>
620
- resolveOrganizationModel({
621
- features: [
622
- {
623
- id: 'crm',
624
- label: 'CRM',
625
- description: 'CRM',
626
- enabled: true,
627
- color: 'blue',
628
- entityIds: [],
629
- surfaceIds: ['crm.pipeline'],
630
- resourceIds: [],
631
- capabilityIds: []
632
- }
633
- ],
634
- navigation: {
635
- defaultSurfaceId: 'crm.pipeline',
636
- surfaces: [
637
- {
638
- id: 'crm.pipeline',
639
- label: 'Pipeline',
640
- path: '/crm/pipeline',
641
- surfaceType: 'graph',
642
- featureIds: ['crm'], // back-references 'crm'
643
- entityIds: [],
644
- resourceIds: [],
645
- capabilityIds: []
646
- }
647
- ],
648
- groups: [
649
- {
650
- id: 'primary',
651
- label: 'Primary',
652
- placement: 'primary',
653
- surfaceIds: ['crm.pipeline']
654
- }
655
- ]
656
- }
657
- })
658
- ).not.toThrow()
659
- })
660
-
661
- it('OrganizationModelSchema.parse rejects the same invalid model that resolveOrganizationModel rejects', () => {
662
- // Confirms the gap: if a caller uses deepMerge output WITHOUT calling parse,
663
- // the dangling defaultSurfaceId ref would go undetected. parse() is the required gate.
664
- // This test documents the behavior by verifying parse throws on the invalid merged object.
665
- const invalidNavigation = {
666
- defaultSurfaceId: 'ghost-surface',
667
- surfaces: [],
668
- groups: []
669
- }
670
-
671
- // Calling parse directly on a shape that has the right structure but broken refs
672
- const rawInvalidModel = {
673
- version: 1 as const,
674
- features: [],
675
- branding: {
676
- organizationName: 'Test',
677
- productName: 'Test',
678
- shortName: 'T'
679
- },
680
- navigation: invalidNavigation,
681
- crm: { pipelines: [] },
682
- leadGen: { lists: [] },
683
- delivery: { projects: [] },
684
- resourceMappings: []
685
- }
686
-
687
- expect(() => OrganizationModelSchema.parse(rawInvalidModel)).toThrow()
688
- })
689
- })
690
- })
1
+ import { describe, expect, it } from 'vitest'
2
+ import { defineOrganizationModel, resolveOrganizationModel } from '../resolve'
3
+
4
+ describe('organization-model resolve', () => {
5
+ it('resolves the flat feature defaults', () => {
6
+ const model = resolveOrganizationModel()
7
+
8
+ expect(model.version).toBe(1)
9
+ expect(model.features.find((feature) => feature.id === 'dashboard')?.path).toBe('/')
10
+ expect(model.features.find((feature) => feature.id === 'sales')?.path).toBeUndefined()
11
+ expect(model.features.find((feature) => feature.id === 'sales.crm')?.path).toBe('/crm')
12
+ expect(model.features.find((feature) => feature.id === 'admin')?.requiresAdmin).toBe(true)
13
+ expect(model.features.find((feature) => feature.id === 'archive')?.devOnly).toBe(true)
14
+ })
15
+
16
+ it('replaces arrays when an override supplies a complete feature slice', () => {
17
+ const model = resolveOrganizationModel({
18
+ features: [
19
+ {
20
+ id: 'custom',
21
+ label: 'Custom',
22
+ enabled: true,
23
+ path: '/custom'
24
+ }
25
+ ]
26
+ })
27
+
28
+ expect(model.features).toHaveLength(1)
29
+ expect(model.features[0]?.id).toBe('custom')
30
+ })
31
+
32
+ it('preserves sibling fields when overriding a nested property', () => {
33
+ const model = resolveOrganizationModel({
34
+ branding: {
35
+ organizationName: 'OverriddenOrg'
36
+ }
37
+ })
38
+
39
+ expect(model.branding.organizationName).toBe('OverriddenOrg')
40
+ expect(model.branding.productName).toBe('Elevasis')
41
+ expect(model.features.length).toBeGreaterThan(0)
42
+ })
43
+
44
+ it('throws on duplicate feature ids in the merged result', () => {
45
+ expect(() =>
46
+ resolveOrganizationModel({
47
+ features: [
48
+ { id: 'custom', label: 'Custom A', enabled: true, path: '/custom-a' },
49
+ { id: 'custom', label: 'Custom B', enabled: true, path: '/custom-b' }
50
+ ]
51
+ })
52
+ ).toThrow()
53
+ })
54
+
55
+ it('returns defineOrganizationModel input unchanged', () => {
56
+ const input = { branding: { organizationName: 'Test', productName: 'TestOS', shortName: 'T' } }
57
+ expect(defineOrganizationModel(input)).toBe(input)
58
+ })
59
+ })