@@ -363,6 +363,7 @@ func TestRenderInputs(t *testing.T) {
363
363
"vars with processors" : {
364
364
input : NewKey ("inputs" , NewList ([]Node {
365
365
NewDict ([]Node {
366
+ NewKey ("id" , NewStrVal ("initial" )),
366
367
NewKey ("type" , NewStrVal ("logfile" )),
367
368
NewKey ("streams" , NewList ([]Node {
368
369
NewDict ([]Node {
@@ -385,6 +386,7 @@ func TestRenderInputs(t *testing.T) {
385
386
})),
386
387
expected : NewList ([]Node {
387
388
NewDict ([]Node {
389
+ NewKey ("id" , NewStrVal ("initial-value1" )),
388
390
NewKey ("type" , NewStrVal ("logfile" )),
389
391
NewKey ("streams" , NewList ([]Node {
390
392
NewDict ([]Node {
@@ -411,8 +413,10 @@ func TestRenderInputs(t *testing.T) {
411
413
})),
412
414
}),
413
415
})),
416
+ NewKey ("original_id" , NewStrVal ("initial" )),
414
417
}),
415
418
NewDict ([]Node {
419
+ NewKey ("id" , NewStrVal ("initial-value2" )),
416
420
NewKey ("type" , NewStrVal ("logfile" )),
417
421
NewKey ("streams" , NewList ([]Node {
418
422
NewDict ([]Node {
@@ -439,10 +443,11 @@ func TestRenderInputs(t *testing.T) {
439
443
})),
440
444
}),
441
445
})),
446
+ NewKey ("original_id" , NewStrVal ("initial" )),
442
447
}),
443
448
}),
444
449
varsArray : []* Vars {
445
- mustMakeVarsP (map [string ]interface {}{
450
+ mustMakeVarsP ("value1" , map [string ]interface {}{
446
451
"var1" : map [string ]interface {}{
447
452
"name" : "value1" ,
448
453
},
@@ -458,7 +463,7 @@ func TestRenderInputs(t *testing.T) {
458
463
},
459
464
},
460
465
}),
461
- mustMakeVarsP (map [string ]interface {}{
466
+ mustMakeVarsP ("value2" , map [string ]interface {}{
462
467
"var1" : map [string ]interface {}{
463
468
"name" : "value2" ,
464
469
},
@@ -499,6 +504,7 @@ func TestRenderInputs(t *testing.T) {
499
504
})),
500
505
}),
501
506
})),
507
+ NewKey ("id" , NewStrVal ("value1" )),
502
508
NewKey ("processors" , NewList ([]Node {
503
509
NewDict ([]Node {
504
510
NewKey ("add_fields" , NewDict ([]Node {
@@ -519,6 +525,7 @@ func TestRenderInputs(t *testing.T) {
519
525
})),
520
526
}),
521
527
})),
528
+ NewKey ("id" , NewStrVal ("value2" )),
522
529
NewKey ("processors" , NewList ([]Node {
523
530
NewDict ([]Node {
524
531
NewKey ("add_fields" , NewDict ([]Node {
@@ -532,7 +539,7 @@ func TestRenderInputs(t *testing.T) {
532
539
}),
533
540
}),
534
541
varsArray : []* Vars {
535
- mustMakeVarsP (map [string ]interface {}{
542
+ mustMakeVarsP ("value1" , map [string ]interface {}{
536
543
"var1" : map [string ]interface {}{
537
544
"name" : "value1" ,
538
545
},
@@ -548,7 +555,7 @@ func TestRenderInputs(t *testing.T) {
548
555
},
549
556
},
550
557
}),
551
- mustMakeVarsP (map [string ]interface {}{
558
+ mustMakeVarsP ("value2" , map [string ]interface {}{
552
559
"var1" : map [string ]interface {}{
553
560
"name" : "value2" ,
554
561
},
@@ -599,6 +606,7 @@ func TestRenderInputs(t *testing.T) {
599
606
NewKey ("invalid" , NewStrVal ("value" )),
600
607
})),
601
608
})),
609
+ NewKey ("id" , NewStrVal ("value1" )),
602
610
}),
603
611
NewDict ([]Node {
604
612
NewKey ("type" , NewStrVal ("logfile" )),
@@ -614,10 +622,11 @@ func TestRenderInputs(t *testing.T) {
614
622
NewKey ("invalid" , NewStrVal ("value" )),
615
623
})),
616
624
})),
625
+ NewKey ("id" , NewStrVal ("value2" )),
617
626
}),
618
627
}),
619
628
varsArray : []* Vars {
620
- mustMakeVarsP (map [string ]interface {}{
629
+ mustMakeVarsP ("value1" , map [string ]interface {}{
621
630
"var1" : map [string ]interface {}{
622
631
"name" : "value1" ,
623
632
},
@@ -633,7 +642,7 @@ func TestRenderInputs(t *testing.T) {
633
642
},
634
643
},
635
644
}),
636
- mustMakeVarsP (map [string ]interface {}{
645
+ mustMakeVarsP ("value2" , map [string ]interface {}{
637
646
"var1" : map [string ]interface {}{
638
647
"name" : "value2" ,
639
648
},
@@ -674,6 +683,7 @@ func TestRenderInputs(t *testing.T) {
674
683
})),
675
684
}),
676
685
})),
686
+ NewKey ("id" , NewStrVal ("value1" )),
677
687
NewKey ("processors" , NewList ([]Node {
678
688
NewDict ([]Node {
679
689
NewKey ("add_fields" , NewDict ([]Node {
@@ -687,7 +697,7 @@ func TestRenderInputs(t *testing.T) {
687
697
}),
688
698
}),
689
699
varsArray : []* Vars {
690
- mustMakeVarsP (map [string ]interface {}{
700
+ mustMakeVarsP ("value1" , map [string ]interface {}{
691
701
"var1" : map [string ]interface {}{
692
702
"name" : "value1" ,
693
703
},
@@ -703,7 +713,7 @@ func TestRenderInputs(t *testing.T) {
703
713
},
704
714
},
705
715
}),
706
- mustMakeVarsP (map [string ]interface {}{
716
+ mustMakeVarsP ("value2" , map [string ]interface {}{
707
717
"var1" : map [string ]interface {}{
708
718
"name" : "value1" ,
709
719
},
@@ -736,8 +746,8 @@ func TestRenderInputs(t *testing.T) {
736
746
}
737
747
}
738
748
739
- func mustMakeVarsP (mapping map [string ]interface {}, processorKey string , processors Processors ) * Vars {
740
- v , err := NewVarsWithProcessors (mapping , processorKey , processors , nil )
749
+ func mustMakeVarsP (id string , mapping map [string ]interface {}, processorKey string , processors Processors ) * Vars {
750
+ v , err := NewVarsWithProcessors (id , mapping , processorKey , processors , nil )
741
751
if err != nil {
742
752
panic (err )
743
753
}
0 commit comments