drone-yaml/yaml/unit_test.go

54 lines
835 B
Go
Raw Normal View History

2021-09-19 13:49:54 +02:00
// Copyright (c), the Drone Authors.
// Copyright (c) 2021, Robert Kaussow <mail@thegeeklab.de>
2019-02-10 20:00:16 +01:00
2019-01-23 00:44:17 +01:00
package yaml
import (
"testing"
"gopkg.in/yaml.v2"
2019-01-23 00:44:17 +01:00
)
func TestBytesSize(t *testing.T) {
tests := []struct {
yaml string
size int64
text string
}{
{
yaml: "1KiB",
size: 1024,
text: "1KiB",
},
{
yaml: "100MiB",
2019-01-23 00:44:17 +01:00
size: 104857600,
text: "100MiB",
},
{
yaml: "1024",
size: 1024,
text: "1KiB",
},
}
for _, test := range tests {
in := []byte(test.yaml)
out := BytesSize(0)
2019-01-23 00:44:17 +01:00
err := yaml.Unmarshal(in, &out)
if err != nil {
t.Error(err)
2019-01-23 00:44:17 +01:00
return
}
2019-01-23 00:44:17 +01:00
if got, want := int64(out), test.size; got != want {
t.Errorf("Want byte size %d, got %d", want, got)
}
2019-01-23 00:44:17 +01:00
if got, want := out.String(), test.text; got != want {
t.Errorf("Want byte text %s, got %s", want, got)
}
}
}