summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/whoisquery/whoisquery_test.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/go/collectors/go.d.plugin/modules/whoisquery/whoisquery_test.go149
1 files changed, 149 insertions, 0 deletions
diff --git a/src/go/collectors/go.d.plugin/modules/whoisquery/whoisquery_test.go b/src/go/collectors/go.d.plugin/modules/whoisquery/whoisquery_test.go
new file mode 100644
index 000000000..55b9b84cd
--- /dev/null
+++ b/src/go/collectors/go.d.plugin/modules/whoisquery/whoisquery_test.go
@@ -0,0 +1,149 @@
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+package whoisquery
+
+import (
+ "errors"
+ "os"
+ "testing"
+
+ "github.com/netdata/netdata/go/go.d.plugin/agent/module"
+
+ "github.com/stretchr/testify/assert"
+ "github.com/stretchr/testify/require"
+)
+
+var (
+ dataConfigJSON, _ = os.ReadFile("testdata/config.json")
+ dataConfigYAML, _ = os.ReadFile("testdata/config.yaml")
+)
+
+func Test_testDataIsValid(t *testing.T) {
+ for name, data := range map[string][]byte{
+ "dataConfigJSON": dataConfigJSON,
+ "dataConfigYAML": dataConfigYAML,
+ } {
+ require.NotNil(t, data, name)
+ }
+}
+
+func TestWhoisQuery_ConfigurationSerialize(t *testing.T) {
+ module.TestConfigurationSerialize(t, &WhoisQuery{}, dataConfigJSON, dataConfigYAML)
+}
+
+func TestWhoisQuery_Cleanup(t *testing.T) {
+ New().Cleanup()
+}
+
+func TestWhoisQuery_Charts(t *testing.T) {
+ whoisquery := New()
+ whoisquery.Source = "example.com"
+ require.NoError(t, whoisquery.Init())
+
+ assert.NotNil(t, whoisquery.Charts())
+}
+
+func TestWhoisQuery_Init(t *testing.T) {
+ const net = iota
+ tests := map[string]struct {
+ config Config
+ providerType int
+ err bool
+ }{
+ "ok from net": {
+ config: Config{Source: "example.org"},
+ providerType: net,
+ },
+ "empty source": {
+ config: Config{Source: ""},
+ err: true,
+ },
+ }
+
+ for name, test := range tests {
+ t.Run(name, func(t *testing.T) {
+ whoisquery := New()
+ whoisquery.Config = test.config
+
+ if test.err {
+ assert.Error(t, whoisquery.Init())
+ } else {
+ require.NoError(t, whoisquery.Init())
+
+ var typeOK bool
+ if test.providerType == net {
+ _, typeOK = whoisquery.prov.(*fromNet)
+ }
+
+ assert.True(t, typeOK)
+ }
+ })
+ }
+}
+
+func TestWhoisQuery_Check(t *testing.T) {
+ whoisquery := New()
+ whoisquery.prov = &mockProvider{remTime: 12345.678}
+
+ assert.NoError(t, whoisquery.Check())
+}
+
+func TestWhoisQuery_Check_ReturnsFalseOnProviderError(t *testing.T) {
+ whoisquery := New()
+ whoisquery.prov = &mockProvider{err: true}
+
+ assert.Error(t, whoisquery.Check())
+}
+
+func TestWhoisQuery_Collect(t *testing.T) {
+ whoisquery := New()
+ whoisquery.Source = "example.com"
+ require.NoError(t, whoisquery.Init())
+ whoisquery.prov = &mockProvider{remTime: 12345}
+
+ collected := whoisquery.Collect()
+
+ expected := map[string]int64{
+ "expiry": 12345,
+ "days_until_expiration_warning": 90,
+ "days_until_expiration_critical": 30,
+ }
+
+ assert.NotZero(t, collected)
+ assert.Equal(t, expected, collected)
+ ensureCollectedHasAllChartsDimsVarsIDs(t, whoisquery, collected)
+}
+
+func TestWhoisQuery_Collect_ReturnsNilOnProviderError(t *testing.T) {
+ whoisquery := New()
+ whoisquery.Source = "example.com"
+ require.NoError(t, whoisquery.Init())
+ whoisquery.prov = &mockProvider{err: true}
+
+ assert.Nil(t, whoisquery.Collect())
+}
+
+func ensureCollectedHasAllChartsDimsVarsIDs(t *testing.T, whoisquery *WhoisQuery, collected map[string]int64) {
+ for _, chart := range *whoisquery.Charts() {
+ for _, dim := range chart.Dims {
+ _, ok := collected[dim.ID]
+ assert.Truef(t, ok, "collected metrics has no data for dim '%s' chart '%s'", dim.ID, chart.ID)
+ }
+ for _, v := range chart.Vars {
+ _, ok := collected[v.ID]
+ assert.Truef(t, ok, "collected metrics has no data for var '%s' chart '%s'", v.ID, chart.ID)
+ }
+ }
+}
+
+type mockProvider struct {
+ remTime float64
+ err bool
+}
+
+func (m mockProvider) remainingTime() (float64, error) {
+ if m.err {
+ return 0, errors.New("mock remaining time error")
+ }
+ return m.remTime, nil
+}