-
-
Notifications
You must be signed in to change notification settings - Fork 398
/
Copy pathprofiles_test.go
71 lines (57 loc) · 2.44 KB
/
profiles_test.go
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
// This file is part of arduino-cli.
//
// Copyright 2022 ARDUINO SA (http://www.arduino.cc/)
//
// This software is released under the GNU General Public License version 3,
// which covers the main part of arduino-cli.
// The terms of this license can be found at:
// https://www.gnu.org/licenses/gpl-3.0.en.html
//
// You can be released from the requirements of the above licenses by purchasing
// a commercial license. Buying such a license is mandatory if you want to
// modify or otherwise use the software for commercial activities involving the
// Arduino software without disclosing the source code of your own applications.
// To purchase a commercial license, send an email to [email protected].
package profiles_test
import (
"testing"
"github.com/arduino/arduino-cli/internal/integrationtest"
"github.com/stretchr/testify/require"
)
func TestCompileWithProfiles(t *testing.T) {
env, cli := integrationtest.CreateArduinoCLIWithEnvironment(t)
defer env.CleanUp()
// Init the environment explicitly
_, _, err := cli.Run("core", "update-index")
require.NoError(t, err)
// copy sketch_with_profile into the working directory
sketchPath := cli.CopySketch("sketch_with_profile")
// use profile without a required library -> should fail
_, _, err = cli.Run("lib", "install", "Arduino_JSON")
require.NoError(t, err)
_, _, err = cli.Run("compile", "-m", "avr1", sketchPath.String())
require.Error(t, err)
// use profile with the required library -> should succeed
_, _, err = cli.Run("compile", "-m", "avr2", sketchPath.String())
require.NoError(t, err)
}
func TestBuilderDidNotCatchLibsFromUnusedPlatforms(t *testing.T) {
env, cli := integrationtest.CreateArduinoCLIWithEnvironment(t)
defer env.CleanUp()
// Init the environment explicitly
_, _, err := cli.Run("core", "update-index")
require.NoError(t, err)
// copy sketch into the working directory
sketchPath := cli.CopySketch("sketch_with_error_including_wire")
// install two platforms with the Wire library bundled
_, _, err = cli.Run("core", "install", "arduino:avr")
require.NoError(t, err)
_, _, err = cli.Run("core", "install", "arduino:samd")
require.NoError(t, err)
// compile for AVR
stdout, stderr, err := cli.Run("compile", "-b", "arduino:avr:uno", sketchPath.String())
require.Error(t, err)
// check that the libary resolver did not take the SAMD bundled Wire library into account
require.NotContains(t, string(stdout), "samd")
require.NotContains(t, string(stderr), "samd")
}