summaryrefslogtreecommitdiff
path: root/pkg/btrfs/btrfsvol/addr_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/btrfs/btrfsvol/addr_test.go')
-rw-r--r--pkg/btrfs/btrfsvol/addr_test.go36
1 files changed, 0 insertions, 36 deletions
diff --git a/pkg/btrfs/btrfsvol/addr_test.go b/pkg/btrfs/btrfsvol/addr_test.go
deleted file mode 100644
index cfc5053..0000000
--- a/pkg/btrfs/btrfsvol/addr_test.go
+++ /dev/null
@@ -1,36 +0,0 @@
-package btrfsvol_test
-
-import (
- "fmt"
- "testing"
-
- "github.com/stretchr/testify/assert"
-
- "lukeshu.com/btrfs-tools/pkg/btrfs/btrfsvol"
-)
-
-func TestAddrFormat(t *testing.T) {
- t.Parallel()
- type TestCase struct {
- InputAddr btrfsvol.LogicalAddr
- InputFmt string
- Output string
- }
- addr := btrfsvol.LogicalAddr(0x3a41678000)
- testcases := map[string]TestCase{
- "v": {InputAddr: addr, InputFmt: "%v", Output: "0x0000003a41678000"},
- "s": {InputAddr: addr, InputFmt: "%s", Output: "0x0000003a41678000"},
- "q": {InputAddr: addr, InputFmt: "%q", Output: `"0x0000003a41678000"`},
- "x": {InputAddr: addr, InputFmt: "%x", Output: "3a41678000"},
- "d": {InputAddr: addr, InputFmt: "%d", Output: "250205405184"},
- "neg": {InputAddr: -1, InputFmt: "%v", Output: "-0x000000000000001"},
- }
- for tcName, tc := range testcases {
- tc := tc
- t.Run(tcName, func(t *testing.T) {
- t.Parallel()
- actual := fmt.Sprintf(tc.InputFmt, tc.InputAddr)
- assert.Equal(t, tc.Output, actual)
- })
- }
-}