From 249b5fc33e29b4688e68a7d68f640504f47e4c60 Mon Sep 17 00:00:00 2001 From: xis Date: Sun, 22 Oct 2023 14:50:02 +0200 Subject: [PATCH] Polling condition added --- .../dlna/DlnaServiceIntTest.groovy | 22 +++++++++++-------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/src/integration/groovy/net/schowek/nextclouddlna/dlna/DlnaServiceIntTest.groovy b/src/integration/groovy/net/schowek/nextclouddlna/dlna/DlnaServiceIntTest.groovy index f79b0de..87c6c7d 100644 --- a/src/integration/groovy/net/schowek/nextclouddlna/dlna/DlnaServiceIntTest.groovy +++ b/src/integration/groovy/net/schowek/nextclouddlna/dlna/DlnaServiceIntTest.groovy @@ -8,6 +8,7 @@ import org.jupnp.model.message.header.STAllHeader import org.jupnp.model.message.header.UpnpHeader import org.jupnp.model.types.HostPort import org.springframework.beans.factory.annotation.Autowired +import spock.util.concurrent.PollingConditions import support.IntegrationSpecification import support.beans.dlna.upnp.UpnpServiceConfigurationInt @@ -23,6 +24,7 @@ class DlnaServiceIntTest extends IntegrationSpecification { private UpnpService upnpService @Autowired private MediaServer mediaServer + def conditions = new PollingConditions(timeout: 1) def "should send initial multicast Upnp datagrams on start"() { given: @@ -36,16 +38,18 @@ class DlnaServiceIntTest extends IntegrationSpecification { sut.start() then: - configuration.outgoingDatagramMessages.any() - configuration.outgoingDatagramMessages[0].class == OutgoingSearchRequest - with(configuration.outgoingDatagramMessages[0] as OutgoingSearchRequest) { - assert it.operation.method == MSEARCH - assert it.destinationAddress == InetAddress.getByName(IPV4_UPNP_MULTICAST_GROUP) - assert it.destinationPort == UPNP_MULTICAST_PORT + conditions.eventually { + assert configuration.outgoingDatagramMessages.any() + assert configuration.outgoingDatagramMessages[0].class == OutgoingSearchRequest + with(configuration.outgoingDatagramMessages[0] as OutgoingSearchRequest) { + assert it.operation.method == MSEARCH + assert it.destinationAddress == InetAddress.getByName(IPV4_UPNP_MULTICAST_GROUP) + assert it.destinationPort == UPNP_MULTICAST_PORT - assert header(it, MAN, MANHeader.class) == DISCOVER.headerString - assert header(it, ST, STAllHeader.class).headerString == ALL.headerString - assert header(it, HOST, HostHeader.class) == new HostPort(IPV4_UPNP_MULTICAST_GROUP, UPNP_MULTICAST_PORT) + assert header(it, MAN, MANHeader.class) == DISCOVER.headerString + assert header(it, ST, STAllHeader.class).headerString == ALL.headerString + assert header(it, HOST, HostHeader.class) == new HostPort(IPV4_UPNP_MULTICAST_GROUP, UPNP_MULTICAST_PORT) + } } }