97 lines
1.5 KiB
Go
97 lines
1.5 KiB
Go
package mapblockparser
|
|
|
|
import (
|
|
"fmt"
|
|
"io/ioutil"
|
|
"strconv"
|
|
"testing"
|
|
"mapserver/coords"
|
|
)
|
|
|
|
func TestReadU16(t *testing.T) {
|
|
v := readU16([]byte{0x00, 0x00}, 0)
|
|
if v != 0 {
|
|
t.Error(v)
|
|
}
|
|
|
|
v = readU16([]byte{0x00, 0x01}, 0)
|
|
if v != 1 {
|
|
t.Error(v)
|
|
}
|
|
|
|
v = readU16([]byte{0x01, 0x00}, 0)
|
|
if v != 256 {
|
|
t.Error(v)
|
|
}
|
|
|
|
}
|
|
func TestReadU32(t *testing.T) {
|
|
v := readU32([]byte{0x00, 0x00, 0x00, 0x00}, 0)
|
|
if v != 0 {
|
|
t.Error(v)
|
|
}
|
|
}
|
|
|
|
func TestParse(t *testing.T) {
|
|
|
|
data, err := ioutil.ReadFile("testdata/0.0.0")
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
mapblock, err := Parse(data, 0, coords.NewMapBlockCoords(0,0,0))
|
|
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
if mapblock.Version != 28 {
|
|
t.Error("wrong mapblock version: " + strconv.Itoa(int(mapblock.Version)))
|
|
}
|
|
|
|
if !mapblock.Underground {
|
|
t.Error("Underground flag")
|
|
}
|
|
|
|
if len(mapblock.Mapdata) != 16384 {
|
|
t.Error("Mapdata length wrong")
|
|
}
|
|
|
|
pairs := mapblock.Metadata.GetPairsMap(0)
|
|
if pairs["owner"] != "pipo" {
|
|
t.Error(pairs["owner"])
|
|
}
|
|
}
|
|
|
|
func TestParse2(t *testing.T) {
|
|
|
|
data, err := ioutil.ReadFile("testdata/11.0.2")
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
mapblock, err := Parse(data, 0, coords.NewMapBlockCoords(0,0,0))
|
|
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
for k, v := range mapblock.BlockMapping {
|
|
fmt.Println("Key", k, "Value", v)
|
|
}
|
|
}
|
|
|
|
func TestParse3(t *testing.T) {
|
|
|
|
data, err := ioutil.ReadFile("testdata/0.1.0")
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
|
|
_, err = Parse(data, 0, coords.NewMapBlockCoords(0,0,0))
|
|
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
}
|