nishikaze 0.1.0

Zephyr build system companion.
Documentation
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
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
local t = require('spec.zync_test')

local function reload_zync()
    package.loaded['zync'] = nil
    package.loaded['zync.api'] = nil
    package.loaded['zync.api.commands.commands'] = nil
    package.loaded['zync.api.commands.Command'] = nil
    package.loaded['zync.api.configurator'] = nil
    package.loaded['zync.api.configurator.sandbox'] = nil
    package.loaded['argparse'] = nil
    return require('zync')
end

local function stub_manager_handlers()
    local manager = require('zync.api.manager')
    local calls = {}
    local stubs = {}
    local handlers = {
        init = 'init',
        conf = 'configure',
        build = 'build',
        flash = 'flash',
        run = 'run',
        clean = 'clean',
        boards = 'boards',
        runners = 'runners',
    }

    for command, handler in pairs(handlers) do
        calls[command] = {}
        stubs[handler] = t.stub(manager, handler, function(config)
            table.insert(calls[command], config)
        end)
    end

    return stubs, calls
end

local function stub_configurator_config(config)
    local configurator = require('zync.api.configurator')
    return t.stub(configurator, 'init_conf', function()
        return config
    end)
end

local function stub_lfs_symlinkattributes(value)
    return t.stub(t.lfs, 'symlinkattributes', function(_)
        return value
    end)
end

local function stub_lfs_attributes(value)
    return t.stub(t.lfs, 'attributes', function(_)
        return value
    end)
end

local function revert_stubs(stubs)
    for _, stub in pairs(stubs) do
        stub:revert()
    end
end

local function get_upvalue(fn, name)
    local i = 1
    while true do
        local up_name, up_val = debug.getupvalue(fn, i)
        if not up_name then
            return nil
        end
        if up_name == name then
            return up_val
        end
        i = i + 1
    end
end

