mirror of
https://github.com/2revoemag/PSF-BotServer.git
synced 2026-03-28 08:19:15 +00:00
added initial AvatarSearchCriteriaMessage packet and tests; worked ASCM into WSA login workflow
This commit is contained in:
parent
0578d291a5
commit
2475b468b8
5 changed files with 99 additions and 6 deletions
|
|
@ -41,12 +41,12 @@ class DensityLevelUpdateMessageTest extends Specification {
|
|||
}
|
||||
|
||||
"encode (failure; list number too big)" in {
|
||||
val msg1 = DensityLevelUpdateMessage(1, 19999, List(0,0, 0,0, 0,0, 0,8))
|
||||
PacketCoding.EncodePacket(msg1).isSuccessful mustEqual false
|
||||
val msg = DensityLevelUpdateMessage(1, 19999, List(0,0, 0,0, 0,0, 0,8))
|
||||
PacketCoding.EncodePacket(msg).isSuccessful mustEqual false
|
||||
}
|
||||
|
||||
"encode (failure; list number too small)" in {
|
||||
val msg1 = DensityLevelUpdateMessage(1, 19999, List(0,0, 0,0, 0,-1, 0,0))
|
||||
PacketCoding.EncodePacket(msg1).isSuccessful mustEqual false
|
||||
val msg = DensityLevelUpdateMessage(1, 19999, List(0,0, 0,0, 0,-1, 0,0))
|
||||
PacketCoding.EncodePacket(msg).isSuccessful mustEqual false
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue