1
0
Fork 0
golang-github-nicholas-fedo.../internal/testutils/config.go
Daniel Baumann c0c4addb85
Adding upstream version 0.8.9.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-05-22 10:16:14 +02:00

48 lines
1.9 KiB
Go

package testutils
import (
"net/url"
"github.com/onsi/gomega"
"github.com/nicholas-fedor/shoutrrr/pkg/format"
"github.com/nicholas-fedor/shoutrrr/pkg/types"
)
// TestConfigGetInvalidQueryValue tests whether the config returns
// an error when an invalid query value is requested.
func TestConfigGetInvalidQueryValue(config types.ServiceConfig) {
value, err := format.GetConfigQueryResolver(config).Get("invalid query var")
gomega.ExpectWithOffset(1, value).To(gomega.BeEmpty())
gomega.ExpectWithOffset(1, err).To(gomega.HaveOccurred())
}
// TestConfigSetInvalidQueryValue tests whether the config returns
// an error when a URL with an invalid query value is parsed.
func TestConfigSetInvalidQueryValue(config types.ServiceConfig, rawInvalidURL string) {
invalidURL, err := url.Parse(rawInvalidURL)
gomega.ExpectWithOffset(1, err).
ToNot(gomega.HaveOccurred(), "the test URL did not parse correctly")
err = config.SetURL(invalidURL)
gomega.ExpectWithOffset(1, err).To(gomega.HaveOccurred())
}
// TestConfigSetDefaultValues tests whether setting the default values
// can be set for an empty config without any errors.
func TestConfigSetDefaultValues(config types.ServiceConfig) {
pkr := format.NewPropKeyResolver(config)
gomega.ExpectWithOffset(1, pkr.SetDefaultProps(config)).To(gomega.Succeed())
}
// TestConfigGetEnumsCount tests whether the config.Enums returns the expected amount of items.
func TestConfigGetEnumsCount(config types.ServiceConfig, expectedCount int) {
enums := config.Enums()
gomega.ExpectWithOffset(1, enums).To(gomega.HaveLen(expectedCount))
}
// TestConfigGetFieldsCount tests whether the config.QueryFields return the expected amount of fields.
func TestConfigGetFieldsCount(config types.ServiceConfig, expectedCount int) {
fields := format.GetConfigQueryResolver(config).QueryFields()
gomega.ExpectWithOffset(1, fields).To(gomega.HaveLen(expectedCount))
}