Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added unti tests
  • Loading branch information
cmaglie committed Jun 26, 2025
commit b5b371fa63088a46db35267cbae3071b3d6118e2
42 changes: 42 additions & 0 deletions internal/arduino/builder/internal/preprocessor/ctags_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
// This file is part of arduino-cli.
//
// Copyright 2025 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 preprocessor

import (
"bytes"
"fmt"
"testing"

"github.com/arduino/arduino-cli/internal/arduino/sketch"
"github.com/arduino/go-paths-helper"
"github.com/stretchr/testify/require"
)

func TestCtagsSketchFilter(t *testing.T) {
sourcePath := paths.New("testdata", "sketch_merged.cpp")
f, err := sourcePath.Open()
require.NoError(t, err)
t.Cleanup(func() { f.Close() })

sketch := &sketch.Sketch{
MainFile: paths.New("/home/megabug/Arduino/Test/Test.ino"),
}
stderr := bytes.NewBuffer(nil)
res := filterSketchSource(sketch, f, false, stderr)
require.Empty(t, stderr)
require.NotEmpty(t, res)
fmt.Println(res)
}
Loading