From 739089551416bff9635b1adffa2a7df90ccb2f80 Mon Sep 17 00:00:00 2001 From: Robert Hoppe Date: Wed, 17 Feb 2021 13:27:11 +0100 Subject: [PATCH] Extend also tests on config --- config/config_test.go | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/config/config_test.go b/config/config_test.go index d948f800..538309fe 100644 --- a/config/config_test.go +++ b/config/config_test.go @@ -344,10 +344,11 @@ alerting: access-key: "1" originator: "31619191918" recipients: "31619191919" - placeholders: - ALERT_TRIGGERED_OR_RESOLVED: - triggered: "partial_outage" - resolved: "operational" + custom: + placeholders: + ALERT_TRIGGERED_OR_RESOLVED: + triggered: "partial_outage" + resolved: "operational" services: - name: twinnation url: https://twinnation.org/health @@ -400,6 +401,12 @@ services: if config.Alerting.Messagebird.Recipients != "31619191919" { t.Errorf("Messagebird to recipients should've been %s, but was %s", "31619191919", config.Alerting.Messagebird.Recipients) } + if config.Alerting.Custom == nil { + t.Fatal("config.Alerting. Custom shouldn't have been nil") + } + if config.Alerting.Custom.Placeholders == nil { + t.Fatal("config.Alerting.Custom.Placeholders shouldn't have been nil") + } if len(config.Services) != 1 { t.Error("There should've been 1 service") }