mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-07-04 17:06:49 +00:00
Add more unit tests
This commit is contained in:
29
backend/internal/dnsproviders/dns_ad_test.go
Normal file
29
backend/internal/dnsproviders/dns_ad_test.go
Normal file
@ -0,0 +1,29 @@
|
||||
package dnsproviders
|
||||
|
||||
import (
|
||||
"npm/internal/util"
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
func TestAdProvider(t *testing.T) {
|
||||
provider := getDNSAd()
|
||||
provider.ConvertToUpdatable()
|
||||
json, err := provider.GetJsonSchema()
|
||||
assert.Nil(t, err)
|
||||
assert.Equal(t, `{
|
||||
"title": "dns_ad",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"minProperties": 1,
|
||||
"properties": {
|
||||
"AD_API_KEY": {
|
||||
"title": "api-key",
|
||||
"type": "string",
|
||||
"additionalProperties": false,
|
||||
"minLength": 1
|
||||
}
|
||||
}
|
||||
}`, util.PrettyPrintJSON(json))
|
||||
}
|
Reference in New Issue
Block a user