mirror of
https://github.com/acme-dns/acme-dns.git
synced 2026-02-24 10:28:22 -07:00
* Refactor core * Re-added tests * Small fixes * Add tests for acmetxt cidrslice and util funcs * Remove the last dangling reference to old logging package * Refactoring (#327) * chore: enable more linters and fix linter issues * ci: enable linter checks on all branches and disable recurring checks recurring linter checks don't make that much sense. The code & linter checks should not change on their own over night ;) * chore: update packages * Revert "chore: update packages" This reverts commit 30250bf28c4b39e9e5b3af012a4e28ab036bf9af. * chore: manually upgrade some packages * Updated dependencies, wrote changelog entry and fixed namespace for release * Refactoring - improving coverage (#371) * Increase code coverage in acmedns * More testing of ReadConfig() and its fallback mechanism * Found that if someone put a '"' double quote into the filename that we configure zap to log to, it would cause the the JSON created to be invalid. I have replaced the JSON string with proper config * Better handling of config options for api.TLS - we now error on an invalid value instead of silently failing. added a basic test for api.setupTLS() (to increase test coverage) * testing nameserver isOwnChallenge and isAuthoritative methods * add a unit test for nameserver answerOwnChallenge * fix linting errors * bump go and golangci-lint versions in github actions * Update golangci-lint.yml Bumping github-actions workflow versions to accommodate some changes in upstream golanci-lint * Bump Golang version to 1.23 (currently the oldest supported version) Bump golanglint-ci to 2.0.2 and migrate the config file. This should resolve the math/rand/v2 issue * bump golanglint-ci action version * Fixing up new golanglint-ci warnings and errors --------- Co-authored-by: Joona Hoikkala <5235109+joohoi@users.noreply.github.com> * Minor refactoring, error returns and e2e testing suite * Add a few tests * Fix linter and umask setting * Update github actions * Refine concurrency configuration for GitHub actions * HTTP timeouts to API, and self-validation mutex to nameserver ops --------- Co-authored-by: Florian Ritterhoff <32478819+fritterhoff@users.noreply.github.com> Co-authored-by: Jason Playne <jason@jasonplayne.com>
106 lines
3.1 KiB
Python
106 lines
3.1 KiB
Python
import requests
|
|
import dns.resolver
|
|
import os
|
|
import time
|
|
import sys
|
|
import socket
|
|
|
|
ACMEDNS_URL = os.environ.get("ACMEDNS_URL", "http://localhost:80")
|
|
DNS_SERVER = os.environ.get("DNS_SERVER", "localhost")
|
|
DNS_PORT = int(os.environ.get("DNS_PORT", 53))
|
|
|
|
def wait_for_server():
|
|
print(f"Waiting for acme-dns at {ACMEDNS_URL}...")
|
|
for i in range(30):
|
|
try:
|
|
resp = requests.get(f"{ACMEDNS_URL}/health")
|
|
if resp.status_code == 200:
|
|
print("Server is up!")
|
|
return True
|
|
except:
|
|
pass
|
|
time.sleep(1)
|
|
return False
|
|
|
|
def test_flow():
|
|
# 1. Register account
|
|
print("Registering account...")
|
|
resp = requests.post(f"{ACMEDNS_URL}/register")
|
|
if resp.status_code != 201:
|
|
print(f"Failed to register: {resp.status_code} {resp.text}")
|
|
return False
|
|
|
|
account = resp.json()
|
|
username = account['username']
|
|
api_key = account['password']
|
|
subdomain = account['subdomain']
|
|
fulldomain = account['fulldomain']
|
|
print(f"Registered subdomain: {subdomain}")
|
|
|
|
# 2. Update TXT records
|
|
headers = {
|
|
"X-Api-User": username,
|
|
"X-Api-Key": api_key
|
|
}
|
|
|
|
txt_values = ["secret_token_1", "secret_token_2"]
|
|
|
|
for val in txt_values:
|
|
print(f"Updating TXT record with value: {val}")
|
|
# Let's Encrypt uses 43 char tokens usually, but our validation is flexible now (or we use a dummy one)
|
|
# Actually our current validation in pkg/api/util.go still expects 43 chars if I recall correctly
|
|
# Let's use 43 chars just in case
|
|
dummy_val = val.ljust(43, '_')[:43]
|
|
payload = {
|
|
"subdomain": subdomain,
|
|
"txt": dummy_val
|
|
}
|
|
resp = requests.post(f"{ACMEDNS_URL}/update", headers=headers, json=payload)
|
|
if resp.status_code != 200:
|
|
print(f"Failed to update: {resp.status_code} {resp.text}")
|
|
return False
|
|
|
|
print("Updates successful. Waiting for DNS propagation (local cache)...")
|
|
time.sleep(2)
|
|
|
|
# 3. Verify DNS resolution
|
|
print(f"Resolving TXT records for {fulldomain}...")
|
|
|
|
# Resolve hostname to IP if needed
|
|
try:
|
|
dns_server_ip = socket.gethostbyname(DNS_SERVER)
|
|
except:
|
|
dns_server_ip = DNS_SERVER
|
|
|
|
resolver = dns.resolver.Resolver()
|
|
resolver.nameservers = [dns_server_ip]
|
|
resolver.port = DNS_PORT
|
|
|
|
try:
|
|
answers = resolver.resolve(fulldomain, "TXT")
|
|
resolved_values = [str(rdata).strip('"') for rdata in answers]
|
|
print(f"Resolved values: {resolved_values}")
|
|
|
|
# Check if both are present
|
|
for val in txt_values:
|
|
dummy_val = val.ljust(43, '_')[:43]
|
|
if dummy_val not in resolved_values:
|
|
print(f"Expected value {dummy_val} not found in resolved values")
|
|
return False
|
|
except Exception as e:
|
|
print(f"DNS resolution failed: {e}")
|
|
return False
|
|
|
|
print("E2E Test Passed Successfully!")
|
|
return True
|
|
|
|
if __name__ == "__main__":
|
|
if not wait_for_server():
|
|
print("Server timed out.")
|
|
sys.exit(1)
|
|
|
|
if not test_flow():
|
|
sys.exit(1)
|
|
|
|
sys.exit(0)
|