mirror of
https://github.com/minio/minio.git
synced 2025-11-21 02:09:08 -05:00
A full restructure
This commit is contained in:
38
pkg/utils/execpipe_test.go
Normal file
38
pkg/utils/execpipe_test.go
Normal file
@@ -0,0 +1,38 @@
|
||||
// !build linux,amd64
|
||||
|
||||
package utils
|
||||
|
||||
import (
|
||||
"io/ioutil"
|
||||
"os/exec"
|
||||
"testing"
|
||||
|
||||
. "gopkg.in/check.v1"
|
||||
)
|
||||
|
||||
type MySuite struct{}
|
||||
|
||||
var _ = Suite(&MySuite{})
|
||||
|
||||
func Test(t *testing.T) { TestingT(t) }
|
||||
|
||||
func (s *MySuite) TestPiping(c *C) {
|
||||
// Collect directories from the command-line
|
||||
dirs := []string{"."}
|
||||
|
||||
// Run the command on each directory
|
||||
for _, dir := range dirs {
|
||||
// find $DIR -type f # Find all files
|
||||
ls := exec.Command("ls", dir, "-l")
|
||||
|
||||
// | sort -t. -k2 # Sort by file extension
|
||||
sort := exec.Command("sort", "-t.", "-k2")
|
||||
|
||||
// Run
|
||||
output, err := ExecPipe(ls, sort)
|
||||
c.Assert(err, IsNil)
|
||||
outputBytes, err := ioutil.ReadAll(output)
|
||||
c.Assert(err, IsNil)
|
||||
c.Assert(len(outputBytes), Not(Equals), 0)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user