mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-06 05:17:49 +00:00
50 lines
968 B
Go
50 lines
968 B
Go
// Copyright (C) 2015 The Protocol Authors.
|
|
|
|
package protocol
|
|
|
|
import "testing"
|
|
|
|
func TestCompressionMarshal(t *testing.T) {
|
|
uTestcases := []struct {
|
|
s string
|
|
c Compression
|
|
}{
|
|
{"true", CompressionMetadata},
|
|
{"false", CompressionNever},
|
|
{"never", CompressionNever},
|
|
{"metadata", CompressionMetadata},
|
|
{"always", CompressionAlways},
|
|
{"whatever", CompressionMetadata},
|
|
}
|
|
|
|
mTestcases := []struct {
|
|
s string
|
|
c Compression
|
|
}{
|
|
{"never", CompressionNever},
|
|
{"metadata", CompressionMetadata},
|
|
{"always", CompressionAlways},
|
|
}
|
|
|
|
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)
|
|
}
|
|
}
|
|
}
|