Delete impractical integration test

This commit is contained in:
Morten Lied Johansen 2024-10-02 20:05:33 +02:00
parent 06749f2ad4
commit 2ca7c2eed6
No known key found for this signature in database
GPG key ID: 8DC6DECB15005221
4 changed files with 0 additions and 52 deletions

View file

@ -1,28 +0,0 @@
package main
import (
"os"
"testing"
"github.com/jetstack/cert-manager/test/acme/dns"
)
var (
zone = os.Getenv("TEST_ZONE_NAME")
)
func TestRunsSuite(t *testing.T) {
// The manifest path should contain a file named config.json that is a
// snippet of valid configuration that should be included on the
// ChallengeRequest passed as part of the test cases.
fixture := dns.NewFixture(&domeneshopDNSProviderSolver{},
dns.SetResolvedZone(zone),
dns.SetAllowAmbientCredentials(false),
dns.SetBinariesPath("_out/kubebuilder/bin"),
dns.SetManifestPath("testdata/domeneshop-webhook"),
dns.SetStrict(true),
)
fixture.RunConformance(t)
}

View file

@ -1,3 +0,0 @@
# Solver testdata directory
TODO

View file

@ -1,10 +0,0 @@
{
"APITokenSecretRef": {
"name": "domeneshop-credentials",
"key": "APIToken"
},
"APISecretSecretRef": {
"name": "domeneshop-credentials",
"key": "APISecret"
}
}

View file

@ -1,11 +0,0 @@
# Set APIToken and APISecret to your Domeneshop API
# token and secret.
---
apiVersion: v1
kind: Secret
type: Opaque
metadata:
name: domeneshop-credentials
stringData:
APIToken: <token>
APISecret: <secret>