mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-16 15:20:38 +00:00
86 lines
1.3 KiB
Go
86 lines
1.3 KiB
Go
package yaml
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"gopkg.in/yaml.v2"
|
|
)
|
|
|
|
func TestBytesSize(t *testing.T) {
|
|
tests := []struct {
|
|
yaml string
|
|
size int64
|
|
text string
|
|
}{
|
|
{
|
|
yaml: "1KiB",
|
|
size: 1024,
|
|
text: "1KiB",
|
|
},
|
|
{
|
|
yaml: "100Mi",
|
|
size: 104857600,
|
|
text: "100MiB",
|
|
},
|
|
{
|
|
yaml: "1024",
|
|
size: 1024,
|
|
text: "1KiB",
|
|
},
|
|
}
|
|
for _, test := range tests {
|
|
in := []byte(test.yaml)
|
|
out := BytesSize(0)
|
|
err := yaml.Unmarshal(in, &out)
|
|
if err != nil {
|
|
t.Error(err)
|
|
return
|
|
}
|
|
if got, want := int64(out), test.size; got != want {
|
|
t.Errorf("Want byte size %d, got %d", want, got)
|
|
}
|
|
if got, want := out.String(), test.text; got != want {
|
|
t.Errorf("Want byte text %s, got %s", want, got)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestMilliSize(t *testing.T) {
|
|
tests := []struct {
|
|
yaml string
|
|
size int64
|
|
text string
|
|
}{
|
|
{
|
|
yaml: "100m",
|
|
size: 100,
|
|
text: "100",
|
|
},
|
|
{
|
|
yaml: "1",
|
|
size: 1000,
|
|
text: "1000",
|
|
},
|
|
{
|
|
yaml: "0m",
|
|
size: 0,
|
|
text: "0",
|
|
},
|
|
}
|
|
for _, test := range tests {
|
|
in := []byte(test.yaml)
|
|
out := MilliSize(0)
|
|
err := yaml.Unmarshal(in, &out)
|
|
if err != nil {
|
|
t.Error(err)
|
|
return
|
|
}
|
|
if got, want := int64(out), test.size; got != want {
|
|
t.Errorf("Want millis %d, got %d", want, got)
|
|
}
|
|
if got, want := out.String(), test.text; got != want {
|
|
t.Errorf("Want text %s, got %s", want, got)
|
|
}
|
|
}
|
|
}
|