summaryrefslogtreecommitdiff
path: root/pkg/btrfs/internal/addr_test.go
blob: 7af87bdd65c009507b4b7338107fc8e1e4bb6aee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package internal_test

import (
	"fmt"
	"testing"

	"github.com/stretchr/testify/assert"

	"lukeshu.com/btrfs-tools/pkg/btrfs/internal"
)

func TestAddrFormat(t *testing.T) {
	t.Parallel()
	type TestCase struct {
		InputAddr internal.LogicalAddr
		InputFmt  string
		Output    string
	}
	addr := internal.LogicalAddr(0x3a41678000)
	testcases := map[string]TestCase{
		"v":   TestCase{InputAddr: addr, InputFmt: "%v", Output: "0x0000003a41678000"},
		"s":   TestCase{InputAddr: addr, InputFmt: "%s", Output: "0x0000003a41678000"},
		"q":   TestCase{InputAddr: addr, InputFmt: "%q", Output: `"0x0000003a41678000"`},
		"x":   TestCase{InputAddr: addr, InputFmt: "%x", Output: "3a41678000"},
		"d":   TestCase{InputAddr: addr, InputFmt: "%d", Output: "250205405184"},
		"neg": TestCase{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)
		})
	}
}