48 lines
1.1 KiB
Go
48 lines
1.1 KiB
Go
package ec2
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/influxdata/telegraf/testutil"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestBasicStartup(t *testing.T) {
|
|
p := newAwsEc2Processor()
|
|
p.Log = &testutil.Logger{}
|
|
p.ImdsTags = []string{"accountId", "instanceId"}
|
|
acc := &testutil.Accumulator{}
|
|
require.NoError(t, p.Init())
|
|
|
|
require.Len(t, acc.GetTelegrafMetrics(), 0)
|
|
require.Len(t, acc.Errors, 0)
|
|
}
|
|
|
|
func TestBasicStartupWithEC2Tags(t *testing.T) {
|
|
p := newAwsEc2Processor()
|
|
p.Log = &testutil.Logger{}
|
|
p.ImdsTags = []string{"accountId", "instanceId"}
|
|
p.EC2Tags = []string{"Name"}
|
|
acc := &testutil.Accumulator{}
|
|
require.NoError(t, p.Init())
|
|
|
|
require.Len(t, acc.GetTelegrafMetrics(), 0)
|
|
require.Len(t, acc.Errors, 0)
|
|
}
|
|
|
|
func TestBasicInitNoTagsReturnAnError(t *testing.T) {
|
|
p := newAwsEc2Processor()
|
|
p.Log = &testutil.Logger{}
|
|
p.ImdsTags = []string{}
|
|
err := p.Init()
|
|
require.Error(t, err)
|
|
}
|
|
|
|
func TestBasicInitInvalidTagsReturnAnError(t *testing.T) {
|
|
p := newAwsEc2Processor()
|
|
p.Log = &testutil.Logger{}
|
|
p.ImdsTags = []string{"dummy", "qwerty"}
|
|
err := p.Init()
|
|
require.Error(t, err)
|
|
}
|