chore: change test ports (related to Windows and CI)
This commit is contained in:
parent
7186ebb6f1
commit
6da922047a
1 changed files with 4 additions and 4 deletions
|
@ -24,7 +24,7 @@ func TestChallenge(t *testing.T) {
|
||||||
_, apiURL := tester.SetupFakeAPI(t)
|
_, apiURL := tester.SetupFakeAPI(t)
|
||||||
|
|
||||||
domain := "localhost"
|
domain := "localhost"
|
||||||
port := "23457"
|
port := "24457"
|
||||||
|
|
||||||
mockValidate := func(_ *api.Core, _ string, chlng acme.Challenge) error {
|
mockValidate := func(_ *api.Core, _ string, chlng acme.Challenge) error {
|
||||||
conn, err := tls.Dial("tcp", net.JoinHostPort(domain, port), &tls.Config{
|
conn, err := tls.Dial("tcp", net.JoinHostPort(domain, port), &tls.Config{
|
||||||
|
@ -75,7 +75,7 @@ func TestChallenge(t *testing.T) {
|
||||||
solver := NewChallenge(
|
solver := NewChallenge(
|
||||||
core,
|
core,
|
||||||
mockValidate,
|
mockValidate,
|
||||||
&ProviderServer{port: "23457"},
|
&ProviderServer{port: port},
|
||||||
)
|
)
|
||||||
|
|
||||||
authz := acme.Authorization{
|
authz := acme.Authorization{
|
||||||
|
@ -126,7 +126,7 @@ func TestChallengeIPaddress(t *testing.T) {
|
||||||
_, apiURL := tester.SetupFakeAPI(t)
|
_, apiURL := tester.SetupFakeAPI(t)
|
||||||
|
|
||||||
domain := "127.0.0.1"
|
domain := "127.0.0.1"
|
||||||
port := "23457"
|
port := "24457"
|
||||||
rd, _ := dns.ReverseAddr(domain)
|
rd, _ := dns.ReverseAddr(domain)
|
||||||
|
|
||||||
mockValidate := func(_ *api.Core, _ string, chlng acme.Challenge) error {
|
mockValidate := func(_ *api.Core, _ string, chlng acme.Challenge) error {
|
||||||
|
@ -176,7 +176,7 @@ func TestChallengeIPaddress(t *testing.T) {
|
||||||
solver := NewChallenge(
|
solver := NewChallenge(
|
||||||
core,
|
core,
|
||||||
mockValidate,
|
mockValidate,
|
||||||
&ProviderServer{port: "23457"},
|
&ProviderServer{port: port},
|
||||||
)
|
)
|
||||||
|
|
||||||
authz := acme.Authorization{
|
authz := acme.Authorization{
|
||||||
|
|
Loading…
Reference in a new issue