commonTest.com.ditchoom.mqtt3.controlpacket.PublishReceivedTests.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mqtt-4-models Show documentation
Show all versions of mqtt-4-models Show documentation
Defines the MQTT 3 and 4 control packets
package com.ditchoom.mqtt3.controlpacket
import com.ditchoom.buffer.PlatformBuffer
import com.ditchoom.buffer.allocate
import kotlin.test.Test
import kotlin.test.assertEquals
class PublishReceivedTests {
private val packetIdentifier = 2
@Test
fun packetIdentifier() {
val puback = PublishReceived(packetIdentifier)
assertEquals(4, puback.packetSize())
val buffer = PlatformBuffer.allocate(4)
puback.serialize(buffer)
buffer.resetForRead()
val pubackResult = ControlPacketV4.from(buffer) as PublishReceived
assertEquals(pubackResult.packetIdentifier, packetIdentifier)
}
@Test
fun packetIdentifierSendDefaults() {
val puback = PublishReceived(packetIdentifier)
assertEquals(4, puback.packetSize())
val buffer = PlatformBuffer.allocate(4)
puback.serialize(buffer)
buffer.resetForRead()
val pubackResult = ControlPacketV4.from(buffer) as PublishReceived
assertEquals(pubackResult.packetIdentifier, packetIdentifier)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy