Skip to content

Commit 8a632bf

Browse files
committed
Added integration test
1 parent cf110ab commit 8a632bf

File tree

7 files changed

+126
-0
lines changed

7 files changed

+126
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
// This file is part of arduino-cli.
2+
//
3+
// Copyright 2023 ARDUINO SA (http://www.arduino.cc/)
4+
//
5+
// This software is released under the GNU General Public License version 3,
6+
// which covers the main part of arduino-cli.
7+
// The terms of this license can be found at:
8+
// https://www.gnu.org/licenses/gpl-3.0.en.html
9+
//
10+
// You can be released from the requirements of the above licenses by purchasing
11+
// a commercial license. Buying such a license is mandatory if you want to
12+
// modify or otherwise use the software for commercial activities involving the
13+
// Arduino software without disclosing the source code of your own applications.
14+
// To purchase a commercial license, send an email to license@arduino.cc.
15+
16+
package compile_test
17+
18+
import (
19+
"testing"
20+
21+
"github.com/arduino/arduino-cli/internal/integrationtest"
22+
"github.com/arduino/go-paths-helper"
23+
"github.com/stretchr/testify/require"
24+
"go.bug.st/testifyjson/requirejson"
25+
)
26+
27+
func TestLibDiscoveryCache(t *testing.T) {
28+
env, cli := integrationtest.CreateArduinoCLIWithEnvironment(t)
29+
t.Cleanup(env.CleanUp)
30+
31+
// Install Arduino AVR Boards
32+
_, _, err := cli.Run("core", "install", "arduino:avr@1.8.6")
33+
require.NoError(t, err)
34+
35+
// Copy the testdata sketchbook
36+
testdata, err := paths.New("testdata", "libraries_discovery_caching").Abs()
37+
require.NoError(t, err)
38+
sketchbook := cli.SketchbookDir()
39+
require.NoError(t, sketchbook.RemoveAll())
40+
require.NoError(t, testdata.CopyDirTo(cli.SketchbookDir()))
41+
42+
buildpath, err := paths.MkTempDir("", "tmpbuildpath")
43+
require.NoError(t, err)
44+
t.Cleanup(func() { buildpath.RemoveAll() })
45+
46+
{
47+
sketchA := sketchbook.Join("SketchA")
48+
{
49+
outjson, _, err := cli.Run("compile", "-v", "-b", "arduino:avr:uno", "--build-path", buildpath.String(), "--json", sketchA.String())
50+
require.NoError(t, err)
51+
j := requirejson.Parse(t, outjson)
52+
j.MustContain(`{"builder_result":{
53+
"used_libraries": [
54+
{ "name": "LibA" },
55+
{ "name": "LibB" }
56+
],
57+
}}`)
58+
}
59+
60+
// Update SketchA
61+
require.NoError(t, sketchA.Join("SketchA.ino").WriteFile([]byte(`
62+
#include <LibC.h>
63+
#include <LibA.h>
64+
void setup() {}
65+
void loop() {libAFunction();}
66+
`)))
67+
68+
{
69+
// This compile should FAIL!
70+
outjson, _, err := cli.Run("compile", "-v", "-b", "arduino:avr:uno", "--build-path", buildpath.String(), "--json", sketchA.String())
71+
require.Error(t, err)
72+
j := requirejson.Parse(t, outjson)
73+
j.MustContain(`{
74+
"builder_result":{
75+
"used_libraries": [
76+
{ "name": "LibC" },
77+
{ "name": "LibA" }
78+
],
79+
"diagnostics": [
80+
{
81+
"severity": "ERROR",
82+
"message": "'libAFunction' was not declared in this scope\n void loop() {libAFunction();}\n ^~~~~~~~~~~~"
83+
}
84+
]
85+
}}`)
86+
j.Query(".compiler_out").MustContain(`"The list of included libraries has been changed... rebuilding all libraries."`)
87+
}
88+
89+
{
90+
// This compile should FAIL!
91+
outjson, _, err := cli.Run("compile", "-v", "-b", "arduino:avr:uno", "--build-path", buildpath.String(), "--json", sketchA.String())
92+
require.Error(t, err)
93+
j := requirejson.Parse(t, outjson)
94+
j.MustContain(`{
95+
"builder_result":{
96+
"used_libraries": [
97+
{ "name": "LibC" },
98+
{ "name": "LibA" }
99+
],
100+
"diagnostics": [
101+
{
102+
"severity": "ERROR",
103+
"message": "'libAFunction' was not declared in this scope\n void loop() {libAFunction();}\n ^~~~~~~~~~~~"
104+
}
105+
]
106+
}}`)
107+
j.Query(".compiler_out").MustNotContain(`"The list of included libraries has changed... rebuilding all libraries."`)
108+
}
109+
}
110+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#include <LibA.h>
2+
void setup() {}
3+
void loop() {libAFunction();}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
#include <LibB.h>
3+
4+
#ifndef CHECK
5+
void libAFunction();
6+
#endif
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#include <LibB.h>
2+
3+
#ifndef CHECK
4+
void libAFunction() {}
5+
#endif

internal/integrationtest/compile_4/testdata/libraries_discovery_caching/libraries/LibB/LibB.h

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
#define CHECK

internal/integrationtest/compile_4/testdata/libraries_discovery_caching/libraries/LibC/LibC.h

Whitespace-only changes.

0 commit comments

Comments
 (0)