describe('zync top-level API', function()
    local print_stub

    before_each(function()
        t.helpers.setup()
        print_stub = t.stub(_G, 'print')
    end)

    after_each(function()
        print_stub:revert()
        t.helpers.teardown()
    end)

    it('loads zync without crashing', function()
        local z = reload_zync()
        t.assert.is_truthy(z)
        t.assert.is_table(z.api)
    end)

    it('delegates zync.run to api.run', function()
        local z = reload_zync()
        local run_stub = t.stub(z.api, 'run', function() end)

        z.run()

        t.assert.stub(run_stub).was.called()
        run_stub:revert()
    end)

    it('prints version and exits when requested', function()
        local z = reload_zync()
        local og_args = z.api.args
        z.api.args = { version = true }
        t.exit_handler = function()
            error('exit')
        end

        local ok, err = pcall(function()
            z.api.version()
        end)

        t.assert.is_false(ok)
        t.assert.is_truthy(err:match('exit'))
        t.assert.stub(print_stub).was_called_with(_G.zync.CMD .. ' v' .. _G.zync.VERSION)

        z.api.args = og_args
    end)

    it('runs default build command when no command is selected', function()
        local stubs, calls = stub_manager_handlers()
        local z = reload_zync()

        z.api.args = {}
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        t.assert.equal(1, #calls.build)
        revert_stubs(stubs)
    end)

    it('dispatches command and merges cli args into config', function()
        t.helpers.write_file('zconf.lua', "return { board = 'conf_board', runner = 'conf_runner' }")

        local stubs, calls = stub_manager_handlers()
        local z = reload_zync()

        z.api.args = { build = true, board = 'cli_board' }
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        t.assert.equal(1, #calls.build)
        t.assert.equal('cli_board', calls.build[1].board)
        t.assert.equal('conf_runner', calls.build[1].runner)
        t.assert.equal(t.tmp, calls.build[1].cwd)

        revert_stubs(stubs)
    end)

    it('parses global profile option and applies it to config', function()
        t.helpers.write_file(
            'zconf.lua',
            [[
        return {
            profiles = {
                prod = { board = 'conf_board', runner = 'conf_runner' },
                sim = { board = 'sim_board', runner = 'sim_runner' },
            },
            default_profile = 'prod',
        }
        ]]
        )

        local og_arg = _G.arg
        _G.arg = { '--profile', 'sim' }

        local z = reload_zync()

        t.assert.equals('sim_board', z.api.config.board)
        t.assert.equals('sim_runner', z.api.config.runner)
        t.assert.equals('sim', z.api.config.profile)

        _G.arg = og_arg
    end)

    it('ignores --profile when --all is provided', function()
        t.helpers.write_file(
            'zconf.lua',
            [[
        return {
            profiles = {
                prod = { board = 'conf_board', runner = 'conf_runner' },
                sim = { board = 'sim_board', runner = 'sim_runner' },
            },
            default_profile = 'prod',
        }
        ]]
        )

        local og_arg = _G.arg
        _G.arg = { '--all', '--profile', 'sim' }

        local z = reload_zync()

        t.assert.equals('prod', z.api.config.profile)

        _G.arg = og_arg
    end)

    it('runs profile-aware commands for all profiles when --all is set', function()
        t.helpers.write_file(
            'zconf.lua',
            [[
        return {
            profiles = {
                sim = { board = 'sim_board', runner = 'sim_runner' },
                prod = { board = 'prod_board', runner = 'prod_runner' },
            },
            default_profile = 'sim',
        }
        ]]
        )

        local stubs, calls = stub_manager_handlers()
        local z = reload_zync()

        z.api.args = { build = true, all = true }
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        t.assert.equal(2, #calls.build)
        t.assert.equals('sim', calls.build[1].profile)
        t.assert.equals('prod', calls.build[2].profile)

        revert_stubs(stubs)
    end)

    it('returns nil for helper profile resolution when config missing', function()
        local z = reload_zync()

        local ensure = get_upvalue(z.api.run, 'ensure_compile_commands_link')
        t.assert.equals('function', type(ensure))

        local resolve_default = get_upvalue(ensure, 'resolve_default_profile')
        t.assert.equals('function', type(resolve_default))
        t.assert.is_nil(resolve_default(nil))
        t.assert.is_nil(resolve_default({}))

        local resolve_profiles = get_upvalue(z.api.run, 'resolve_profiles')
        t.assert.equals('function', type(resolve_profiles))
        t.assert.is_nil(resolve_profiles(nil))
        t.assert.is_nil(resolve_profiles({}))
    end)

    it('skips compile_commands link when config is invalid', function()
        local stubs = stub_manager_handlers()
        local z = reload_zync()
        z.api.config = {
            invalid = true,
            profiles = { prod = {} },
            project_dir = t.tmp,
        }

        local called = false
        local link_stub = t.stub(t.lfs, 'symlinkattributes', function(_)
            called = true
            return nil
        end)

        z.api.args = { build = true }
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        t.assert.is_false(called)

        link_stub:revert()
        revert_stubs(stubs)
    end)

    it('uses ln -sf fallback when lfs.link is unavailable', function()
        local stubs = stub_manager_handlers()
        local z = reload_zync()
        z.api.config = {
            profiles = { prod = {} },
            default_profile = 'prod',
            project_dir = t.tmp,
        }

        local exec_calls = {}
        local exec_stub = t.stub(_G.os, 'execute', function(cmd)
            table.insert(exec_calls, cmd)
            return true
        end)

        local link_stub = t.stub(t.lfs, 'symlinkattributes', function(_)
            return nil
        end)

        local og_link = t.lfs.link
        t.lfs.link = nil

        z.api.args = { build = true }
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        local target = t.tmp .. '/build/prod/compile_commands.json'
        local link_path = t.tmp .. '/build/compile_commands.json'
        local expected = 'ln -sf ' .. target .. ' ' .. link_path
        local has_ln = false
        for _, call in ipairs(exec_calls) do
            if call == expected then
                has_ln = true
            end
        end
        t.assert.is_true(has_ln)

        t.lfs.link = og_link
        link_stub:revert()
        exec_stub:revert()
        revert_stubs(stubs)
    end)

    it('skips compile_commands link when default profile cannot be resolved', function()
        local stubs = stub_manager_handlers()
        local z = reload_zync()
        z.api.config = {
            profiles = {},
            project_dir = t.tmp,
        }

        local exec_calls = {}
        local exec_stub = t.stub(_G.os, 'execute', function(cmd)
            table.insert(exec_calls, cmd)
            return true
        end)

        z.api.args = { build = true }
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        t.assert.equals(0, #exec_calls)

        exec_stub:revert()
        revert_stubs(stubs)
    end)

    it('runs --all profiles in alphabetical order when profile_order missing', function()
        local manager = require('zync.api.manager')
        local build_calls = {}
        local build_stub = t.stub(manager, 'build', function(config)
            table.insert(build_calls, config.profile)
            return 0
        end)

        local z = reload_zync()
        z.api.config = {
            profiles = { zeta = {}, alpha = {} },
            project_dir = t.tmp,
        }

        local configurator = require('zync.api.configurator')
        local init_stub = t.stub(configurator, 'init_conf', function(_, profile)
            return { profile = profile, profiles = z.api.config.profiles }
        end)

        local link_stub = t.stub(t.lfs, 'symlinkattributes', function(_)
            return { mode = 'link' }
        end)

        z.api.args = { build = true, all = true }
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        t.assert.equals('alpha', build_calls[1])
        t.assert.equals('zeta', build_calls[2])

        link_stub:revert()
        init_stub:revert()
        build_stub:revert()
    end)

    it('exits early when a --all profile run fails', function()
        local manager = require('zync.api.manager')
        local build_calls = {}
        local build_stub = t.stub(manager, 'build', function(config)
            table.insert(build_calls, config.profile)
            return 2
        end)

        local z = reload_zync()
        z.api.config = {
            profiles = { sim = {}, prod = {} },
            profile_order = { 'sim', 'prod' },
            project_dir = t.tmp,
        }

        local configurator = require('zync.api.configurator')
        local init_stub = t.stub(configurator, 'init_conf', function(_, profile)
            return { profile = profile, profiles = z.api.config.profiles }
        end)

        local link_stub = t.stub(t.lfs, 'symlinkattributes', function(_)
            return { mode = 'link' }
        end)

        z.api.args = { build = true, all = true }
        t.exit_handler = function(code)
            error(code)
        end

        local ok, err = pcall(function()
            z.api.run()
        end)

        t.assert.is_false(ok)
        t.assert.equals('2', tostring(err))
        t.assert.equals(1, #build_calls)
        t.assert.equals('sim', build_calls[1])

        link_stub:revert()
        init_stub:revert()
        build_stub:revert()
    end)

    it('logs active profile after command log when selected', function()
        t.helpers.write_file(
            'zconf.lua',
            [[
        return {
            profiles = {
                prod = { board = 'conf_board', runner = 'conf_runner' },
                sim = { board = 'sim_board', runner = 'sim_runner' },
            },
            default_profile = 'prod',
        }
        ]]
        )

        local og_arg = _G.arg
        _G.arg = { '--profile', 'sim' }
        _G.ZYNC_LOGS = true

        local stubs = stub_manager_handlers()
        local z = reload_zync()

        z.api.args = { build = true }
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        local calls = print_stub.calls
        local function find_call(msg)
            for i, call in ipairs(calls) do
                if call.vals and call.vals[1] == msg then
                    return i
                end
            end
        end

        local cmd_idx = find_call("zync: Running command 'build'")
        if not cmd_idx then
            cmd_idx = find_call("zync: No command specified, defaulting to 'build'")
        end
        local prof_idx = find_call("zync: Using profile 'sim'")
        t.assert.is_truthy(prof_idx)
        if cmd_idx then
            t.assert.is_true(cmd_idx < prof_idx)
        end

        revert_stubs(stubs)
        _G.arg = og_arg
    end)

    it('logs when profiles are not configured after command log', function()
        t.helpers.write_file('zconf.lua', "return { board = 'conf_board', runner = 'conf_runner' }")

        local og_arg = _G.arg
        _G.arg = {}
        _G.ZYNC_LOGS = true

        local stubs = stub_manager_handlers()
        local z = reload_zync()

        z.api.args = { build = true }
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        local calls = print_stub.calls
        local function find_call(msg)
            for i, call in ipairs(calls) do
                if call.vals and call.vals[1] == msg then
                    return i
                end
            end
        end

        local cmd_idx = find_call("zync: Running command 'build'")
        if not cmd_idx then
            cmd_idx = find_call("zync: No command specified, defaulting to 'build'")
        end
        local prof_idx = find_call('zync: Profiles not configured - running in profile-less mode')
        t.assert.is_truthy(prof_idx)
        if cmd_idx then
            t.assert.is_true(cmd_idx < prof_idx)
        end

        revert_stubs(stubs)
        _G.arg = og_arg
    end)

    it('does not log profile status for init command', function()
        t.helpers.write_file(
            'zconf.lua',
            [[
        return {
            profiles = {
                prod = { board = 'conf_board', runner = 'conf_runner' },
            },
            default_profile = 'prod',
        }
        ]]
        )

        local og_arg = _G.arg
        _G.arg = { '--profile', 'prod' }
        _G.ZYNC_LOGS = true

        local stubs = stub_manager_handlers()
        local z = reload_zync()

        z.api.args = { init = true }
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        local calls = print_stub.calls
        local function has_call(msg)
            for _, call in ipairs(calls) do
                if call.vals and call.vals[1] == msg then
                    return true
                end
            end
            return false
        end

        t.assert.is_false(has_call("zync: Using profile 'prod'"))
        t.assert.is_false(has_call('zync: Profiles not configured - running in profile-less mode'))

        revert_stubs(stubs)
        _G.arg = og_arg
    end)

    it('creates compile_commands.json symlink for default profile', function()
        t.helpers.write_file(
            'zconf.lua',
            [[
        return {
            profiles = {
                prod = { board = 'conf_board', runner = 'conf_runner' },
                sim = { board = 'sim_board', runner = 'sim_runner' },
            },
            default_profile = 'prod',
        }
        ]]
        )

        os.execute('mkdir -p build/prod')
        t.helpers.write_file('build/prod/compile_commands.json', '[]')

        local manager = require('zync.api.manager')
        local build_stub = t.stub(manager, 'build', function(_) end)
        local z = reload_zync()

        z.api.args = { build = true }
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        local link_attr = t.lfs.symlinkattributes('build/compile_commands.json')
        t.assert.is_truthy(link_attr)
        t.assert.equal('link', link_attr.mode)
        t.assert.equal('[]', t.helpers.read_file('build/compile_commands.json'))

        build_stub:revert()
    end)

    it('keeps existing compile_commands.json symlink intact', function()
        t.helpers.write_file(
            'zconf.lua',
            [[
        return {
            profiles = {
                prod = { board = 'conf_board', runner = 'conf_runner' },
                sim = { board = 'sim_board', runner = 'sim_runner' },
            },
            default_profile = 'prod',
        }
        ]]
        )

        os.execute('mkdir -p build/prod')
        t.helpers.write_file('build/prod/compile_commands.json', '[1]')
        os.execute('ln -s prod/compile_commands.json build/compile_commands.json')

        local manager = require('zync.api.manager')
        local build_stub = t.stub(manager, 'build', function(_) end)
        local z = reload_zync()

        z.api.args = { build = true }
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        local link_attr = t.lfs.symlinkattributes('build/compile_commands.json')
        t.assert.is_truthy(link_attr)
        t.assert.equal('link', link_attr.mode)
        t.assert.equal('[1]', t.helpers.read_file('build/compile_commands.json'))

        build_stub:revert()
    end)

    it('creates compile_commands.json link for first declared profile when default_profile missing', function()
        t.helpers.write_file(
            'zconf.lua',
            [[
        return {
            profiles = {
                sim = { board = 'sim_board', runner = 'qemu' },
                prod = { board = 'prod_board', runner = 'openocd' },
            },
        }
        ]]
        )

        os.execute('mkdir -p build/sim build/prod')
        t.helpers.write_file('build/sim/compile_commands.json', '[sim]')
        t.helpers.write_file('build/prod/compile_commands.json', '[prod]')

        local manager = require('zync.api.manager')
        local build_stub = t.stub(manager, 'build', function(_) end)
        local z = reload_zync()

        z.api.args = { build = true }
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        local link_attr = t.lfs.symlinkattributes('build/compile_commands.json')
        t.assert.is_truthy(link_attr)
        t.assert.equal('link', link_attr.mode)
        t.assert.equal('[sim]', t.helpers.read_file('build/compile_commands.json'))

        build_stub:revert()
    end)

    it('replaces existing compile_commands.json file with symlink', function()
        t.helpers.write_file(
            'zconf.lua',
            [[
        return {
            profiles = {
                prod = { board = 'conf_board', runner = 'conf_runner' },
            },
            default_profile = 'prod',
        }
        ]]
        )

        os.execute('mkdir -p build/prod')
        t.helpers.write_file('build/prod/compile_commands.json', '[prod]')
        t.helpers.write_file('build/compile_commands.json', '[stale]')

        local manager = require('zync.api.manager')
        local build_stub = t.stub(manager, 'build', function(_) end)
        local z = reload_zync()

        z.api.args = { build = true }
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        local link_attr = t.lfs.symlinkattributes('build/compile_commands.json')
        t.assert.is_truthy(link_attr)
        t.assert.equal('link', link_attr.mode)
        t.assert.equal('[prod]', t.helpers.read_file('build/compile_commands.json'))

        build_stub:revert()
    end)

    it('does not create compile_commands.json symlink when profiles are not configured', function()
        t.helpers.write_file('zconf.lua', "return { board = 'conf_board', runner = 'conf_runner' }")

        local manager = require('zync.api.manager')
        local build_stub = t.stub(manager, 'build', function(_) end)
        local z = reload_zync()

        z.api.args = { build = true }
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        t.assert.is_nil(t.lfs.symlinkattributes('build/compile_commands.json'))

        build_stub:revert()
    end)

    it('does not create compile_commands.json symlink for excluded commands', function()
        t.helpers.write_file(
            'zconf.lua',
            [[
        return {
            profiles = {
                prod = { board = 'conf_board', runner = 'conf_runner' },
            },
            default_profile = 'prod',
        }
        ]]
        )

        local manager = require('zync.api.manager')
        local stubs = {
            init = t.stub(manager, 'init', function(_) end),
            boards = t.stub(manager, 'boards', function(_) end),
            runners = t.stub(manager, 'runners', function(_) end),
            profiles = t.stub(manager, 'profiles', function(_) end),
        }

        local cases = {
            { name = 'init', args = { init = true } },
            { name = 'boards', args = { boards = true } },
            { name = 'runners', args = { runners = true } },
            { name = 'profiles', args = { profiles = true } },
        }

        for _, case in ipairs(cases) do
            local z = reload_zync()
            z.api.args = case.args
            t.exit_handler = function()
                error('exit')
            end
            pcall(function()
                z.api.run()
            end)

            t.assert.is_nil(t.lfs.symlinkattributes('build/compile_commands.json'))
        end

        for _, stub in pairs(stubs) do
            stub:revert()
        end
    end)

    it('skips compile_commands link when config is invalid', function()
        local manager = require('zync.api.manager')
        local build_stub = t.stub(manager, 'build', function(_) end)
        t.helpers.write_file('zconf.lua', "return { board = os.getenv('ZEPHYR_BASE') }")

        local ok, err = pcall(function()
            reload_zync()
        end)

        t.assert.is_false(ok)
        t.assert.is_truthy(tostring(err):match("access to global 'os' is not allowed"))

        t.assert.is_nil(t.lfs.symlinkattributes('build/compile_commands.json'))

        build_stub:revert()
    end)

    it('skips compile_commands link when no profiles are configured', function()
        local manager = require('zync.api.manager')
        local build_stub = t.stub(manager, 'build', function(_) end)
        t.helpers.write_file('zconf.lua', "return { board = 'conf_board', runner = 'conf_runner' }")

        local z = reload_zync()
        z.api.args = { build = true }
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        t.assert.is_nil(t.lfs.symlinkattributes('build/compile_commands.json'))

        build_stub:revert()
    end)

    it('falls back to alphabetical profile when no profile_order available', function()
        os.execute('rm -rf build')
        t.helpers.write_file(
            'zconf.lua',
            [[
        return {
            profiles = {
                zeta = { board = 'zeta_board', runner = 'openocd' },
                alpha = { board = 'alpha_board', runner = 'openocd' },
            },
        }
        ]]
        )
        local manager = require('zync.api.manager')
        local build_stub = t.stub(manager, 'build', function(_) end)
        local link_calls = {}
        local link_stub = t.stub(t.lfs, 'link', function(target, link_path, _)
            table.insert(link_calls, { target = target, link_path = link_path })
            return true
        end)

        local z = reload_zync()
        z.api.config.profile_order = {}
        z.api.args = { build = true }
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        t.assert.is_true(#link_calls > 0)
        t.assert.is_truthy(link_calls[1].target:match('build/alpha/compile_commands.json$'))

        build_stub:revert()
        link_stub:revert()
    end)

    it('falls back to available profile when profile_order is invalid', function()
        local manager = require('zync.api.manager')
        local build_stub = t.stub(manager, 'build', function(_) end)
        t.helpers.write_file(
            'zconf.lua',
            [[
        return {
            profiles = {
                sim = { board = 'conf_board', runner = 'conf_runner' },
            },
        }
        ]]
        )
        os.execute('mkdir -p build/sim')
        t.helpers.write_file('build/sim/compile_commands.json', '[sim]')

        local z = reload_zync()
        z.api.config.profile_order = { 'missing' }
        z.api.config.default_profile = ''
        z.api.args = { build = true }
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        t.assert.equal('[sim]', t.helpers.read_file('build/compile_commands.json'))

        build_stub:revert()
    end)

    it('returns early when compile_commands path is a non-link non-file', function()
        os.execute('rm -rf build')
        local manager = require('zync.api.manager')
        local build_stub = t.stub(manager, 'build', function(_) end)
        t.helpers.write_file(
            'zconf.lua',
            [[
        return {
            profiles = {
                sim = { board = 'conf_board', runner = 'conf_runner' },
            },
            default_profile = 'sim',
        }
        ]]
        )
        local link_stub = stub_lfs_symlinkattributes({ mode = 'directory' })
        local link_call_stub = t.stub(t.lfs, 'link', function(_, _, _)
            return true
        end)
        local os_execute_stub = t.stub(_G.os, 'execute')

        local z = reload_zync()
        z.api.args = { build = true }
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        t.assert.stub(link_call_stub).was_not.called()

        link_stub:revert()
        link_call_stub:revert()
        os_execute_stub:revert()
        build_stub:revert()
    end)

    it('uses lfs.attributes branch when symlinkattributes is unavailable', function()
        os.execute('rm -rf build')
        local manager = require('zync.api.manager')
        local build_stub = t.stub(manager, 'build', function(_) end)
        t.helpers.write_file(
            'zconf.lua',
            [[
        return {
            profiles = {
                sim = { board = 'conf_board', runner = 'conf_runner' },
            },
            default_profile = 'sim',
        }
        ]]
        )
        local attr_stub = stub_lfs_attributes({ mode = 'file' })
        local og_symlinkattributes = t.lfs.symlinkattributes
        t.lfs.symlinkattributes = nil
        local link_call_stub = t.stub(t.lfs, 'link', function(_, _, _)
            return true
        end)

        local z = reload_zync()
        z.api.args = { build = true }
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        t.assert.stub(link_call_stub).was_not.called()

        build_stub:revert()
        if attr_stub then
            attr_stub:revert()
        end
        t.lfs.symlinkattributes = og_symlinkattributes
        link_call_stub:revert()
    end)

    it('falls back to ln -sf when lfs.link fails', function()
        os.execute('rm -rf build')
        local manager = require('zync.api.manager')
        local build_stub = t.stub(manager, 'build', function(_) end)
        t.helpers.write_file(
            'zconf.lua',
            [[
        return {
            profiles = {
                sim = { board = 'conf_board', runner = 'conf_runner' },
            },
            default_profile = 'sim',
        }
        ]]
        )

        os.execute('mkdir -p build/sim')
        t.helpers.write_file('build/sim/compile_commands.json', '[sim]')

        local link_stub = t.stub(t.lfs, 'link', function(_, _, _)
            return false
        end)
        local os_execute_stub = t.stub(_G.os, 'execute')

        local z = reload_zync()
        z.api.args = { build = true }
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        local found_ln = false
        for _, call in ipairs(os_execute_stub.calls) do
            if
                call.vals
                and type(call.vals[1]) == 'string'
                and call.vals[1]:match('^ln %-sf ')
                and call.vals[1]:match('compile_commands%.json')
            then
                found_ln = true
                break
            end
        end
        t.assert.is_true(found_ln)

        os_execute_stub:revert()
        link_stub:revert()
        build_stub:revert()
    end)

    it('uses cwd when project_dir is missing for compile_commands link creation', function()
        os.execute('rm -rf build')
        t.helpers.write_file(
            'zconf.lua',
            [[
        return {
            profiles = {
                sim = { board = 'conf_board', runner = 'conf_runner' },
            },
            default_profile = 'sim',
        }
        ]]
        )

        os.execute('mkdir -p build/sim')
        t.helpers.write_file('build/sim/compile_commands.json', '[sim]')

        local manager = require('zync.api.manager')
        local build_stub = t.stub(manager, 'build', function(_) end)
        local link_calls = {}
        local link_stub = t.stub(t.lfs, 'link', function(target, link_path, _)
            table.insert(link_calls, { target = target, link_path = link_path })
            return true
        end)

        local z = reload_zync()
        z.api.config.project_dir = ''
        z.api.args = { build = true }
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        t.assert.is_true(#link_calls > 0)
        t.assert.is_truthy(link_calls[1].target:match(t.tmp .. '/build/sim/compile_commands.json$'))

        build_stub:revert()
        link_stub:revert()
    end)

    it('removes build dir for clean command in profile-less projects', function()
        t.helpers.write_file('zconf.lua', "return { board = 'conf_board', runner = 'conf_runner' }")
        os.execute('mkdir -p build/subdir')
        t.helpers.write_file('build/subdir/marker.txt', 'keep')

        local z = reload_zync()
        z.api.args = { clean = true }
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        t.helpers.dir_exists('build', false)
    end)

    it('removes build dir for clean command in profile projects', function()
        t.helpers.write_file(
            'zconf.lua',
            [[
        return {
            profiles = {
                prod = { board = 'conf_board', runner = 'conf_runner' },
                sim = { board = 'sim_board', runner = 'sim_runner' },
            },
            default_profile = 'prod',
        }
        ]]
        )

        os.execute('mkdir -p build/prod build/sim')
        t.helpers.write_file('build/prod/marker.txt', 'prod')
        t.helpers.write_file('build/sim/marker.txt', 'sim')

        local z = reload_zync()
        z.api.args = { clean = true }
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        t.helpers.dir_exists('build', false)
    end)

    it('keeps other profile build dirs intact when pre-clean is requested', function()
        t.helpers.write_file(
            'zconf.lua',
            [[
        return {
            profiles = {
                prod = { board = 'conf_board', runner = 'conf_runner' },
                sim = { board = 'sim_board', runner = 'sim_runner' },
            },
            default_profile = 'prod',
        }
        ]]
        )

        os.execute('mkdir -p build/prod build/sim')
        t.helpers.write_file('build/prod/marker.txt', 'prod')
        t.helpers.write_file('build/sim/marker.txt', 'sim')

        local manager = require('zync.api.manager')
        local build_stub = t.stub(manager, 'build', function(_) end)
        local z = reload_zync()

        z.api.args = { build = true, pre_clean = true }
        t.exit_handler = function()
            error('exit')
        end
        pcall(function()
            z.api.run()
        end)

        t.assert.is_nil(t.lfs.attributes('build/prod/marker.txt'))
        t.assert.is_truthy(t.lfs.attributes('build/sim/marker.txt'))

        build_stub:revert()
    end)

    it('dispatches all commands with parsed args', function()
        t.helpers.write_file('zconf.lua', "return { board = 'conf_board', runner = 'conf_runner' }")
        local stubs, calls = stub_manager_handlers()

        local cases = {
            { name = 'init', args = { init = true } },
            { name = 'conf', args = { conf = true, board = 'cli_board' } },
            { name = 'clean', args = { clean = true } },
            { name = 'build', args = { build = true, board = 'cli_board', runner = 'cli_runner' } },
            {
                name = 'flash',
                args = { flash = true, board = 'cli_board', runner = 'cli_runner', image = 2, list = true },
            },
            { name = 'run', args = { run = true, image = 1 } },
            { name = 'boards', args = { boards = true } },
            { name = 'runners', args = { runners = true } },
        }

        for _, case in ipairs(cases) do
            local z = reload_zync()
            z.api.args = case.args
            t.exit_handler = function()
                error('exit')
            end
            pcall(function()
                z.api.run()
            end)

            t.assert.equal(1, #calls[case.name])
            if case.args.board then
                t.assert.equal(case.args.board, calls[case.name][1].board)
            elseif case.name ~= 'boards' and case.name ~= 'runners' then
                t.assert.equal('conf_board', calls[case.name][1].board)
            end

            if case.args.runner then
                t.assert.equal(case.args.runner, calls[case.name][1].runner)
            elseif case.name ~= 'boards' and case.name ~= 'runners' then
                t.assert.equal('conf_runner', calls[case.name][1].runner)
            end

            if case.args.image then
                t.assert.equal(tonumber(case.args.image), calls[case.name][1].image)
            end

            if case.args.list then
                t.assert.is_true(calls[case.name][1].list)
            end

            calls[case.name] = {}
        end

        revert_stubs(stubs)
    end)

    it('exits with handler exit code', function()
        local manager = require('zync.api.manager')
        local build_stub = t.stub(manager, 'build', function(_)
            return 7
        end)
        local z = reload_zync()

        z.api.args = { build = true }
        t.exit_handler = function(code)
            error('exit:' .. tostring(code))
        end

        local ok, err = pcall(function()
            z.api.run()
        end)

        t.assert.is_false(ok)
        t.assert.is_truthy(err:match('exit:7'))

        build_stub:revert()
    end)

    it('runs clean before selected command when requested', function()
        local manager = require('zync.api.manager')
        local order = {}
        local clean_stub = t.stub(manager, 'clean', function(_)
            table.insert(order, 'clean')
        end)
        local build_stub = t.stub(manager, 'build', function(_)
            table.insert(order, 'build')
        end)
        local z = reload_zync()

        z.api.args = { build = true, pre_clean = true }
        t.exit_handler = function()
            error('exit')
        end

        pcall(function()
            z.api.run()
        end)

        t.helpers.assert_tables_equal(order, { 'clean', 'build' })

        clean_stub:revert()
        build_stub:revert()
    end)

    it('exits when pre-clean fails', function()
        local manager = require('zync.api.manager')
        local clean_stub = t.stub(manager, 'clean', function(_)
            return 5
        end)
        local build_stub = t.stub(manager, 'build', function(_)
            return 0
        end)
        local z = reload_zync()

        z.api.args = { build = true, pre_clean = true }
        t.exit_handler = function(code)
            error('exit:' .. tostring(code))
        end

        local ok, err = pcall(function()
            z.api.run()
        end)

        t.assert.is_false(ok)
        t.assert.is_truthy(err:match('exit:5'))

        clean_stub:revert()
        build_stub:revert()
    end)
end)