Replaced legacy `*.orly` module imports with `next.orly.dev/pkg` paths across the codebase for consistency. Removed legacy `go.mod` files from sub-packages, consolidating dependency management. Added Dockerfiles and configurations for benchmarking environments.
67 lines
1.4 KiB
Go
67 lines
1.4 KiB
Go
package noticeenvelope
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"lol.mleku.dev/chk"
|
|
"next.orly.dev/pkg/encoders/envelopes"
|
|
"next.orly.dev/pkg/encoders/envelopes/messages"
|
|
"next.orly.dev/pkg/utils"
|
|
)
|
|
|
|
func TestMarshalUnmarshal(t *testing.T) {
|
|
var err error
|
|
rb, rb1, rb2 := make([]byte, 0, 65535), make([]byte, 0, 65535), make(
|
|
[]byte, 0, 65535,
|
|
)
|
|
for _ = range 1000 {
|
|
req := NewFrom(messages.RandomMessage())
|
|
rb = req.Marshal(rb)
|
|
rb1 = rb1[:len(rb)]
|
|
copy(rb1, rb)
|
|
var rem []byte
|
|
var l string
|
|
if l, rb, err = envelopes.Identify(rb); chk.E(err) {
|
|
t.Fatal(err)
|
|
}
|
|
if l != L {
|
|
t.Fatalf("invalid sentinel %s, expect %s", l, L)
|
|
}
|
|
req2 := New()
|
|
if rem, err = req2.Unmarshal(rb); chk.E(err) {
|
|
t.Fatal(err)
|
|
}
|
|
// log.I.Ln(req2.ID)
|
|
if len(rem) > 0 {
|
|
t.Fatalf(
|
|
"unmarshal failed, remainder\n%d %s",
|
|
len(rem), rem,
|
|
)
|
|
}
|
|
rb2 = req2.Marshal(rb2)
|
|
if !utils.FastEqual(rb1, rb2) {
|
|
if len(rb1) != len(rb2) {
|
|
t.Fatalf(
|
|
"unmarshal failed, different lengths\n%d %s\n%d %s\n",
|
|
len(rb1), rb1, len(rb2), rb2,
|
|
)
|
|
}
|
|
for i := range rb1 {
|
|
if rb1[i] != rb2[i] {
|
|
t.Fatalf(
|
|
"unmarshal failed, difference at position %d\n"+
|
|
"%d %s\n%s\n%d %s\n%s\n",
|
|
i, len(rb1), rb1[:i], rb1[i:], len(rb2), rb2[:i],
|
|
rb2[i:],
|
|
)
|
|
}
|
|
}
|
|
t.Fatalf(
|
|
"unmarshal failed\n%d %s\n%d %s\n",
|
|
len(rb1), rb1, len(rb2), rb2,
|
|
)
|
|
}
|
|
rb, rb1, rb2 = rb[:0], rb1[:0], rb2[:0]
|
|
}
|
|
}
|