mirror of https://github.com/hashicorp/boundary
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
310 lines
7.3 KiB
310 lines
7.3 KiB
// Copyright IBM Corp. 2020, 2025
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package event
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestSinkConfig_Validate(t *testing.T) {
|
|
t.Parallel()
|
|
tests := []struct {
|
|
name string
|
|
sc SinkConfig
|
|
wantErrIs error
|
|
wantErrContains string
|
|
}{
|
|
{
|
|
name: "invalid-everytype-audit-config",
|
|
sc: SinkConfig{
|
|
Name: "sink-name",
|
|
EventTypes: []Type{EveryType},
|
|
Type: FileSink,
|
|
FileConfig: &FileSinkTypeConfig{
|
|
FileName: "tmp.file",
|
|
},
|
|
Format: JSONSinkFormat,
|
|
AuditConfig: &AuditConfig{
|
|
FilterOverrides: AuditFilterOperations{
|
|
SensitiveClassification: "invalid",
|
|
},
|
|
},
|
|
},
|
|
wantErrIs: ErrInvalidParameter,
|
|
wantErrContains: "invalid audit config",
|
|
},
|
|
{
|
|
name: "invalid-auditaudit-config",
|
|
sc: SinkConfig{
|
|
Name: "sink-name",
|
|
EventTypes: []Type{AuditType},
|
|
Type: FileSink,
|
|
FileConfig: &FileSinkTypeConfig{
|
|
FileName: "tmp.file",
|
|
},
|
|
Format: JSONSinkFormat,
|
|
AuditConfig: &AuditConfig{
|
|
FilterOverrides: AuditFilterOperations{
|
|
"invalid": EncryptOperation,
|
|
},
|
|
},
|
|
},
|
|
wantErrIs: ErrInvalidParameter,
|
|
wantErrContains: "invalid audit config",
|
|
},
|
|
{
|
|
name: "missing-name",
|
|
sc: SinkConfig{
|
|
EventTypes: []Type{EveryType},
|
|
Type: FileSink,
|
|
FileConfig: &FileSinkTypeConfig{
|
|
FileName: "tmp.file",
|
|
},
|
|
Format: JSONSinkFormat,
|
|
},
|
|
wantErrIs: ErrInvalidParameter,
|
|
wantErrContains: "missing sink name",
|
|
},
|
|
{
|
|
name: "missing-EventType",
|
|
sc: SinkConfig{
|
|
Name: "sink-name",
|
|
Type: FileSink,
|
|
FileConfig: &FileSinkTypeConfig{
|
|
FileName: "tmp.file",
|
|
},
|
|
Format: JSONSinkFormat,
|
|
},
|
|
wantErrIs: ErrInvalidParameter,
|
|
wantErrContains: "missing event types",
|
|
},
|
|
{
|
|
name: "invalid-EventType",
|
|
sc: SinkConfig{
|
|
Name: "sink-name",
|
|
EventTypes: []Type{"invalid"},
|
|
Type: FileSink,
|
|
FileConfig: &FileSinkTypeConfig{
|
|
FileName: "tmp.file",
|
|
},
|
|
Format: JSONSinkFormat,
|
|
},
|
|
wantErrIs: ErrInvalidParameter,
|
|
wantErrContains: "not a valid event type",
|
|
},
|
|
{
|
|
name: "missing-sink-type",
|
|
sc: SinkConfig{
|
|
Name: "sink-name",
|
|
EventTypes: []Type{EveryType},
|
|
FileConfig: &FileSinkTypeConfig{
|
|
FileName: "tmp.file",
|
|
},
|
|
Format: JSONSinkFormat,
|
|
},
|
|
wantErrIs: ErrInvalidParameter,
|
|
wantErrContains: "not a valid sink type",
|
|
},
|
|
{
|
|
name: "invalid-sink-type",
|
|
sc: SinkConfig{
|
|
Name: "sink-name",
|
|
EventTypes: []Type{EveryType},
|
|
Type: "invalid",
|
|
FileConfig: &FileSinkTypeConfig{
|
|
FileName: "tmp.file",
|
|
},
|
|
Format: JSONSinkFormat,
|
|
},
|
|
wantErrIs: ErrInvalidParameter,
|
|
wantErrContains: "not a valid sink type",
|
|
},
|
|
{
|
|
name: "missing-format",
|
|
sc: SinkConfig{
|
|
Name: "sink-name",
|
|
Type: FileSink,
|
|
EventTypes: []Type{EveryType},
|
|
FileConfig: &FileSinkTypeConfig{
|
|
FileName: "tmp.file",
|
|
},
|
|
},
|
|
wantErrIs: ErrInvalidParameter,
|
|
wantErrContains: "not a valid sink format",
|
|
},
|
|
{
|
|
name: "invalid-format",
|
|
sc: SinkConfig{
|
|
Name: "sink-name",
|
|
Format: "invalid",
|
|
Type: FileSink,
|
|
EventTypes: []Type{EveryType},
|
|
FileConfig: &FileSinkTypeConfig{
|
|
FileName: "tmp.file",
|
|
},
|
|
},
|
|
wantErrIs: ErrInvalidParameter,
|
|
wantErrContains: "not a valid sink format",
|
|
},
|
|
{
|
|
name: "file-sink-with-no-file-name",
|
|
sc: SinkConfig{
|
|
EventTypes: []Type{EveryType},
|
|
Type: FileSink,
|
|
Format: JSONSinkFormat,
|
|
FileConfig: &FileSinkTypeConfig{},
|
|
},
|
|
wantErrIs: ErrInvalidParameter,
|
|
wantErrContains: "missing file name",
|
|
},
|
|
{
|
|
name: "type mismatch file type stderr config",
|
|
sc: SinkConfig{
|
|
EventTypes: []Type{EveryType},
|
|
Type: FileSink,
|
|
Format: JSONSinkFormat,
|
|
StderrConfig: &StderrSinkTypeConfig{},
|
|
},
|
|
wantErrIs: ErrInvalidParameter,
|
|
wantErrContains: `missing "file" block`,
|
|
},
|
|
{
|
|
name: "type mismatch stderr type file config",
|
|
sc: SinkConfig{
|
|
EventTypes: []Type{EveryType},
|
|
Type: StderrSink,
|
|
Format: JSONSinkFormat,
|
|
FileConfig: &FileSinkTypeConfig{},
|
|
},
|
|
wantErrIs: ErrInvalidParameter,
|
|
wantErrContains: `mismatch between sink type and sink configuration block`,
|
|
},
|
|
{
|
|
name: "type mismatch both types file config",
|
|
sc: SinkConfig{
|
|
EventTypes: []Type{EveryType},
|
|
Type: FileSink,
|
|
Format: JSONSinkFormat,
|
|
StderrConfig: &StderrSinkTypeConfig{},
|
|
FileConfig: &FileSinkTypeConfig{},
|
|
},
|
|
wantErrIs: ErrInvalidParameter,
|
|
wantErrContains: `too many sink type config blocks`,
|
|
},
|
|
{
|
|
name: "type mismatch both types stderr config",
|
|
sc: SinkConfig{
|
|
EventTypes: []Type{EveryType},
|
|
Type: StderrSink,
|
|
Format: JSONSinkFormat,
|
|
StderrConfig: &StderrSinkTypeConfig{},
|
|
FileConfig: &FileSinkTypeConfig{},
|
|
},
|
|
wantErrIs: ErrInvalidParameter,
|
|
wantErrContains: `too many sink type config blocks`,
|
|
},
|
|
{
|
|
name: "invalid observation, telemetry type",
|
|
sc: SinkConfig{
|
|
Name: "invalid observation, telemetry type",
|
|
EventTypes: []Type{TelemetryType, AuditType},
|
|
Type: FileSink,
|
|
Format: JSONSinkFormat,
|
|
FileConfig: &FileSinkTypeConfig{
|
|
FileName: "tmp.file",
|
|
},
|
|
},
|
|
wantErrIs: ErrInvalidParameter,
|
|
wantErrContains: `telemetry event type requires observation event type to be specified`,
|
|
},
|
|
{
|
|
name: "valid-observation-telemetry-type",
|
|
sc: SinkConfig{
|
|
Name: "valid",
|
|
EventTypes: []Type{ObservationType, TelemetryType, AuditType},
|
|
Type: FileSink,
|
|
FileConfig: &FileSinkTypeConfig{
|
|
FileName: "tmp.file",
|
|
},
|
|
Format: JSONSinkFormat,
|
|
},
|
|
},
|
|
{
|
|
name: "valid",
|
|
sc: SinkConfig{
|
|
Name: "valid",
|
|
EventTypes: []Type{EveryType},
|
|
Type: FileSink,
|
|
FileConfig: &FileSinkTypeConfig{
|
|
FileName: "tmp.file",
|
|
},
|
|
Format: JSONSinkFormat,
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
assert, require := assert.New(t), require.New(t)
|
|
err := tt.sc.Validate()
|
|
if tt.wantErrIs != nil {
|
|
require.Error(err)
|
|
assert.ErrorIs(err, tt.wantErrIs)
|
|
if tt.wantErrContains != "" {
|
|
assert.Contains(err.Error(), tt.wantErrContains)
|
|
}
|
|
return
|
|
}
|
|
assert.NoError(err)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestSinkFilter_Validate(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
sf *SinkFilter
|
|
wantErrIs error
|
|
wantErrContains string
|
|
}{
|
|
{
|
|
name: "invalid-type",
|
|
sf: &SinkFilter{
|
|
Type: "invalid",
|
|
Filter: `"/Data" ==1`,
|
|
},
|
|
wantErrContains: "invalid filter type",
|
|
},
|
|
{
|
|
name: "invalid-filter-bad-path",
|
|
sf: &SinkFilter{
|
|
Type: AllowFilter,
|
|
Filter: `"data" == 1`,
|
|
},
|
|
wantErrContains: "invalid filter '\"data\" == 1'",
|
|
},
|
|
{
|
|
name: "valid",
|
|
sf: &SinkFilter{
|
|
Type: DenyFilter,
|
|
Filter: `"/Data" ==1`,
|
|
},
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
assert, require := assert.New(t), require.New(t)
|
|
err := tt.sf.Validate()
|
|
if tt.wantErrContains != "" {
|
|
require.Error(err)
|
|
assert.Contains(err.Error(), tt.wantErrContains)
|
|
return
|
|
}
|
|
assert.NoError(err)
|
|
})
|
|
}
|
|
}
|