Add lib/diskusage to measure used/free on disks

This commit is contained in:
Nick Craig-Wood
2023-09-05 10:29:05 +01:00
parent 8c25a15a40
commit 0fb36562dd
7 changed files with 145 additions and 0 deletions

View File

@ -0,0 +1,23 @@
package diskusage
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestNew(t *testing.T) {
info, err := New(".")
if err == ErrUnsupported {
t.Skip(err)
}
require.NoError(t, err)
t.Logf("Free %16d", info.Free)
t.Logf("Available %16d", info.Available)
t.Logf("Total %16d", info.Total)
assert.True(t, info.Total != 0)
assert.True(t, info.Total > info.Free)
assert.True(t, info.Total > info.Available)
assert.True(t, info.Free >= info.Available)
}