2020-09-08 15:58:35 -04:00
|
|
|
package d2datautils
|
2020-01-26 00:39:13 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestStreamWriterByte(t *testing.T) {
|
|
|
|
sr := CreateStreamWriter()
|
|
|
|
data := []byte{0x12, 0x34, 0x56, 0x78}
|
2020-07-08 09:16:56 -04:00
|
|
|
|
2020-01-26 00:39:13 -05:00
|
|
|
for _, d := range data {
|
|
|
|
sr.PushByte(d)
|
|
|
|
}
|
2020-07-08 09:16:56 -04:00
|
|
|
|
2020-01-26 00:39:13 -05:00
|
|
|
output := sr.GetBytes()
|
|
|
|
for i, d := range data {
|
|
|
|
if output[i] != d {
|
|
|
|
t.Fatalf("sr.PushByte() pushed %X, but wrote %X instead", d, output[i])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStreamWriterWord(t *testing.T) {
|
|
|
|
sr := CreateStreamWriter()
|
|
|
|
data := []byte{0x12, 0x34, 0x56, 0x78}
|
2020-07-08 09:16:56 -04:00
|
|
|
|
2020-01-26 00:39:13 -05:00
|
|
|
sr.PushUint16(0x3412)
|
|
|
|
sr.PushUint16(0x7856)
|
2020-07-08 09:16:56 -04:00
|
|
|
|
2020-01-26 00:39:13 -05:00
|
|
|
output := sr.GetBytes()
|
|
|
|
for i, d := range data {
|
|
|
|
if output[i] != d {
|
|
|
|
t.Fatalf("sr.PushWord() pushed byte %X to %d, but %X was expected instead", output[i], i, d)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStreamWriterDword(t *testing.T) {
|
|
|
|
sr := CreateStreamWriter()
|
|
|
|
data := []byte{0x12, 0x34, 0x56, 0x78}
|
2020-07-08 09:16:56 -04:00
|
|
|
|
2020-01-26 00:39:13 -05:00
|
|
|
sr.PushUint32(0x78563412)
|
2020-07-08 09:16:56 -04:00
|
|
|
|
2020-01-26 00:39:13 -05:00
|
|
|
output := sr.GetBytes()
|
|
|
|
for i, d := range data {
|
|
|
|
if output[i] != d {
|
|
|
|
t.Fatalf("sr.PushDword() pushed byte %X to %d, but %X was expected instead", output[i], i, d)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|