@@ -482,3 +482,43 @@ func TestPrototypesAdderSketchNoFunctions(t *testing.T) {
482
482
require .Nil (t , context [constants .CTX_INCLUDE_SECTION ])
483
483
require .Nil (t , context [constants .CTX_PROTOTYPE_SECTION ])
484
484
}
485
+
486
+ func TestPrototypesAdderSketchWithDefaultArgs (t * testing.T ) {
487
+ DownloadCoresAndToolsAndLibraries (t )
488
+
489
+ context := make (map [string ]interface {})
490
+
491
+ buildPath := SetupBuildPath (t , context )
492
+ defer os .RemoveAll (buildPath )
493
+
494
+ context [constants .CTX_HARDWARE_FOLDERS ] = []string {filepath .Join (".." , "hardware" ), "hardware" , "downloaded_hardware" }
495
+ context [constants .CTX_TOOLS_FOLDERS ] = []string {"downloaded_tools" }
496
+ context [constants .CTX_FQBN ] = "arduino:avr:leonardo"
497
+ context [constants .CTX_SKETCH_LOCATION ] = filepath .Join ("sketch_with_default_args" , "sketch.ino" )
498
+ context [constants .CTX_BUILD_PROPERTIES_RUNTIME_IDE_VERSION ] = "10600"
499
+ context [constants .CTX_LIBRARIES_FOLDERS ] = []string {"libraries" , "downloaded_libraries" }
500
+ context [constants .CTX_VERBOSE ] = false
501
+
502
+ commands := []types.Command {
503
+ & builder.SetupHumanLoggerIfMissing {},
504
+
505
+ & builder.ContainerSetupHardwareToolsLibsSketchAndProps {},
506
+
507
+ & builder.ContainerMergeCopySketchFiles {},
508
+
509
+ & builder.ContainerFindIncludes {},
510
+
511
+ & builder.PrintUsedLibrariesIfVerbose {},
512
+ & builder.WarnAboutArchIncompatibleLibraries {},
513
+
514
+ & builder.ContainerAddPrototypes {},
515
+ }
516
+
517
+ for _ , command := range commands {
518
+ err := command .Run (context )
519
+ NoError (t , err )
520
+ }
521
+
522
+ require .Equal (t , "#include <Arduino.h>\n #line 1\n " , context [constants .CTX_INCLUDE_SECTION ].(string ))
523
+ require .Equal (t , "void setup();\n void loop();\n #line 1\n " , context [constants .CTX_PROTOTYPE_SECTION ].(string ))
524
+ }
0 commit comments