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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
package common
import (
"testing"
"github.com/dundee/gdu/v5/pkg/fs"
"github.com/stretchr/testify/assert"
)
func TestFormatNumber(t *testing.T) {
res := FormatNumber(1234567890)
assert.Equal(t, "1,234,567,890", res)
}
func TestSetFollowSymlinks(t *testing.T) {
ui := UI{
Analyzer: &MockedAnalyzer{},
}
ui.SetFollowSymlinks(true)
assert.Equal(t, true, ui.Analyzer.(*MockedAnalyzer).FollowSymlinks)
}
type MockedAnalyzer struct {
FollowSymlinks bool
}
// AnalyzeDir returns dir with files with different size exponents
func (a *MockedAnalyzer) AnalyzeDir(
path string, ignore ShouldDirBeIgnored, enableGC bool,
) fs.Item {
return nil
}
// GetProgressChan returns always Done
func (a *MockedAnalyzer) GetProgressChan() chan CurrentProgress {
return make(chan CurrentProgress)
}
// GetDone returns always Done
func (a *MockedAnalyzer) GetDone() SignalGroup {
c := make(SignalGroup)
defer c.Broadcast()
return c
}
// ResetProgress does nothing
func (a *MockedAnalyzer) ResetProgress() {}
// SetFollowSymlinks does nothing
func (a *MockedAnalyzer) SetFollowSymlinks(v bool) {
a.FollowSymlinks = v
}
|