mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-10 18:25:17 +00:00
39 lines
851 B
Go
39 lines
851 B
Go
// Copyright 2023 The LevelDB-Go and Pebble Authors. All rights reserved. Use
|
|
// of this source code is governed by a BSD-style license that can be found in
|
|
// the LICENSE file.
|
|
|
|
package humanize
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"strconv"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/cockroachdb/datadriven"
|
|
)
|
|
|
|
func TestHumanize(t *testing.T) {
|
|
datadriven.RunTest(t, "testdata/humanize", func(t *testing.T, td *datadriven.TestData) string {
|
|
var c config
|
|
switch td.Cmd {
|
|
case "bytes":
|
|
c = Bytes
|
|
case "count":
|
|
c = Count
|
|
default:
|
|
td.Fatalf(t, "invalid command %q", td.Cmd)
|
|
}
|
|
var buf bytes.Buffer
|
|
for _, row := range strings.Split(td.Input, "\n") {
|
|
val, err := strconv.ParseInt(row, 10, 64)
|
|
if err != nil {
|
|
td.Fatalf(t, "error parsing %q: %v", row, err)
|
|
}
|
|
fmt.Fprintf(&buf, "%s\n", c.Int64(val))
|
|
}
|
|
return buf.String()
|
|
})
|
|
}
|