mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-02 09:17:19 -04:00
45 lines
1000 B
Go
45 lines
1000 B
Go
package Common
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestStreamWriterByte(t *testing.T) {
|
|
sr := CreateStreamWriter()
|
|
data := []byte{0x12, 0x34, 0x56, 0x78}
|
|
for _, d := range data {
|
|
sr.PushByte(d)
|
|
}
|
|
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}
|
|
sr.PushWord(0x3412)
|
|
sr.PushWord(0x7856)
|
|
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}
|
|
sr.PushDword(0x78563412)
|
|
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)
|
|
}
|
|
}
|
|
}
|