mirror of
https://github.com/2revoemag/PSF-BotServer.git
synced 2026-02-25 01:23:36 +00:00
29 lines
728 B
Scala
29 lines
728 B
Scala
// Copyright (c) 2017 PSForever
|
|
package game
|
|
|
|
import org.specs2.mutable._
|
|
import net.psforever.packet._
|
|
import net.psforever.packet.game._
|
|
import net.psforever.types.PlanetSideGUID
|
|
import scodec.bits._
|
|
|
|
class QuantityDeltaUpdateMessageTest extends Specification {
|
|
val string = hex"C4 5300 FBFFFFFF"
|
|
|
|
"decode" in {
|
|
PacketCoding.DecodePacket(string).require match {
|
|
case QuantityDeltaUpdateMessage(item_guid, quantity) =>
|
|
item_guid mustEqual PlanetSideGUID(83)
|
|
quantity mustEqual -5
|
|
case _ =>
|
|
ko
|
|
}
|
|
}
|
|
|
|
"encode" in {
|
|
val msg = QuantityDeltaUpdateMessage(PlanetSideGUID(83), -5)
|
|
val pkt = PacketCoding.EncodePacket(msg).require.toByteVector
|
|
|
|
pkt mustEqual string
|
|
}
|
|
}
|