This commit is contained in:
parent
115eeec47d
commit
d8f547d1e7
5 changed files with 150 additions and 3 deletions
|
@ -45,7 +45,9 @@ public class Ddnss implements DynDns {
|
|||
if (currentIps.v4().isPresent() && currentIps.v6().isPresent()) {
|
||||
return MessageFormat.format("https://ddnss.de/upd.php?key={0}&host={1}&ip={2}&ip6={3}", token, hostname, currentIps.v4().get(), currentIps.v6().get());
|
||||
} else if (currentIps.v4().isPresent()) {
|
||||
return MessageFormat.format("https://ddnss.de/upd.php?key={0}&host={1}&ip={2}", token, hostname, currentIps.v4());
|
||||
return MessageFormat.format("https://ddnss.de/upd.php?key={0}&host={1}&ip={2}", token, hostname, currentIps.v4().get());
|
||||
} else if (currentIps.v6().isPresent()) {
|
||||
return MessageFormat.format("https://ddnss.de/upd.php?key={0}&host={1}&ip6={2}", token, hostname, currentIps.v6().get());
|
||||
}
|
||||
throw new RuntimeException("No ips to update!");
|
||||
}
|
||||
|
|
|
@ -49,6 +49,8 @@ public class DuckDNS implements DynDns {
|
|||
return MessageFormat.format("https://www.duckdns.org/update?domains={0}&token={1}&ip={2}&ipv6={3}", hostname, token, currentIps.v4().get(), currentIps.v6().get());
|
||||
} else if (currentIps.v4().isPresent()) {
|
||||
return MessageFormat.format("https://www.duckdns.org/update?domains={0}&token={1}&ip={2}", hostname, token, currentIps.v4().get());
|
||||
} else if (currentIps.v6().isPresent()) {
|
||||
return MessageFormat.format("https://www.duckdns.org/update?domains={0}&token={1}&ipv6={2}", hostname, token, currentIps.v6().get());
|
||||
}
|
||||
throw new RuntimeException("No ips to update!");
|
||||
}
|
||||
|
|
|
@ -36,7 +36,7 @@ public class DnsJava implements DnsResolver {
|
|||
|
||||
Record[] records = lookup.run();
|
||||
if (records == null || records.length == 0) {
|
||||
log.infof("No record for type %s found", type.name());
|
||||
log.infof("Hostname %s has no record for type %s found", hostname, type.name());
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
|
|
|
@ -47,7 +47,7 @@ class DdnssTest {
|
|||
);
|
||||
|
||||
ArgumentCaptor<HttpRequest> requestCaptor = ArgumentCaptor.forClass(HttpRequest.class);
|
||||
verify(httpClient).send(requestCaptor.capture(),any());
|
||||
verify(httpClient).send(requestCaptor.capture(), any());
|
||||
|
||||
HttpRequest capturedRequest = requestCaptor.getValue();
|
||||
|
||||
|
@ -58,4 +58,45 @@ class DdnssTest {
|
|||
.allValues("User-Agent")).containsExactly("ddns-client");
|
||||
}
|
||||
|
||||
@Test
|
||||
void should_send_correct_request_if_only_ipv4_is_present() throws IOException, InterruptedException {
|
||||
when(httpClientFactory.create()).thenReturn(httpClient);
|
||||
when(httpClient.send(any(), ArgumentMatchers.<HttpResponse.BodyHandler<String>>any())).thenReturn(httpResponse);
|
||||
Ddnss dynDns = new Ddnss(httpClientFactory);
|
||||
|
||||
dynDns.update(
|
||||
"example.com",
|
||||
new IPs("ipv4", null),
|
||||
new DyndnsAuth(null, null, "token")
|
||||
);
|
||||
|
||||
ArgumentCaptor<HttpRequest> requestCaptor = ArgumentCaptor.forClass(HttpRequest.class);
|
||||
verify(httpClient).send(requestCaptor.capture(), any());
|
||||
|
||||
HttpRequest capturedRequest = requestCaptor.getValue();
|
||||
|
||||
assertThat(capturedRequest.uri().toString())
|
||||
.isEqualTo("https://ddnss.de/upd.php?key=token&host=example.com&ip=ipv4");
|
||||
}
|
||||
|
||||
@Test
|
||||
void should_send_correct_request_if_only_ipv6_is_present() throws IOException, InterruptedException {
|
||||
when(httpClientFactory.create()).thenReturn(httpClient);
|
||||
when(httpClient.send(any(), ArgumentMatchers.<HttpResponse.BodyHandler<String>>any())).thenReturn(httpResponse);
|
||||
Ddnss dynDns = new Ddnss(httpClientFactory);
|
||||
|
||||
dynDns.update(
|
||||
"example.com",
|
||||
new IPs(null, "ipv6"),
|
||||
new DyndnsAuth(null, null, "token")
|
||||
);
|
||||
|
||||
ArgumentCaptor<HttpRequest> requestCaptor = ArgumentCaptor.forClass(HttpRequest.class);
|
||||
verify(httpClient).send(requestCaptor.capture(), any());
|
||||
|
||||
HttpRequest capturedRequest = requestCaptor.getValue();
|
||||
|
||||
assertThat(capturedRequest.uri().toString())
|
||||
.isEqualTo("https://ddnss.de/upd.php?key=token&host=example.com&ip6=ipv6");
|
||||
}
|
||||
}
|
102
src/test/java/de/rpr/ddnsclient/dyndns/DuckDNSTest.java
Normal file
102
src/test/java/de/rpr/ddnsclient/dyndns/DuckDNSTest.java
Normal file
|
@ -0,0 +1,102 @@
|
|||
package de.rpr.ddnsclient.dyndns;
|
||||
|
||||
import de.rpr.ddnsclient.model.DyndnsAuth;
|
||||
import de.rpr.ddnsclient.model.IPs;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.junit.jupiter.api.extension.ExtendWith;
|
||||
import org.mockito.ArgumentCaptor;
|
||||
import org.mockito.ArgumentMatchers;
|
||||
import org.mockito.Mock;
|
||||
import org.mockito.junit.jupiter.MockitoExtension;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.http.HttpClient;
|
||||
import java.net.http.HttpRequest;
|
||||
import java.net.http.HttpResponse;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
import static org.mockito.ArgumentMatchers.any;
|
||||
import static org.mockito.Mockito.verify;
|
||||
import static org.mockito.Mockito.when;
|
||||
|
||||
@ExtendWith(MockitoExtension.class)
|
||||
class DuckDNSTest {
|
||||
|
||||
@Mock
|
||||
HttpClientFactory httpClientFactory;
|
||||
@Mock
|
||||
HttpClient httpClient;
|
||||
@Mock
|
||||
HttpResponse<String> httpResponse;
|
||||
|
||||
@Test
|
||||
void should_have_correct_name() {
|
||||
assertThat(new DuckDNS(httpClientFactory).name()).isEqualTo("duckdns");
|
||||
}
|
||||
|
||||
@Test
|
||||
void should_send_correct_request_if_ipv4_and_ipv6_are_present() throws IOException, InterruptedException {
|
||||
when(httpClientFactory.create()).thenReturn(httpClient);
|
||||
when(httpClient.send(any(), ArgumentMatchers.<HttpResponse.BodyHandler<String>>any())).thenReturn(httpResponse);
|
||||
DuckDNS dynDns = new DuckDNS(httpClientFactory);
|
||||
|
||||
dynDns.update(
|
||||
"example.com",
|
||||
new IPs("ipv4", "ipv6"),
|
||||
new DyndnsAuth(null, null, "token")
|
||||
);
|
||||
|
||||
ArgumentCaptor<HttpRequest> requestCaptor = ArgumentCaptor.forClass(HttpRequest.class);
|
||||
verify(httpClient).send(requestCaptor.capture(), any());
|
||||
|
||||
HttpRequest capturedRequest = requestCaptor.getValue();
|
||||
|
||||
assertThat(capturedRequest.uri().toString())
|
||||
.isEqualTo("https://www.duckdns.org/update?domains=example.com&token=token&ip=ipv4&ipv6=ipv6");
|
||||
|
||||
assertThat(capturedRequest.headers()
|
||||
.allValues("User-Agent")).containsExactly("ddns-client");
|
||||
}
|
||||
|
||||
@Test
|
||||
void should_send_correct_request_if_only_ipv4_is_present() throws IOException, InterruptedException {
|
||||
when(httpClientFactory.create()).thenReturn(httpClient);
|
||||
when(httpClient.send(any(), ArgumentMatchers.<HttpResponse.BodyHandler<String>>any())).thenReturn(httpResponse);
|
||||
DuckDNS dynDns = new DuckDNS(httpClientFactory);
|
||||
|
||||
dynDns.update(
|
||||
"example.com",
|
||||
new IPs("ipv4", null),
|
||||
new DyndnsAuth(null, null, "token")
|
||||
);
|
||||
|
||||
ArgumentCaptor<HttpRequest> requestCaptor = ArgumentCaptor.forClass(HttpRequest.class);
|
||||
verify(httpClient).send(requestCaptor.capture(), any());
|
||||
|
||||
HttpRequest capturedRequest = requestCaptor.getValue();
|
||||
|
||||
assertThat(capturedRequest.uri().toString())
|
||||
.isEqualTo("https://www.duckdns.org/update?domains=example.com&token=token&ip=ipv4");
|
||||
}
|
||||
|
||||
@Test
|
||||
void should_send_correct_request_if_only_ipv6_is_present() throws IOException, InterruptedException {
|
||||
when(httpClientFactory.create()).thenReturn(httpClient);
|
||||
when(httpClient.send(any(), ArgumentMatchers.<HttpResponse.BodyHandler<String>>any())).thenReturn(httpResponse);
|
||||
DuckDNS dynDns = new DuckDNS(httpClientFactory);
|
||||
|
||||
dynDns.update(
|
||||
"example.com",
|
||||
new IPs(null, "ipv6"),
|
||||
new DyndnsAuth(null, null, "token")
|
||||
);
|
||||
|
||||
ArgumentCaptor<HttpRequest> requestCaptor = ArgumentCaptor.forClass(HttpRequest.class);
|
||||
verify(httpClient).send(requestCaptor.capture(), any());
|
||||
|
||||
HttpRequest capturedRequest = requestCaptor.getValue();
|
||||
|
||||
assertThat(capturedRequest.uri().toString())
|
||||
.isEqualTo("https://www.duckdns.org/update?domains=example.com&token=token&ipv6=ipv6");
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue