@@ -26,6 +26,7 @@ import (
26
26
"github.com/go-git/go-git/v5"
27
27
"github.com/go-git/go-git/v5/plumbing"
28
28
"github.com/stretchr/testify/require"
29
+ "go.bug.st/testifyjson/requirejson"
29
30
)
30
31
31
32
func TestCompilePart4 (t * testing.T ) {
@@ -449,3 +450,41 @@ func TestCompileWithKnownPlatformNotInstalled(t *testing.T) {
449
450
// Verifies command to fix error is shown to user
450
451
require .Contains (t , string (stderr ), "Try running `arduino-cli core install arduino:avr`" )
451
452
}
453
+
454
+ func TestSketchWithVendoredLibraries (t * testing.T ) {
455
+ sketchBook , err := paths .New ("testdata" , "sketchbook_1" ).Abs ()
456
+ require .NoError (t , err )
457
+
458
+ env , cli := integrationtest .CreateArduinoCLIWithEnvironment (t )
459
+ defer env .CleanUp ()
460
+
461
+ cli .SetSketchbookDir (sketchBook )
462
+
463
+ _ , _ , err = cli .Run ("core" , "install" , "arduino:avr" )
464
+ require .NoError (t , err )
465
+
466
+ {
467
+ sketchWithLibsPath := sketchBook .Join ("SketchWithLibraries" )
468
+ // Sketch should use sketch bundled "MyLib" with and without profiles
469
+ out , _ , err := cli .Run ("compile" , "-b" , "arduino:avr:uno" , sketchWithLibsPath .String (), "--format" , "json" )
470
+ require .NoError (t , err )
471
+ requirejson .Query (t , out , ".builder_result.used_libraries[0].name" , `"MyLib"` )
472
+ requirejson .Query (t , out , ".builder_result.used_libraries[0].author" , `"user"` )
473
+ out , _ , err = cli .Run ("compile" , "--profile" , "uno" , sketchWithLibsPath .String (), "--format" , "json" )
474
+ require .NoError (t , err )
475
+ requirejson .Query (t , out , ".builder_result.used_libraries[0].name" , `"MyLib"` )
476
+ requirejson .Query (t , out , ".builder_result.used_libraries[0].author" , `"user"` )
477
+ }
478
+
479
+ {
480
+ sketchWithoutLibsPath := sketchBook .Join ("SketchWithoutLibraries" )
481
+ // This sketch should take the user-installed MyLib
482
+ out , _ , err := cli .Run ("compile" , "-b" , "arduino:avr:uno" , sketchWithoutLibsPath .String (), "--format" , "json" )
483
+ require .NoError (t , err )
484
+ requirejson .Query (t , out , ".builder_result.used_libraries[0].name" , `"MyLib"` )
485
+ requirejson .Query (t , out , ".builder_result.used_libraries[0].author" , `"upstream"` )
486
+ // This sketch should fail to compile since profiles will not see the user-installed MyLib
487
+ _ , _ , err = cli .Run ("compile" , "--profile" , "uno" , sketchWithoutLibsPath .String ())
488
+ require .Error (t , err )
489
+ }
490
+ }
0 commit comments