mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-06 05:17:49 +00:00
4316992d95
git-subtree-dir: lib/protocol git-subtree-mainline:5ecb8bdd8a
git-subtree-split:f91191218b
50 lines
941 B
Go
50 lines
941 B
Go
// Copyright (C) 2015 The Protocol Authors.
|
|
|
|
package protocol
|
|
|
|
import "testing"
|
|
|
|
func TestCompressionMarshal(t *testing.T) {
|
|
uTestcases := []struct {
|
|
s string
|
|
c Compression
|
|
}{
|
|
{"true", CompressMetadata},
|
|
{"false", CompressNever},
|
|
{"never", CompressNever},
|
|
{"metadata", CompressMetadata},
|
|
{"always", CompressAlways},
|
|
{"whatever", CompressMetadata},
|
|
}
|
|
|
|
mTestcases := []struct {
|
|
s string
|
|
c Compression
|
|
}{
|
|
{"never", CompressNever},
|
|
{"metadata", CompressMetadata},
|
|
{"always", CompressAlways},
|
|
}
|
|
|
|
var c Compression
|
|
for _, tc := range uTestcases {
|
|
err := c.UnmarshalText([]byte(tc.s))
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
if c != tc.c {
|
|
t.Errorf("%s unmarshalled to %d, not %d", tc.s, c, tc.c)
|
|
}
|
|
}
|
|
|
|
for _, tc := range mTestcases {
|
|
bs, err := tc.c.MarshalText()
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
if s := string(bs); s != tc.s {
|
|
t.Errorf("%d marshalled to %q, not %q", tc.c, s, tc.s)
|
|
}
|
|
}
|
|
}
|