Skip to content

Commit dd97a77

Browse files
authored
Merge pull request #143 from andylintner/unregister-service-fix
Fix for unregistering service when re-advertising
2 parents 06e0165 + e4085bd commit dd97a77

File tree

4 files changed

+90
-4
lines changed

4 files changed

+90
-4
lines changed

CHANGES.md

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
* Supported valid states for Thermostat, SecuritySystem, HeaterCooler and HumidifierDehumidifier [#108] [#120](https://github.com/hap-java/HAP-Java/pull/120)
1616
* Support for FilterMaintenance. Can be used as a linked service for an Air Purifier [#124](https://github.com/hap-java/HAP-Java/pull/124)
1717

18+
## Fixes
19+
20+
* Fix for re-advertising service when using alternative jMDNS implementations.
21+
1822
# HAP-Java 1.1.5
1923

2024
## Fixes

pom.xml

+9-2
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,15 @@
148148

149149
<dependency>
150150
<groupId>org.mockito</groupId>
151-
<artifactId>mockito-all</artifactId>
152-
<version>1.10.19</version>
151+
<artifactId>mockito-core</artifactId>
152+
<version>3.8.0</version>
153+
<scope>test</scope>
154+
</dependency>
155+
156+
<dependency>
157+
<groupId>org.assertj</groupId>
158+
<artifactId>assertj-core</artifactId>
159+
<version>3.19.0</version>
153160
<scope>test</scope>
154161
</dependency>
155162

src/main/java/io/github/hapjava/server/impl/jmdns/JmdnsHomekitAdvertiser.java

+11-2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ public class JmdnsHomekitAdvertiser {
2626
private String setupId;
2727
private int port;
2828
private int configurationIndex;
29+
private ServiceInfo serviceInfo;
2930

3031
public JmdnsHomekitAdvertiser(JmDNS jmdns) {
3132
this.jmdns = jmdns;
@@ -87,12 +88,20 @@ public synchronized void setConfigurationIndex(int revision) throws IOException
8788
}
8889

8990
private void unregisterService() {
90-
jmdns.unregisterService(buildServiceInfo());
91+
if (serviceInfo != null) {
92+
jmdns.unregisterService(serviceInfo);
93+
serviceInfo = null;
94+
}
9195
}
9296

9397
private void registerService() throws IOException {
9498
logger.info("Registering " + SERVICE_TYPE + " on port " + port);
95-
jmdns.registerService(buildServiceInfo());
99+
if (this.serviceInfo != null) {
100+
throw new AssertionError(
101+
"Registering an already registered service without unregistering first is not allowed");
102+
}
103+
serviceInfo = buildServiceInfo();
104+
jmdns.registerService(serviceInfo);
96105
}
97106

98107
private ServiceInfo buildServiceInfo() {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
package io.github.hapjava.server.impl.jmdns;
2+
3+
import static org.assertj.core.api.Assertions.assertThat;
4+
import static org.assertj.core.api.Assertions.assertThatThrownBy;
5+
import static org.mockito.Mockito.mock;
6+
import static org.mockito.Mockito.verify;
7+
8+
import java.io.IOException;
9+
import java.net.UnknownHostException;
10+
import javax.jmdns.JmDNS;
11+
import javax.jmdns.ServiceInfo;
12+
import org.junit.Before;
13+
import org.junit.Test;
14+
import org.mockito.ArgumentCaptor;
15+
16+
public class JmdnsHomekitAdvertiserTest {
17+
18+
JmdnsHomekitAdvertiser subject;
19+
JmDNS jmdns;
20+
21+
@Before
22+
public void setup() throws UnknownHostException, IOException {
23+
jmdns = mock(JmDNS.class);
24+
subject = new JmdnsHomekitAdvertiser(jmdns);
25+
}
26+
27+
@Test
28+
public void testAdvertiseTwiceFails() throws Exception {
29+
advertise();
30+
assertThatThrownBy(() -> advertise()).isNotNull();
31+
}
32+
33+
/*
34+
* Verify that the unregister call is for the initial registered service
35+
* when changing discoverability causes advertising to be toggled.
36+
*/
37+
@Test
38+
public void testSetDiscoverableAfterAdvertise() throws Exception {
39+
subject.setDiscoverable(false);
40+
advertise();
41+
subject.setDiscoverable(true);
42+
assertThat(getArgumentFromUnregister().getPropertyString("sf")).isEqualTo("0");
43+
}
44+
45+
/*
46+
* Verify that the unregister call is for the initial registered service
47+
* when changing the config index causes advertising to be toggled.
48+
*/
49+
@Test
50+
public void testSetConfigurationIndex() throws Exception {
51+
subject.setConfigurationIndex(1);
52+
advertise();
53+
subject.setConfigurationIndex(2);
54+
assertThat(getArgumentFromUnregister().getPropertyString("c#")).isEqualTo("1");
55+
}
56+
57+
private ServiceInfo getArgumentFromUnregister() {
58+
ArgumentCaptor<ServiceInfo> serviceInfoCaptor = ArgumentCaptor.forClass(ServiceInfo.class);
59+
verify(jmdns).unregisterService(serviceInfoCaptor.capture());
60+
return serviceInfoCaptor.getValue();
61+
}
62+
63+
private void advertise() throws Exception {
64+
subject.advertise("test", "00:00:00:00:00:00", 1234, 1, "1");
65+
}
66+
}

0 commit comments

Comments
 (0)