-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathcallbacks.jl
659 lines (573 loc) · 24.8 KB
/
callbacks.jl
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
import HTTP, JSON3
using Test
using Dash
@testset "callback! prevent_initial_call" begin
#============= default ===========#
app = dash()
app.layout = html_div() do
dcc_input(id = "my-id", value="initial value", type = "text"),
html_div(id = "my-div"),
html_div(id = "my-div2")
end
callback!(app, Output("my-div", "children"), Input("my-id", "value")) do value
return value
end
callback!(app, Output("my-div2", "children"), Input("my-id", "value")) do value
return value
end
handler = make_handler(app)
request = HTTP.Request("GET", "/_dash-dependencies")
resp = Dash.HttpHelpers.handle(handler, request)
deps = JSON3.read(String(resp.body))
@test deps[1].prevent_initial_call == false
@test deps[2].prevent_initial_call == false
#============= manual on single callback ===========#
app = dash()
app.layout = html_div() do
dcc_input(id = "my-id", value="initial value", type = "text"),
html_div(id = "my-div"),
html_div(id = "my-div2")
end
callback!(app, Output("my-div", "children"), Input("my-id", "value"), prevent_initial_call = true) do value
return value
end
callback!(app, Output("my-div2", "children"), Input("my-id", "value")) do value
return value
end
handler = make_handler(app)
request = HTTP.Request("GET", "/_dash-dependencies")
resp = Dash.HttpHelpers.handle(handler, request)
deps = JSON3.read(String(resp.body))
@test deps[1].prevent_initial_call == true
@test deps[2].prevent_initial_call == false
#============= prevent_initial_callbacks ===========#
app = dash(prevent_initial_callbacks = true)
app.layout = html_div() do
dcc_input(id = "my-id", value="initial value", type = "text"),
html_div(id = "my-div"),
html_div(id = "my-div2")
end
callback!(app, Output("my-div", "children"), Input("my-id", "value")) do value
return value
end
callback!(app, Output("my-div2", "children"), Input("my-id", "value")) do value
return value
end
handler = make_handler(app)
request = HTTP.Request("GET", "/_dash-dependencies")
resp = Dash.HttpHelpers.handle(handler, request)
deps = JSON3.read(String(resp.body))
@test deps[1].prevent_initial_call == true
@test deps[2].prevent_initial_call == true
#============= prevent_initial_callbacks + manual ===========#
app = dash(prevent_initial_callbacks = true)
app.layout = html_div() do
dcc_input(id = "my-id", value="initial value", type = "text"),
html_div(id = "my-div"),
html_div(id = "my-div2")
end
callback!(app, Output("my-div", "children"), Input("my-id", "value")) do value
return value
end
callback!(app, Output("my-div2", "children"), Input("my-id", "value"), prevent_initial_call = false) do value
return value
end
handler = make_handler(app)
request = HTTP.Request("GET", "/_dash-dependencies")
resp = Dash.HttpHelpers.handle(handler, request)
deps = JSON3.read(String(resp.body))
@test deps[1].prevent_initial_call == true
@test deps[2].prevent_initial_call == false
end
@testset "callback! single output" begin
app = dash()
app.layout = html_div() do
dcc_input(id = "my-id", value="initial value", type = "text"),
html_div(id = "my-div")
end
callback!(app, Output("my-div", "children"), Input("my-id", "value")) do value
return value
end
@test length(app.callbacks) == 1
@test haskey(app.callbacks, Symbol("my-div.children"))
@test app.callbacks[Symbol("my-div.children")].func("test") == "test"
handler = make_handler(app)
request = HTTP.Request("GET", "/_dash-dependencies")
resp = Dash.HttpHelpers.handle(handler, request)
deps = JSON3.read(String(resp.body))
@test length(deps) == 1
cb = deps[1]
@test cb.output == "my-div.children"
@test cb.inputs[1].id == "my-id"
@test cb.inputs[1].property == "value"
@test :clientside_function in keys(cb)
@test isnothing(cb.clientside_function)
handler = Dash.make_handler(app)
test_json = """{"output":"my-div.children","changedPropIds":["my-id.value"],"inputs":[{"id":"my-id","property":"value","value":"test"}]}"""
request = HTTP.Request("POST", "/_dash-update-component", [], Vector{UInt8}(test_json))
response = Dash.HttpHelpers.handle(handler, request)
@test response.status == 200
resp_obj = JSON3.read(String(response.body))
@test in(:multi, keys(resp_obj))
@test resp_obj.response.var"my-div".children == "test"
end
@testset "callback! multi output" begin
app = dash()
app.layout = html_div() do
dcc_input(id = "my-id", value="initial value", type = "text"),
html_div(id = "my-div"),
html_div(id = "my-div2")
end
callback!(app, [Output("my-div","children"), Output("my-div2","children")], Input("my-id","value"), State("my-id","type")) do value, state
return value, state
end
@test length(app.callbacks) == 1
@test haskey(app.callbacks, Symbol("..my-div.children...my-div2.children.."))
@test app.callbacks[Symbol("..my-div.children...my-div2.children..")].func("value", "state") == ("value", "state")
handler = Dash.make_handler(app)
test_json = """{"output":"..my-div.children...my-div2.children..","changedPropIds":["my-id.value"],"inputs":[{"id":"my-id","property":"value","value":"test"}], "state":[{"id":"my-id","property":"type","value":"state"}]}"""
request = HTTP.Request("POST", "/_dash-update-component", [], Vector{UInt8}(test_json))
response = Dash.HttpHelpers.handle(handler, request)
@test response.status == 200
resp_obj = JSON3.read(String(response.body))
@test in(:multi, keys(resp_obj))
@test resp_obj.response[Symbol("my-div")].children == "test"
@test resp_obj.response[Symbol("my-div2")].children == "state"
app = dash()
app.layout = html_div() do
dcc_input(id = "my-id", value="initial value", type = "text"),
html_div(id = "my-div"),
html_div(id = "my-div2")
end
callback!(app, [Output("my-div","children")], Input("my-id","value"), State("my-id","type")) do value, state
return (value,)
end
@test length(app.callbacks) == 1
@test haskey(app.callbacks, Symbol("..my-div.children.."))
@test app.callbacks[Symbol("..my-div.children..")].func("value", "state") == ("value", )
handler = Dash.make_handler(app)
test_json = """{"output":"..my-div.children..","changedPropIds":["my-id.value"],"inputs":[{"id":"my-id","property":"value","value":"test"}], "state":[{"id":"my-id","property":"type","value":"state"}]}"""
request = HTTP.Request("POST", "/_dash-update-component", [], Vector{UInt8}(test_json))
response = Dash.HttpHelpers.handle(handler, request)
@test response.status == 200
resp_obj = JSON3.read(String(response.body))
@test in(:multi, keys(resp_obj))
@test resp_obj.response[Symbol("my-div")].children == "test"
end
@testset "callback! multi output flat" begin
app = dash()
app.layout = html_div() do
dcc_input(id = "my-id", value="initial value", type = "text"),
dcc_input(id = "my-id2", value="initial value", type = "text"),
html_div(id = "my-div"),
html_div(id = "my-div2")
end
callback!(app, Output("my-div","children"), Output("my-div2","children"),
Input("my-id","value"), Input("my-id", "value"), State("my-id","type")) do value, value2, state
return value * value2, state
end
@test length(app.callbacks) == 1
@test haskey(app.callbacks, Symbol("..my-div.children...my-div2.children.."))
@test app.callbacks[Symbol("..my-div.children...my-div2.children..")].func("value", " value2", "state") == ("value value2", "state")
app = dash()
app.layout = html_div() do
dcc_input(id = "my-id", value="initial value", type = "text"),
dcc_input(id = "my-id2", value="initial value", type = "text"),
html_div(id = "my-div"),
html_div(id = "my-div2")
end
callback!(app, Output("my-div","children"),
Input("my-id","value"), Input("my-id", "value")) do value, value2
return value * value2
end
@test length(app.callbacks) == 1
@test haskey(app.callbacks, Symbol("my-div.children"))
@test app.callbacks[Symbol("my-div.children")].func("value", " value2") == "value value2"
end
@testset "callback! multi output same component id" begin
app = dash()
app.layout = html_div() do
dcc_input(id = "input-one",
placeholder = "text or number?")
dcc_input(id = "input-two",
placeholder = "")
end
callback!(app, Output("input-two","placeholder"), Output("input-two","type"),
Input("input-one","value")) do val1
if val1 in ["text", "number"]
return "$val1 ??", val1
end
return "invalid", nothing
end
@test length(app.callbacks) == 1
@test haskey(app.callbacks, Symbol("..input-two.placeholder...input-two.type.."))
@test app.callbacks[Symbol("..input-two.placeholder...input-two.type..")].func("text") == ("text ??", "text")
@test Dash.process_callback_call(app,
Symbol("..input-two.placeholder...input-two.type.."),
[(id = "input-two", property = "placeholder"),
(id = "input-two", property = "type")],
[(value = "text",)], [])[:response] == Dict("input-two" => Dict(:type => "text",
:placeholder => "text ??"))
end
@testset "callback! checks" begin
app = dash()
app.layout = html_div() do
dcc_input(id = "my-id", value="initial value", type = "text"),
html_div(id = "my-div"),
html_div(id = "my-div2")
end
callback!(app, Output("my-div","children"), Input("my-id","value")) do value
return value
end
callback!(app, Output("my-div2","children"), Input("my-id","value")) do value
return "v_$(value)"
end
@test length(app.callbacks) == 2
@test haskey(app.callbacks, Symbol("my-div.children"))
@test haskey(app.callbacks, Symbol("my-div2.children"))
@test app.callbacks[Symbol("my-div.children")].func("value") == "value"
@test app.callbacks[Symbol("my-div2.children")].func("value") == "v_value"
#empty input
@test_throws ErrorException callback!(app,
[Output("my-id","value"), Output("my-div","children")],
Input[]) do value
return "v_$(value)"
end
app = dash()
app.layout = html_div() do
dcc_input(id = "my-id", value="initial value", type = "text"),
dcc_input(id = "my-id2", value="initial value", type = "text"),
html_div(id = "my-div"),
html_div(id = "my-div2")
end
#empty output
@test_throws ErrorException callback!(app,
Input("my-id","value")) do value
return "v_$(value)"
end
#empty input
@test_throws ErrorException callback!(app,
Output("my-div2", "children")) do value
return "v_$(value)"
end
#wrong args order
@test_throws ErrorException callback!(app,
Input("my-id","value"), Output("my-div", "children")) do value
return "v_$(value)"
end
@test_throws ErrorException callback!(app,
Output("my-div2", "children"), Input("my-id","value"), Output("my-div", "children")) do value
return "v_$(value)"
end
@test_throws ErrorException callback!(app,
Output("my-div2", "children"), Input("my-id","value"), State("my-div", "children"), Input("my-id2", "value")) do value, value2
return "v_$(value)"
end
end
@testset "multiple callbacks targeting same output" begin
app = dash()
app.layout = html_div() do
dcc_input(id = "my-id", value="initial value", type = "text"),
dcc_input(id = "my-id2", value="initial value2", type = "text"),
html_div(id = "my-div")
end
callback!(app, Output("my-div","children"), Input("my-id","value")) do value
return value
end
testresult = @test_throws ErrorException callback!(app, Output("my-div","children"), Input("my-id2","value")) do value
return "v_$(value)"
end
@test testresult.value.msg == "Multiple callbacks can not target the same output. Offending output: my-div.children"
end
@testset "empty triggered params" begin
app = dash()
app.layout = html_div() do
dcc_input(id = "test-in", value="initial value", type = "text"),
html_div(id = "test-out")
end
callback!(app, Output("test-out", "children"), Input("test-out", "value")) do value
context = callback_context()
@test length(context.triggered) == 0
@test isempty(context.triggered)
return string(value)
end
@test length(app.callbacks) == 1
handler = Dash.make_handler(app)
request = (
output = "test-out.children",
changedPropIds = [],
inputs = [
(id = "test-in", property = "value", value = "test")
]
)
test_json = JSON3.write(request)
request = HTTP.Request("POST", "/_dash-update-component", [], Vector{UInt8}(test_json))
response = Dash.HttpHelpers.handle(handler, request)
@test response.status == 200
end
@testset "pattern-match" begin
app = dash()
app.layout = html_div() do
dcc_input(id = (type="test", index = 1), value="initial value", type = "text"),
dcc_input(id = (type="test", index = 2), value="initial value", type = "text"),
html_div(id = (type = "test-out", index = 1)),
html_div(id = (type = "test-out", index = 2))
end
changed_key = """{"index":2,"type":"test"}.value"""
callback!(app, Output((type = "test-out", index = MATCH), "children"), Input((type="test", index = MATCH), "value")) do value
context = callback_context()
@test haskey(context.inputs, changed_key)
@test context.inputs[changed_key] == "test"
@test length(context.triggered) == 1
@test context.triggered[1].prop_id == changed_key
@test context.triggered[1].value == "test"
return string(value)
end
@test length(app.callbacks) == 1
out_key = Symbol("""{"index":["MATCH"],"type":"test-out"}.children""")
@test haskey(app.callbacks, out_key)
handler = Dash.make_handler(app)
request = (
output = string(out_key),
outputs = (id = (index = 1, type="test_out"), property = "children"),
changedPropIds = [changed_key],
inputs = [
(id = (index=2, type="test"), property = "value", value = "test")
]
)
test_json = JSON3.write(request)
request = HTTP.Request("POST", "/_dash-update-component", [], Vector{UInt8}(test_json))
response = Dash.HttpHelpers.handle(handler, request)
@test response.status == 200
resp_obj = JSON3.read(String(response.body))
@test in(:multi, keys(resp_obj))
@test resp_obj.response.var"{\"index\":1,\"type\":\"test_out\"}".children == "test"
end
@testset "pattern-match ALL single out" begin
app = dash()
app.layout = html_div() do
dcc_input(id = (type="test", index = 1), value="initial value", type = "text"),
dcc_input(id = (type="test", index = 2), value="initial value", type = "text"),
html_div(id = (type = "test-out", index = 1)),
html_div(id = (type = "test-out", index = 2))
end
first_key = """{"index":1,"type":"test"}.value"""
changed_key = """{"index":2,"type":"test"}.value"""
callback!(app, Output((type = "test-out", index = ALL), "children"), Input((type="test", index = ALL), "value")) do value
context = callback_context()
@test haskey(context.inputs, first_key)
@test context.inputs[first_key] == "test 1"
@test haskey(context.inputs, changed_key)
@test context.inputs[changed_key] == "test"
@test length(context.triggered) == 1
@test context.triggered[1].prop_id == changed_key
@test context.triggered[1].value == "test"
return value
end
@test length(app.callbacks) == 1
out_key = Symbol("""{"index":["ALL"],"type":"test-out"}.children""")
@test haskey(app.callbacks, out_key)
handler = Dash.make_handler(app)
request = (
output = string(out_key),
outputs = [
(id = (index=1, type="test-out"), property = "children"),
(id = (index=2, type="test-out"), property = "children")
],
changedPropIds = [changed_key],
inputs = [
[
(id = (index=1, type="test"), property = "value", value = "test 1"),
(id = (index=2, type="test"), property = "value", value = "test")
]
]
)
test_json = JSON3.write(request)
request = HTTP.Request("POST", "/_dash-update-component", [], Vector{UInt8}(test_json))
response = Dash.HttpHelpers.handle(handler, request)
@test response.status == 200
s = String(response.body)
resp_obj = JSON3.read(s)
@test in(:multi, keys(resp_obj))
@test resp_obj.response.var"{\"index\":1,\"type\":\"test-out\"}".children =="test 1"
@test resp_obj.response.var"{\"index\":2,\"type\":\"test-out\"}".children =="test"
end
@testset "pattern-match ALL multi out" begin
app = dash()
app.layout = html_div() do
dcc_input(id = (type="test", index = 1), value="initial value", type = "text"),
dcc_input(id = (type="test", index = 2), value="initial value", type = "text"),
html_div(id = (type = "test-out", index = 1)),
html_div(id = (type = "test-out", index = 2))
end
first_key = """{"index":1,"type":"test"}.value"""
changed_key = """{"index":2,"type":"test"}.value"""
callback!(app, [Output((type = "test-out", index = ALL), "children")], Input((type="test", index = ALL), "value")) do value
context = callback_context()
@test haskey(context.inputs, first_key)
@test context.inputs[first_key] == "test 1"
@test haskey(context.inputs, changed_key)
@test context.inputs[changed_key] == "test"
@test length(context.triggered) == 1
@test context.triggered[1].prop_id == changed_key
@test context.triggered[1].value == "test"
return [value]
end
@test length(app.callbacks) == 1
out_key = Symbol("""..{"index":["ALL"],"type":"test-out"}.children..""")
@test haskey(app.callbacks, out_key)
handler = Dash.make_handler(app)
request = (
output = string(out_key),
outputs = [[
(id = (index=1, type="test-out"), property = "children"),
(id = (index=2, type="test-out"), property = "children")
]],
changedPropIds = [changed_key],
inputs = [
[
(id = (index=1, type="test"), property = "value", value = "test 1"),
(id = (index=2, type="test"), property = "value", value = "test")
]
]
)
test_json = JSON3.write(request)
request = HTTP.Request("POST", "/_dash-update-component", [], Vector{UInt8}(test_json))
response = Dash.HttpHelpers.handle(handler, request)
@test response.status == 200
resp_obj = JSON3.read(String(response.body))
@test in(:multi, keys(resp_obj))
@test resp_obj.response.var"{\"index\":1,\"type\":\"test-out\"}".children =="test 1"
@test resp_obj.response.var"{\"index\":2,\"type\":\"test-out\"}".children =="test"
end
@testset "invalid multi out" begin
app = dash()
app.layout = html_div() do
html_div(id="a"),
html_div(id="b"),
html_div(id="c"),
html_div(id="d"),
html_div(id="e"),
html_div(id="f")
end
callback!(app, [Output("b", "children")], Input("a", "children")) do a
return (1,2)
end
#invalid number of outputs
@test_throws Dash.InvalidCallbackReturnValue Dash.process_callback_call(app, :var"..b.children..", [(id = "b", property = "children")], [(value = "aaa",)], [])
callback!(app, Output("c", "children"), Output("d", "children"), Input("a", "children")) do a
return 1
end
#result not array
@test_throws Dash.InvalidCallbackReturnValue Dash.process_callback_call(
app, Symbol("..c.children...d.children.."),
[(id = "b", property = "children")], [(value = "aaa",)], []
)
app = dash()
app.layout = html_div() do
html_div(id=(index = 1,)),
html_div(id=(index = 2,)),
html_div(id=(index = 3,))
end
callback!(app, Output((index = ALL,), "children"), Input((index = ALL,), "css")) do inputs
return [1,2]
end
#pattern-match output elements length not match to specs
@test_throws Dash.InvalidCallbackReturnValue Dash.process_callback_call(
app, Symbol("""{"index":["ALL"]}.children"""),
[[
(id = """{"index":1}""", property = "children"),
(id = """{"index":2}""", property = "children"),
(id = """{"index":3}""", property = "children"),
]],
[[(value = "aaa",), (value = "bbb",), (value = "ccc",)]], []
)
app = dash()
app.layout = html_div() do
html_div(id=(index = 1,)),
html_div(id=(index = 2,)),
html_div(id=(index = 3,))
end
callback!(app, Output((index = ALL,), "children"), Input((index = ALL,), "css")) do inputs
return 1
end
#pattern-match output element not array
@test_throws Dash.InvalidCallbackReturnValue Dash.process_callback_call(
app, Symbol("""{"index":["ALL"]}.children"""),
[[
(id = """{"index":1}""", property = "children"),
(id = """{"index":2}""", property = "children"),
(id = """{"index":3}""", property = "children"),
]],
[[(value = "aaa",), (value = "bbb",), (value = "ccc",)]], []
)
end
@testset "clientside callbacks function" begin
app = dash()
app.layout = html_div() do
dcc_input(id = "my-id", value="initial value", type = "text"),
html_div(id = "my-div")
end
callback!(ClientsideFunction("namespace", "func_name"),app, Output("my-div","children"), Input("my-id","value"))
@test length(app.callbacks) == 1
@test haskey(app.callbacks, Symbol("my-div.children"))
@test app.callbacks[Symbol("my-div.children")].func isa ClientsideFunction
@test app.callbacks[Symbol("my-div.children")].func.namespace == "namespace"
@test app.callbacks[Symbol("my-div.children")].func.function_name == "func_name"
handler = make_handler(app)
request = HTTP.Request("GET", "/_dash-dependencies")
resp = Dash.HttpHelpers.handle(handler, request)
deps = JSON3.read(String(resp.body))
@test length(deps) == 1
cb = deps[1]
@test cb.output == "my-div.children"
@test cb.inputs[1].id == "my-id"
@test cb.inputs[1].property == "value"
@test :clientside_function in keys(cb)
@test cb.clientside_function.namespace == "namespace"
@test cb.clientside_function.function_name == "func_name"
end
@testset "clientside callbacks string" begin
app = dash()
app.layout = html_div() do
dcc_input(id = "my-id", value="initial value", type = "text"),
html_div(id = "my-div")
end
callback!(
"""
function(input_value) {
return (
parseFloat(input_value_1, 10)
);
}
"""
, app,
Output("my-div", "children"),
Input("my-id", "value")
)
@test length(app.callbacks) == 1
@test haskey(app.callbacks, Symbol("my-div.children"))
@test app.callbacks[Symbol("my-div.children")].func isa ClientsideFunction
@test app.callbacks[Symbol("my-div.children")].func.namespace == "_dashprivate_my-div"
@test app.callbacks[Symbol("my-div.children")].func.function_name == "children"
@test length(app.inline_scripts) == 1
@test occursin("clientside[\"_dashprivate_my-div\"]", app.inline_scripts[1])
@test occursin("ns[\"children\"]", app.inline_scripts[1])
handler = make_handler(app)
request = HTTP.Request("GET", "/_dash-dependencies")
resp = Dash.HttpHelpers.handle(handler, request)
deps = JSON3.read(String(resp.body))
@test length(deps) == 1
cb = deps[1]
@test cb.output == "my-div.children"
@test cb.inputs[1].id == "my-id"
@test cb.inputs[1].property == "value"
@test :clientside_function in keys(cb)
@test cb.clientside_function.namespace == "_dashprivate_my-div"
@test cb.clientside_function.function_name == "children"
request = HTTP.Request("GET", "/")
resp = Dash.HttpHelpers.handle(handler, request)
body = String(resp.body)
@test occursin("clientside[\"_dashprivate_my-div\"]", body)
@test occursin("ns[\"children\"]", body)
end