-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathProject.swift
More file actions
983 lines (963 loc) · 43.5 KB
/
Copy pathProject.swift
File metadata and controls
983 lines (963 loc) · 43.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
import ProjectDescription
let destinations: Destinations = [.iPhone, .iPad]
let deployment: DeploymentTargets = .iOS("27.0")
/// The Ledger menu bar app is the only native-macOS target; everything else
/// stays on the shared iOS destinations above.
let macDeployment: DeploymentTargets = .macOS("26.0")
/// Local Swift package (see root `Package.swift`) for the library products
/// (WhereCore, WhereUI, TestHostSupport, the Broadway modules, …).
private let stuffPackage = Package.local(path: .relativeToRoot("."))
private let sfSafeSymbolsPackage = Package.remote(
url: "https://github.com/SFSafeSymbols/SFSafeSymbols",
requirement: .upToNextMajor(from: "7.0.0"),
)
/// Apple Developer Team used to code-sign when building to a device, read from
/// the `TUIST_DEVELOPMENT_TEAM` environment variable so each developer's team ID
/// stays out of the checked-in project. Set it in `.mise.local.toml` (gitignored)
/// and it's picked up automatically by `mise exec -- tuist generate` (i.e. `./ide`).
/// When unset — e.g. on CI or a fresh clone — no `DEVELOPMENT_TEAM` is written and
/// Xcode falls back to its defaults.
private let developmentTeam = Environment.developmentTeam.getString(default: "")
private struct WhereAudience {
enum Variant {
case debug
case release
}
let schemeName: String
let configurationName: ConfigurationName
let variant: Variant
let condition: String
let value: String
let displayName: String
let appBundleID: String
let widgetBundleID: String
let shareBundleID: String
let appGroupIdentifier: String
let primaryAppIconName: String
func configuration(settings: SettingsDictionary = [:]) -> Configuration {
switch variant {
case .debug: .debug(name: configurationName, settings: settings)
case .release: .release(name: configurationName, settings: settings)
}
}
}
private let whereAudiences: [WhereAudience] = [
WhereAudience(
schemeName: "Where Development",
configurationName: "Debug",
variant: .debug,
condition: "WHERE_DEVELOPMENT",
value: "development",
displayName: "Where Dev",
appBundleID: "com.stuff.where.development",
widgetBundleID: "com.stuff.where.development.widgets",
shareBundleID: "com.stuff.where.development.share",
appGroupIdentifier: "group.com.stuff.where.development",
primaryAppIconName: "AppIcon",
),
WhereAudience(
schemeName: "Where Beta",
configurationName: "Beta",
variant: .release,
condition: "WHERE_BETA",
value: "beta",
displayName: "Where",
appBundleID: "com.stuff.where",
widgetBundleID: "com.stuff.where.widgets",
shareBundleID: "com.stuff.where.share",
appGroupIdentifier: "group.com.stuff.where",
primaryAppIconName: "AppIcon",
),
WhereAudience(
schemeName: "Where App Store",
configurationName: "Release",
variant: .release,
condition: "WHERE_APP_STORE",
value: "appStore",
displayName: "Where",
appBundleID: "com.stuff.where",
widgetBundleID: "com.stuff.where.widgets",
shareBundleID: "com.stuff.where.share",
appGroupIdentifier: "group.com.stuff.where",
primaryAppIconName: "AppIcon",
),
]
private enum WhereHostTarget {
case app
case widget
case share
func bundleID(for audience: WhereAudience) -> String {
switch self {
case .app: audience.appBundleID
case .widget: audience.widgetBundleID
case .share: audience.shareBundleID
}
}
}
private func whereHostSettings(
_ target: WhereHostTarget,
base: SettingsDictionary = [:],
) -> Settings {
.settings(
base: base,
configurations: whereAudiences.map { audience in
var settings: SettingsDictionary = [
"PRODUCT_BUNDLE_IDENTIFIER": .string(target.bundleID(for: audience)),
"SWIFT_ACTIVE_COMPILATION_CONDITIONS": .string(
"$(inherited) \(audience.condition)",
),
"WHERE_APP_GROUP_IDENTIFIER": .string(audience.appGroupIdentifier),
"WHERE_AUDIENCE": .string(audience.value),
"WHERE_DISPLAY_NAME": .string(audience.displayName),
"WHERE_PRIMARY_APP_ICON_NAME": .string(audience.primaryAppIconName),
]
if case .app = target {
settings["ASSETCATALOG_COMPILER_APPICON_NAME"] = .string(audience
.primaryAppIconName)
}
return audience.configuration(settings: settings)
},
)
}
/// Base build settings applied to every Tuist-generated target.
///
/// `STRING_CATALOG_GENERATE_SYMBOLS` turns on Xcode's type-safe String Catalog
/// symbol generation for the app and app-extension targets (Where, WhereWidgets,
/// WhereShareExtension, …). The SwiftPM package targets declared in `Package.swift`
/// (WhereUI, WhereCore, RegionKit, LifecycleKitUI) get symbol generation
/// automatically from the toolchain, so this only needs to reach the
/// Tuist-native targets.
///
/// `DEVELOPMENT_TEAM` is threaded in from the environment when present (see above).
private let projectSettings: Settings = .settings(
base: developmentTeam.isEmpty
? ["STRING_CATALOG_GENERATE_SYMBOLS": "YES"]
: [
"STRING_CATALOG_GENERATE_SYMBOLS": "YES",
"DEVELOPMENT_TEAM": .string(developmentTeam),
],
configurations: whereAudiences.map { $0.configuration() },
defaultConfiguration: "Debug",
)
/// App Group shared by the Where app, its widget extension, and its share
/// extension so every audience's processes see the same on-disk SwiftData
/// store and widget snapshot JSON. The host injects the matching build setting
/// into WhereCore; no package target owns a global App Group identifier.
let whereAppGroupEntitlements: Entitlements = .dictionary([
"com.apple.security.application-groups": .array([
.string("$(WHERE_APP_GROUP_IDENTIFIER)"),
]),
])
/// The app additionally owns the CloudKit container that mirrors its
/// SwiftData store. Extensions deliberately keep the App Group-only
/// entitlement above: they write the shared local store and let the app's
/// CloudKit-backed container publish those changes when it next opens.
let whereAppEntitlements: Entitlements = .dictionary([
// Xcode replaces this development placeholder with the environment from
// the selected provisioning profile. Keeping the entitlement in the
// target is what makes automatic signing request Push Notifications.
"aps-environment": .string("development"),
"com.apple.security.application-groups": .array([
.string("$(WHERE_APP_GROUP_IDENTIFIER)"),
]),
"com.apple.developer.icloud-container-identifiers": .array([
.string("iCloud.com.stuff.where"),
]),
"com.apple.developer.icloud-services": .array([.string("CloudKit")]),
"com.apple.developer.ubiquity-kvstore-identifier": .string(
"$(TeamIdentifierPrefix)com.stuff.where",
),
])
/// The environment the LFS reference images were recorded on, and the single
/// source of truth for it.
///
/// The `assertSnapshots` runner compares the `SNAPSHOT_EXPECTED_*` values
/// against the live simulator and fails fast with one clear message on a
/// mismatched runtime, screen scale, or timezone — instead of hundreds of
/// confusing image diffs. `TZ` pins the test process's timezone itself: several
/// references bake Pacific wall-clock dates/times into the image (widget day
/// labels, log-viewer timestamps), so an unpinned UTC CI runner would shift
/// every date-rendering snapshot. `SNAPSHOT_EXPECTED_TIMEZONE` is the guard
/// that verifies the `TZ` pin actually reached the test process.
///
/// Set on **both** the snapshot targets and the aggregate scheme below, which
/// is deliberate: Tuist autogenerates a scheme per target, so a target that
/// carries these is correctly pinned when someone runs that one bundle from
/// Xcode, while the aggregate scheme covers the CI invocation. Setting them in
/// only one place leaves the other silently unpinned — and an unpinned run
/// doesn't fail loudly, it just compares against references recorded somewhere
/// else.
/// Points SwiftPM's generated `Bundle.module` accessors at the built-products
/// directory, where every package resource bundle lands — set on every test
/// target and test action, hosted or not.
///
/// `PACKAGE_RESOURCE_BUNDLE_PATH` is the accessors' own first candidate
/// (DEBUG-only, which test builds are; see any generated
/// `resource_bundle_accessor.swift`, rdar://107766372). It exists because the
/// default candidates — `Bundle.main` and `Bundle(for: BundleFinder.self)` —
/// assume the class and its resource bundle travel together, and Xcode 27
/// beta 4 broke that assumption for hosted tests: its package linking dedupes
/// a statically-absorbed product's code into the one image that carries it
/// (e.g. WhereCore's classes live only inside `WhereUI.framework`), while the
/// product's resource bundle is still copied into each `.xctest`. The class
/// resolves to the framework, the bundle sits unseen in the test bundle, and
/// the accessor's `fatalError` kills the host (CI run 30484782772).
///
/// The pre-#144 remedy — embedding WhereCore in `StuffTestHost` so
/// `Bundle.main` resolves — can't come back: under beta 4 a package product
/// consumed by both the host and the bundles loses its String Catalog
/// generate-symbols step and the build fails. The env override sidesteps
/// linking entirely; simulator processes read host paths, so the
/// built-products directory is always reachable. Remove this only when a
/// later Xcode makes the default candidates resolve for hosted tests again —
/// prove it by deleting the variable and running the full `Stuff-iOS-Tests`
/// scheme on the Xcode CI uses.
let packageResourceEnvironment: [String: EnvironmentVariable] = [
"PACKAGE_RESOURCE_BUNDLE_PATH": "$(BUILT_PRODUCTS_DIR)",
]
let snapshotEnvironment: [String: EnvironmentVariable] =
packageResourceEnvironment.merging([
"SNAPSHOT_EXPECTED_SIMULATOR_RUNTIME_VERSION": "27.0",
"SNAPSHOT_EXPECTED_SCREEN_SCALE": "3",
"SNAPSHOT_EXPECTED_TIMEZONE": "America/Los_Angeles",
"TZ": "America/Los_Angeles",
]) { _, new in new }
func unitTests(
name: String,
bundleIdSuffix: String,
productDependency: String,
sources: ProjectDescription.SourceFilesList,
extraPackageProducts: [String] = [],
environmentVariables: [String: EnvironmentVariable] = [:],
) -> Target {
var dependencies: [TargetDependency] = [
.package(product: productDependency),
.package(product: "TestHostSupport"),
.target(name: "StuffTestHost"),
]
for product in extraPackageProducts {
dependencies.append(.package(product: product))
}
return .target(
name: name,
destinations: destinations,
product: .unitTests,
bundleId: "com.stuff.\(bundleIdSuffix).tests",
deploymentTargets: deployment,
sources: sources,
dependencies: dependencies,
environmentVariables: packageResourceEnvironment
.merging(environmentVariables) { _, new in new },
)
}
/// A shared scheme that builds and tests a single unit-test bundle.
/// `testEnvironmentVariables` are set on the test action, so they reach the
/// test process (schemes without any keep an argument-less test action).
func testScheme(
name: String,
testEnvironmentVariables: [String: EnvironmentVariable] = [:],
) -> Scheme {
.scheme(
name: name,
shared: true,
buildAction: .buildAction(targets: ["\(name)"]),
testAction: .targets(
["\(name)"],
arguments: .arguments(
environmentVariables: packageResourceEnvironment
.merging(testEnvironmentVariables) { _, new in new },
),
),
)
}
private let whereAudienceSchemes: [Scheme] = [
// Reserve the autogenerated target scheme's name but keep audience-neutral
// entry points out of Xcode's visible scheme picker.
.scheme(
name: "Where",
shared: true,
hidden: true,
buildAction: .buildAction(targets: ["Where"]),
runAction: .runAction(configuration: "Debug", executable: "Where"),
),
] + whereAudiences.map { audience in
let testAction: TestAction? = switch audience.variant {
case .debug: .targets(
["WhereTests"],
arguments: .arguments(environmentVariables: packageResourceEnvironment),
configuration: audience.configurationName,
)
case .release: nil
}
return .scheme(
name: audience.schemeName,
shared: true,
buildAction: .buildAction(targets: ["Where"]),
testAction: testAction,
runAction: .runAction(
configuration: audience.configurationName,
executable: "Where",
),
archiveAction: .archiveAction(configuration: audience.configurationName),
)
}
let project = Project(
name: "Stuff",
options: .options(
defaultKnownRegions: ["en"],
developmentRegion: "en",
),
packages: [stuffPackage, sfSafeSymbolsPackage],
settings: projectSettings,
targets: [
.target(
name: "Where",
destinations: destinations,
product: .app,
bundleId: "com.stuff.where",
deploymentTargets: deployment,
infoPlist: .extendingDefault(with: [
"CFBundleDisplayName": .string("$(WHERE_DISPLAY_NAME)"),
"UILaunchScreen": .dictionary([:]),
"UIApplicationSupportsIndirectInputEvents": .boolean(true),
"UIBackgroundModes": .array([.string("remote-notification")]),
// Stated explicitly rather than left to Tuist's `1.0` / `1`
// defaults, because Settings > About shows them: the version a
// user reads off the screen should be one this manifest chose.
"CFBundleShortVersionString": .string("1.0"),
"CFBundleVersion": .string("1"),
"WhereAudience": .string("$(WHERE_AUDIENCE)"),
"WhereAppGroupIdentifier": .string("$(WHERE_APP_GROUP_IDENTIFIER)"),
"WherePrimaryAppIconName": .string("$(WHERE_PRIMARY_APP_ICON_NAME)"),
"NSLocationWhenInUseUsageDescription": .string(
"Where uses your location to figure out which region you're in.",
),
"NSLocationAlwaysAndWhenInUseUsageDescription": .string(
"Where checks your location in the background so it can log which region you're in each day.",
),
]),
sources: ["Where/Where/Sources/**"],
resources: ["Where/Where/Resources/**"],
entitlements: whereAppEntitlements,
// Writes `WhereGitSHA` / `WhereGitStatus` into the built Info.plist
// for Settings > About. A *post* script so it lands after "Process
// Info.plist" and before signing, and `basedOnDependencyAnalysis:
// false` so an unchanged source tree still re-stamps a new commit.
scripts: [
.post(
path: "Where/Where/Scripts/stamp-build-info.sh",
name: "Stamp Build Info",
basedOnDependencyAnalysis: false,
),
],
dependencies: [
.package(product: "LifecycleKit"),
.package(product: "RegionKit"),
.package(product: "WhereCrashReporting"),
.package(product: "WhereCore"),
.package(product: "WhereUI"),
.package(product: "WhereIntents"),
.target(name: "WhereWidgets"),
.target(name: "WhereShareExtension"),
],
// Compile every `*.appiconset` in `AppIcon.xcassets` into the build and
// auto-write the `CFBundleAlternateIcons` plist entries, so the asset
// catalog itself is the source of truth for which alternate icons exist
// (the `./icons` script just adds/removes sets — no names list to keep
// in sync here). Each audience descriptor chooses its primary from
// those sets. Where ships no custom global accent color (it tints
// per-region in SwiftUI), so clear the name actool otherwise looks
// for — an unset `AccentColor` warns.
settings: whereHostSettings(.app, base: [
"ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS": "YES",
"ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME": "",
]),
),
.target(
name: "WhereWidgets",
destinations: destinations,
product: .appExtension,
bundleId: "com.stuff.where.widgets",
deploymentTargets: deployment,
infoPlist: .extendingDefault(with: [
"CFBundleDisplayName": .string("$(WHERE_DISPLAY_NAME)"),
"WhereAudience": .string("$(WHERE_AUDIENCE)"),
"WhereAppGroupIdentifier": .string("$(WHERE_APP_GROUP_IDENTIFIER)"),
"NSExtension": .dictionary([
"NSExtensionPointIdentifier": .string("com.apple.widgetkit-extension"),
]),
]),
sources: ["Where/WhereWidgets/Sources/**"],
resources: ["Where/WhereWidgets/Resources/**"],
entitlements: whereAppGroupEntitlements,
dependencies: [
.package(product: "PeriscopeCore"),
.package(product: "RegionKit"),
.package(product: "WhereCore"),
.package(product: "WhereUI"),
],
settings: whereHostSettings(.widget),
),
.target(
name: "WhereShareExtension",
destinations: destinations,
product: .appExtension,
bundleId: "com.stuff.where.share",
deploymentTargets: deployment,
infoPlist: .extendingDefault(with: [
"CFBundleDisplayName": .string("$(WHERE_DISPLAY_NAME)"),
"WhereAudience": .string("$(WHERE_AUDIENCE)"),
"WhereAppGroupIdentifier": .string("$(WHERE_APP_GROUP_IDENTIFIER)"),
"NSExtension": .dictionary([
"NSExtensionPointIdentifier": .string("com.apple.share-services"),
"NSExtensionPrincipalClass": .string(
"$(PRODUCT_MODULE_NAME).ShareViewController",
),
// Offer the share action for the content Where can back a
// day-count claim with: images, files (PDFs, `.pkpass`
// tickets, `.eml` emails), plain text, and web URLs.
"NSExtensionAttributes": .dictionary([
"NSExtensionActivationRule": .dictionary([
"NSExtensionActivationSupportsImageWithMaxCount": .integer(20),
"NSExtensionActivationSupportsFileWithMaxCount": .integer(20),
"NSExtensionActivationSupportsText": .boolean(true),
"NSExtensionActivationSupportsWebURLWithMaxCount": .integer(20),
]),
]),
]),
]),
sources: ["Where/WhereShareExtension/Sources/**"],
resources: ["Where/WhereShareExtension/Resources/**"],
entitlements: whereAppGroupEntitlements,
dependencies: [
.package(product: "PeriscopeCore"),
.package(product: "SFSafeSymbols"),
.package(product: "WhereCore"),
.package(product: "WhereUI"),
],
settings: whereHostSettings(.share),
),
.target(
name: "RegionViewer",
// The first (and only) target to opt into Mac Catalyst: a thin
// standalone host for the WhereUI `RegionMapView` developer tool.
// The shared `destinations` constant stays iPhone/iPad-only for
// everything else.
destinations: [.iPhone, .iPad, .macCatalyst],
product: .app,
bundleId: "com.stuff.regionviewer",
deploymentTargets: deployment,
infoPlist: .extendingDefault(with: [
"UILaunchScreen": .dictionary([:]),
"UIApplicationSupportsIndirectInputEvents": .boolean(true),
]),
sources: ["Where/RegionViewer/Sources/**"],
resources: ["Where/RegionViewer/Resources/**"],
// No App Group entitlement — the viewer only reads bundled GeoJSON
// (embedded via the RegionKit dependency), never the app's store.
dependencies: [
.package(product: "RegionKit"),
.package(product: "WhereCore"),
.package(product: "WhereUI"),
],
// This developer tool ships no custom app icon or accent color, so
// clear the names the asset-catalog compiler otherwise requires
// (its `Resources/Assets.xcassets` is intentionally empty).
settings: .settings(base: [
"ASSETCATALOG_COMPILER_APPICON_NAME": "",
"ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME": "",
]),
),
.target(
name: "Ledger",
destinations: [.mac],
product: .app,
bundleId: "com.stuff.ledger",
deploymentTargets: macDeployment,
// Full custom plist (not `.extendingDefault`) so the macOS defaults
// can't sneak in a `NSMainStoryboardFile` — Ledger is a pure
// SwiftUI/AppKit menu-bar app. `LSUIElement` keeps it out of the
// Dock and app switcher; it lives in the menu bar only.
infoPlist: .dictionary([
"CFBundleDevelopmentRegion": .string("en"),
"CFBundleExecutable": .string("$(EXECUTABLE_NAME)"),
"CFBundleIdentifier": .string("$(PRODUCT_BUNDLE_IDENTIFIER)"),
"CFBundleInfoDictionaryVersion": .string("6.0"),
"CFBundleName": .string("$(PRODUCT_NAME)"),
"CFBundlePackageType": .string("APPL"),
"CFBundleShortVersionString": .string("1.0"),
"CFBundleVersion": .string("1"),
"LSApplicationCategoryType": .string("public.app-category.developer-tools"),
"LSMinimumSystemVersion": .string("$(MACOSX_DEPLOYMENT_TARGET)"),
"LSUIElement": .boolean(true),
"NSPrincipalClass": .string("NSApplication"),
]),
sources: ["Ledger/Ledger/Sources/**"],
dependencies: [
.package(product: "LedgerCore"),
.package(product: "SFSafeSymbols"),
],
// Ledger ships no asset catalog (menu-bar icon is an SF Symbol), so
// clear the asset-catalog name settings the compiler otherwise
// looks for.
settings: .settings(base: [
"ASSETCATALOG_COMPILER_APPICON_NAME": "",
"ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME": "",
]),
),
.target(
name: "LedgerCoreTests",
// Hostless macOS unit tests — the `unitTests` helper above is
// iOS-only (it hosts bundles in StuffTestHost), so this target is
// declared directly.
destinations: [.mac],
product: .unitTests,
bundleId: "com.stuff.ledgercore.tests",
deploymentTargets: macDeployment,
sources: ["Ledger/LedgerCore/Tests/**"],
dependencies: [
.package(product: "LedgerCore"),
],
),
.target(
name: "WhereTests",
destinations: destinations,
product: .unitTests,
bundleId: "com.stuff.where.tests",
deploymentTargets: deployment,
sources: ["Where/Where/Tests/**"],
dependencies: [
.target(name: "Where"),
.package(product: "LifecycleKit"),
.package(product: "TestHostSupport"),
.package(product: "WhereUI"),
],
environmentVariables: packageResourceEnvironment,
),
.target(
name: "StuffTestHost",
destinations: destinations,
product: .app,
bundleId: "com.stuff.stufftesthost",
deploymentTargets: deployment,
infoPlist: .extendingDefault(with: [
"UILaunchScreen": .dictionary([:]),
"UIApplicationSceneManifest": .dictionary([
"UIApplicationSupportsMultipleScenes": .boolean(false),
"UISceneConfigurations": .dictionary([
"UIWindowSceneSessionRoleApplication": .array([
.dictionary([
"UISceneConfigurationName": .string("Default Configuration"),
"UISceneDelegateClassName": .string(
"$(PRODUCT_MODULE_NAME).SceneDelegate",
),
]),
]),
]),
]),
]),
sources: ["Shared/StuffTestHost/Sources/**"],
// Keep this host thin — it deliberately depends on nothing but
// TestHostSupport.
//
// Hosted bundles' `Bundle.module` lookups do *not* resolve against
// this host: `packageResourceEnvironment` points the generated
// accessors at the built-products directory instead. Don't re-add a
// product here to fix a missing-resource failure. The host once
// embedded WhereCore for exactly that (removed in #144 as redundant
// on Xcode 27 beta 3), and when beta 4 broke resource resolution the
// embed could not come back: under beta 4 a package product consumed
// by both this host and the test bundles loses its String Catalog
// generate-symbols step, failing the build (verified with WhereCore
// and, via LifecycleKitUI, with WhereUI). See the note on
// `packageResourceEnvironment` for the full story.
dependencies: [
// Lets `SceneDelegate` stamp its window with `isMainTestHostWindow`
// so hosted tests can find it via `TestHostSupport.hostKeyWindow()`.
.package(product: "TestHostSupport"),
],
),
unitTests(
name: "CreditKitTests",
bundleIdSuffix: "creditkit",
productDependency: "CreditKit",
sources: ["Shared/CreditKit/Tests/**"],
),
unitTests(
name: "WhereCrashReportingTests",
bundleIdSuffix: "wherecrashreporting",
productDependency: "WhereCrashReporting",
sources: ["Where/WhereCrashReporting/Tests/**"],
),
unitTests(
name: "LifecycleKitTests",
bundleIdSuffix: "lifecyclekit",
productDependency: "LifecycleKit",
sources: ["Shared/LifecycleKit/Tests/**"],
),
unitTests(
name: "LifecycleKitUITests",
bundleIdSuffix: "lifecyclekitui",
productDependency: "LifecycleKitUI",
sources: ["Shared/LifecycleKitUI/Tests/**"],
extraPackageProducts: ["LifecycleKit"],
),
unitTests(
name: "JournalKitTests",
bundleIdSuffix: "journalkit",
productDependency: "JournalKit",
sources: ["Shared/JournalKit/Tests/**"],
),
unitTests(
name: "PeriscopeCoreTests",
bundleIdSuffix: "periscopecore",
productDependency: "PeriscopeCore",
sources: ["Shared/Periscope/PeriscopeCore/Tests/**"],
extraPackageProducts: ["JournalKit"],
),
unitTests(
name: "PeriscopeUITests",
bundleIdSuffix: "periscopeui",
productDependency: "PeriscopeUI",
sources: ["Shared/Periscope/PeriscopeUI/Tests/**"],
extraPackageProducts: ["PeriscopeCore"],
),
unitTests(
name: "PeriscopeToolsTests",
bundleIdSuffix: "periscopetools",
productDependency: "PeriscopeTools",
sources: ["Shared/Periscope/PeriscopeTools/Tests/**"],
extraPackageProducts: [
"PeriscopeCore",
"PeriscopeUI",
],
),
unitTests(
name: "InspectorTests",
bundleIdSuffix: "inspector",
productDependency: "Inspector",
sources: ["Shared/Inspector/Tests/**"],
),
unitTests(
name: "FlyoverTests",
bundleIdSuffix: "flyover",
productDependency: "Flyover",
sources: ["Shared/Flyover/Tests/**"],
),
unitTests(
name: "SnapshotKitTests",
bundleIdSuffix: "snapshotkit",
productDependency: "SnapshotKit",
sources: ["Shared/SnapshotKit/Tests/**"],
),
// The capture/compare pipeline's own regression tests. They render
// through `renderSnapshotImage` (so they need the `StuffTestHost` key
// window) but assert on probed pixels rather than LFS reference images,
// so — unlike `StuffSnapshotTests` — this bundle is fast, has no
// `__Snapshots__/`, and runs in the main `Stuff-iOS-Tests` scheme /
// `test` CI job. `SnapshotKitTesting` embeds its dependency closure
// (SnapshotKit, SnapshotTesting, AccessibilitySnapshot) into the
// `.xctest`, as every bundle here embeds what it links. That means the
// `Stuff-iOS-Tests` host process holds a SnapshotKit copy per bundle
// that links one, but no lookup crosses between them: each bundle's
// capture writes and reads resolve within its own image.
unitTests(
name: "SnapshotKitTestingTests",
bundleIdSuffix: "snapshotkittesting",
productDependency: "SnapshotKitTesting",
sources: ["Shared/SnapshotKitTesting/Tests/**"],
extraPackageProducts: ["SFSafeSymbols"],
),
unitTests(
name: "RegionKitTests",
bundleIdSuffix: "regionkit",
productDependency: "RegionKit",
sources: ["Where/RegionKit/Tests/**"],
),
unitTests(
name: "WhereCoreTests",
bundleIdSuffix: "wherecore",
productDependency: "WhereCore",
sources: ["Where/WhereCore/Tests/**"],
extraPackageProducts: ["RegionKit"],
),
// WhereUITests names LifecycleKit and SFSafeSymbols because its test sources
// exercise those public types directly. Xcode 27 emits WhereUI as a dynamic package
// products in this graph, so merely copying WhereUI's transitive frameworks
// does not add them to the test bundle's link command. Everything else arrives
// through WhereUI; re-listing a statically absorbed product can still split
// type-keyed lookups in the full multi-bundle scheme.
// Guard: WhereStylesheetTests.resolvesTraitAwareTokensFromTheBroadwayRoot.
// See "Never double-link a product WhereUI already carries" in the root
// AGENTS.md; mechanism: PR #145.
unitTests(
name: "WhereUITests",
bundleIdSuffix: "whereui",
productDependency: "WhereUI",
sources: ["Where/WhereUI/Tests/**"],
extraPackageProducts: ["LifecycleKit", "SFSafeSymbols"],
),
// WhereIntents depends on WhereUI for its snippet cards, so — exactly like
// WhereUITests above — this bundle lists no `extraPackageProducts`:
// WhereUI/WhereCore/RegionKit/Broadway all arrive transitively, and
// re-listing any of them would land a duplicate copy in this image.
// See "Never double-link a product WhereUI already carries" in the root
// AGENTS.md.
unitTests(
name: "WhereIntentsTests",
bundleIdSuffix: "whereintents",
productDependency: "WhereIntents",
sources: ["Where/WhereIntents/Tests/**"],
),
// Image snapshot bundles: one per module that owns image references,
// all gathered into the single `StuffSnapshotTests` scheme below so CI
// runs them in one `snapshot` job. They are slow and LFS-backed, so
// they are deliberately NOT in the `Stuff-iOS-Tests` scheme.
//
// One bundle per module rather than one shared bundle, because a
// module's image suite should link only what that module needs: the
// Periscope and Inspector suites don't build against WhereUI
// at all. Each records its references beside its own sources —
// swift-snapshot-testing derives the `__Snapshots__` directory from the
// calling file's `#filePath`, which `assertSnapshots` threads through.
//
// Separate bundles are safe here because each `.xctest` gets its own
// `StuffTestHost` process: measured on Xcode 27 by probing
// `ProcessInfo.processIdentifier` from two bundles in one scheme, which
// reported different PIDs on both a filtered and a full unfiltered run.
// That matters specifically for these bundles, because each statically
// embeds its own copy of `SnapshotKitTesting`, whose capture state is
// module-global and therefore per copy (`_swizzleDepth` and the
// override globals in `SafeAreaInsetsSwizzling.swift`,
// `SnapshotCaptureLock`, the `UIView` category). Co-loaded into one
// process those copies would fight over the single `UIView` method
// exchange; in separate processes each is genuinely process-wide, as
// its docs claim. If a future toolchain ever starts sharing one host
// process across bundles, re-measure before adding another.
//
// Each lists only `SnapshotKitTesting` in `extraPackageProducts` — the
// test-only capture pipeline, which no shipping module links. Nothing
// else is re-listed: whatever the module already carries arrives
// transitively, per the double-linking rule in the root AGENTS.md.
// `SnapshotCaptureFlagProbeTests` (in WhereUISnapshotTests) pins the
// pipeline's `traitOverrides` write reaching a WhereUI-defined view's
// `\.isCapturingSnapshot` read, so a toolchain that stopped coalescing
// the two SnapshotKit copies in that bundle would fail loudly rather
// than silently returning defaults.
unitTests(
name: "WhereUISnapshotTests",
bundleIdSuffix: "whereui.snapshot",
productDependency: "WhereUI",
sources: ["Where/WhereUI/SnapshotTests/**"],
extraPackageProducts: ["SnapshotKitTesting"],
environmentVariables: snapshotEnvironment,
),
unitTests(
name: "FlyoverSnapshotTests",
bundleIdSuffix: "flyover.snapshot",
productDependency: "Flyover",
sources: ["Shared/Flyover/SnapshotTests/**"],
extraPackageProducts: ["SnapshotKitTesting"],
environmentVariables: snapshotEnvironment,
),
unitTests(
name: "PeriscopeToolsSnapshotTests",
bundleIdSuffix: "periscopetools.snapshot",
productDependency: "PeriscopeTools",
sources: ["Shared/Periscope/PeriscopeTools/SnapshotTests/**"],
extraPackageProducts: ["SnapshotKitTesting"],
environmentVariables: snapshotEnvironment,
),
unitTests(
name: "InspectorSnapshotTests",
bundleIdSuffix: "inspector.snapshot",
productDependency: "Inspector",
sources: ["Shared/Inspector/SnapshotTests/**"],
extraPackageProducts: ["SnapshotKitTesting"],
environmentVariables: snapshotEnvironment,
),
.target(
name: "BroadwayCatalog",
destinations: destinations,
product: .app,
bundleId: "com.stuff.broadway.catalog",
deploymentTargets: deployment,
infoPlist: .extendingDefault(with: [
"UILaunchScreen": .dictionary([:]),
"UIApplicationSupportsIndirectInputEvents": .boolean(true),
]),
sources: ["Shared/Broadway/BroadwayCatalog/Sources/**"],
resources: ["Shared/Broadway/BroadwayCatalog/Resources/**"],
dependencies: [
.package(product: "BroadwayUI"),
.package(product: "SFSafeSymbols"),
],
),
.target(
name: "BroadwayCatalogTests",
destinations: destinations,
product: .unitTests,
bundleId: "com.stuff.broadway.catalog.tests",
deploymentTargets: deployment,
sources: ["Shared/Broadway/BroadwayCatalog/Tests/**"],
dependencies: [
.target(name: "BroadwayCatalog"),
.package(product: "TestHostSupport"),
],
),
unitTests(
name: "BroadwayCoreTests",
bundleIdSuffix: "broadway.core",
productDependency: "BroadwayCore",
sources: ["Shared/Broadway/BroadwayCore/Tests/**"],
),
unitTests(
name: "BroadwayUITests",
bundleIdSuffix: "broadway.ui",
productDependency: "BroadwayUI",
sources: ["Shared/Broadway/BroadwayUI/Tests/**"],
extraPackageProducts: [
"BroadwayCore",
],
),
],
// Tuist's autogeneration doesn't emit working standalone test actions for
// these unit-test bundles (only the aggregate `Stuff-Workspace` scheme
// runs them), so declare them explicitly. This lets `tuist test
// WhereCoreTests` / `tuist test WhereTests` / `tuist test WhereUITests`
// target a single bundle without building the whole workspace.
schemes: whereAudienceSchemes + [
// App target schemes are normally autogenerated, but declare the
// RegionViewer one explicitly so `tuist build RegionViewer` (and a
// Run that launches the Catalyst app) is always available.
.scheme(
name: "RegionViewer",
shared: true,
buildAction: .buildAction(targets: ["RegionViewer"]),
runAction: .runAction(executable: "RegionViewer"),
),
.scheme(
name: "Ledger",
shared: true,
buildAction: .buildAction(targets: ["Ledger"]),
runAction: .runAction(executable: "Ledger"),
),
// The workspace mixes iOS targets and the macOS-only Ledger targets, so
// CI drives two platform-scoped schemes — no single xcodebuild
// destination can build both. The macOS-only Ledger scheme runs in its
// own `test-macos` CI job (see .github/workflows/ci.yml).
.scheme(
name: "Ledger-macOS-Tests",
shared: true,
buildAction: .buildAction(targets: ["Ledger", "LedgerCoreTests"]),
testAction: .targets(["LedgerCoreTests"]),
),
// CI scheme. Rather than the autogenerated `Stuff-Workspace` scheme,
// CI drives this explicit aggregate of every buildable/testable target
// (see .github/workflows/ci.yml).
.scheme(
name: "Stuff-iOS-Tests",
shared: true,
buildAction: .buildAction(targets: [
"Where",
"RegionViewer",
"StuffTestHost",
"CreditKitTests",
"WhereCrashReportingTests",
"LifecycleKitTests",
"LifecycleKitUITests",
"JournalKitTests",
"PeriscopeCoreTests",
"PeriscopeUITests",
"PeriscopeToolsTests",
"InspectorTests",
"FlyoverTests",
"SnapshotKitTests",
"SnapshotKitTestingTests",
"RegionKitTests",
"WhereCoreTests",
"WhereTests",
"WhereUITests",
"WhereIntentsTests",
"BroadwayCatalog",
"BroadwayCoreTests",
"BroadwayUITests",
"BroadwayCatalogTests",
]),
testAction: .targets(
[
"CreditKitTests",
"WhereCrashReportingTests",
"LifecycleKitTests",
"LifecycleKitUITests",
"JournalKitTests",
"PeriscopeCoreTests",
"PeriscopeUITests",
"PeriscopeToolsTests",
"InspectorTests",
"FlyoverTests",
"SnapshotKitTests",
"SnapshotKitTestingTests",
"RegionKitTests",
"WhereCoreTests",
"WhereTests",
"WhereUITests",
"WhereIntentsTests",
"BroadwayCoreTests",
"BroadwayUITests",
"BroadwayCatalogTests",
],
arguments: .arguments(environmentVariables: packageResourceEnvironment),
),
),
testScheme(name: "LedgerCoreTests"),
testScheme(name: "CreditKitTests"),
testScheme(name: "WhereCrashReportingTests"),
testScheme(name: "LifecycleKitTests"),
testScheme(name: "LifecycleKitUITests"),
testScheme(name: "JournalKitTests"),
testScheme(name: "PeriscopeCoreTests"),
testScheme(name: "PeriscopeUITests"),
testScheme(name: "PeriscopeToolsTests"),
testScheme(name: "InspectorTests"),
testScheme(name: "FlyoverTests"),
testScheme(name: "SnapshotKitTests"),
testScheme(name: "SnapshotKitTestingTests"),
testScheme(name: "RegionKitTests"),
testScheme(name: "WhereCoreTests"),
testScheme(name: "WhereTests"),
testScheme(name: "WhereUITests"),
// Every image-snapshot bundle, in one scheme, so CI runs them all in
// the single `snapshot` job. A new module's image suite gets its own
// `*SnapshotTests` target above and joins the lists here — it must not
// get a scheme (or CI job) of its own.
//
// The environment pins (see `snapshotEnvironment`) are why this scheme
// exists rather than folding the bundles into `Stuff-iOS-Tests`. They
// are also set on each snapshot target, so the per-target schemes
// Tuist autogenerates are pinned too.
.scheme(
name: "StuffSnapshotTests",
shared: true,
buildAction: .buildAction(targets: [
"WhereUISnapshotTests",
"FlyoverSnapshotTests",
"PeriscopeToolsSnapshotTests",
"InspectorSnapshotTests",
]),
testAction: .targets(
[
"WhereUISnapshotTests",
"FlyoverSnapshotTests",
"PeriscopeToolsSnapshotTests",
"InspectorSnapshotTests",
],
arguments: .arguments(environmentVariables: snapshotEnvironment),
),
),
testScheme(name: "WhereIntentsTests"),
testScheme(name: "BroadwayCoreTests"),
testScheme(name: "BroadwayUITests"),
testScheme(name: "BroadwayCatalogTests"),
],
)