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 54 55
|
package hdfs
import (
"os"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestContentSummaryDir(t *testing.T) {
client := getClient(t)
baleet(t, "/_test/dirforcs")
mkdirp(t, "/_test/dirforcs/1")
mkdirp(t, "/_test/dirforcs/2")
touch(t, "/_test/dirforcs/foo")
touch(t, "/_test/dirforcs/1/bar")
resp, err := client.GetContentSummary("/_test/dirforcs")
require.NoError(t, err)
assert.EqualValues(t, 2, resp.FileCount())
assert.EqualValues(t, 3, resp.DirectoryCount())
}
func TestContentSummaryFile(t *testing.T) {
client := getClient(t)
resp, err := client.GetContentSummary("/_test/foo.txt")
require.NoError(t, err)
assert.EqualValues(t, 4, resp.Size())
assert.True(t, resp.SizeAfterReplication() >= 4)
assert.EqualValues(t, 1, resp.FileCount())
assert.EqualValues(t, 0, resp.DirectoryCount())
}
func TestContentSummaryNonExistent(t *testing.T) {
client := getClient(t)
resp, err := client.GetContentSummary("/_test/nonexistent")
assertPathError(t, err, "content summary", "/_test/nonexistent", os.ErrNotExist)
assert.Nil(t, resp)
}
func TestContentSummaryDirWithoutPermission(t *testing.T) {
client2 := getClientForUser(t, "gohdfs2")
mkdirpMask(t, "/_test/accessdenied", 0700)
touchMask(t, "/_test/accessdenied/foo", 0600)
_, err := client2.GetContentSummary("/_test/accessdenied/foo")
assertPathError(t, err, "content summary", "/_test/accessdenied/foo", os.ErrPermission)
}
|