Source
if diff := cmp.Diff(tt.wantOpt.Plugins, a.Plugins, cmpopts.IgnoreUnexported(conf.Node{})); diff != "" {
/*
** Copyright (C) 2001-2025 Zabbix SIA
**
** This program is free software: you can redistribute it and/or modify it under the terms of
** the GNU Affero General Public License as published by the Free Software Foundation, version 3.
**
** This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
** without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
** See the GNU Affero General Public License for more details.
**
** You should have received a copy of the GNU Affero General Public License along with this program.
** If not, see <https://www.gnu.org/licenses/>.
**/
package agent
import (
"testing"
"github.com/google/go-cmp/cmp"
"github.com/google/go-cmp/cmp/cmpopts"
"golang.zabbix.com/sdk/conf"
)
func TestAgentOptions_RemovePluginSystemOptions(t *testing.T) {
t.Parallel()
testPath := "path/to/plugin"
forActiveChecksOn := 1
type fields struct {
Plugins map[string]any
}
tests := []struct {
name string
fields fields
wantSysOpt PluginSystemOptions
wantOpt *AgentOptions
wantErr bool
}{
{
"+valid",
fields{
map[string]any{
"debug": &conf.Node{
Nodes: []any{
&conf.Node{
Name: "System",
Nodes: []any{
&conf.Node{
Name: "Path",
Line: 1,
Nodes: []any{
&conf.Value{Value: []byte("path/to/plugin"), Line: 1},
},
},
},
},
},
},
},
},