Split Up GamePacketTest (#102)

* split up GamePacketTest into separate testing files

* PR wants this file?
This commit is contained in:
Fate-JH 2017-03-04 10:06:10 -05:00 committed by pschord
parent b00748727e
commit 6001446cd5
68 changed files with 4061 additions and 3597 deletions

View file

@ -0,0 +1,31 @@
// Copyright (c) 2016 PSForever.net to present
package game
import org.specs2.mutable._
import net.psforever.packet._
import net.psforever.packet.game._
import scodec.bits._
class LoadMapMessageTest extends Specification {
val string = hex"31 85 6D61703130 83 7A3130 0FA0 19000000 F6 F1 60 86 80"
"decode" in {
PacketCoding.DecodePacket(string).require match {
case LoadMapMessage(map_name, nav_map_name, unk1, unk2, weapons_unlocked, unk3) =>
map_name mustEqual "map10"
nav_map_name mustEqual "z10"
unk1 mustEqual 40975
unk2 mustEqual 25
weapons_unlocked mustEqual true
unk3 mustEqual 230810349
case _ =>
ko
}
}
"encode" in {
val msg = LoadMapMessage("map10","z10",40975,25,true,230810349)
val pkt = PacketCoding.EncodePacket(msg).require.toByteVector
pkt mustEqual string
}
}