// Parse parses the input commandline string (cmd, flags, and args). // returns the corresponding command Request object. func Parse(input []string, stdin *os.File, root *cmds.Command) (cmds.Request, *cmds.Command, []string, error) { path, opts, stringVals, cmd, err := parseOpts(input, root) if err != nil { return nil, nil, path, err } optDefs, err := root.GetOptions(path) if err != nil { return nil, cmd, path, err } req, err := cmds.NewRequest(path, opts, nil, nil, cmd, optDefs) if err != nil { return nil, cmd, path, err } // if -r is provided, and it is associated with the package builtin // recursive path option, allow recursive file paths recursiveOpt := req.Option(cmds.RecShort) recursive := false if recursiveOpt != nil && recursiveOpt.Definition() == cmds.OptionRecursivePath { recursive, _, err = recursiveOpt.Bool() if err != nil { return req, nil, nil, util.ErrCast() } } stringArgs, fileArgs, err := parseArgs(stringVals, stdin, cmd.Arguments, recursive, root) if err != nil { return req, cmd, path, err } req.SetArguments(stringArgs) file := files.NewSliceFile("", "", fileArgs) req.SetFiles(file) err = cmd.CheckArguments(req) if err != nil { return req, cmd, path, err } return req, cmd, path, nil }
func TestOutput(t *testing.T) { text := "Some text! :)" fileset := []files.File{ files.NewReaderFile("file.txt", "file.txt", ioutil.NopCloser(strings.NewReader(text)), nil), files.NewSliceFile("boop", "boop", []files.File{ files.NewReaderFile("boop/a.txt", "boop/a.txt", ioutil.NopCloser(strings.NewReader("bleep")), nil), files.NewReaderFile("boop/b.txt", "boop/b.txt", ioutil.NopCloser(strings.NewReader("bloop")), nil), }), files.NewReaderFile("beep.txt", "beep.txt", ioutil.NopCloser(strings.NewReader("beep")), nil), } sf := files.NewSliceFile("", "", fileset) buf := make([]byte, 20) // testing output by reading it with the go stdlib "mime/multipart" Reader mfr := NewMultiFileReader(sf, true) mpReader := multipart.NewReader(mfr, mfr.Boundary()) part, err := mpReader.NextPart() if part == nil || err != nil { t.Error("Expected non-nil part, nil error") } mpf, err := files.NewFileFromPart(part) if mpf == nil || err != nil { t.Error("Expected non-nil MultipartFile, nil error") } if mpf.IsDirectory() { t.Error("Expected file to not be a directory") } if mpf.FileName() != "file.txt" { t.Error("Expected filename to be \"file.txt\"") } if n, err := mpf.Read(buf); n != len(text) || err != nil { t.Error("Expected to read from file", n, err) } if string(buf[:len(text)]) != text { t.Error("Data read was different than expected") } part, err = mpReader.NextPart() if part == nil || err != nil { t.Error("Expected non-nil part, nil error") } mpf, err = files.NewFileFromPart(part) if mpf == nil || err != nil { t.Error("Expected non-nil MultipartFile, nil error") } if !mpf.IsDirectory() { t.Error("Expected file to be a directory") } if mpf.FileName() != "boop" { t.Error("Expected filename to be \"boop\"") } child, err := mpf.NextFile() if child == nil || err != nil { t.Error("Expected to be able to read a child file") } if child.IsDirectory() { t.Error("Expected file to not be a directory") } if child.FileName() != "boop/a.txt" { t.Error("Expected filename to be \"some/file/path\"") } child, err = mpf.NextFile() if child == nil || err != nil { t.Error("Expected to be able to read a child file") } if child.IsDirectory() { t.Error("Expected file to not be a directory") } if child.FileName() != "boop/b.txt" { t.Error("Expected filename to be \"some/file/path\"") } child, err = mpf.NextFile() if child != nil || err != io.EOF { t.Error("Expected to get (nil, io.EOF)") } part, err = mpReader.NextPart() if part == nil || err != nil { t.Error("Expected non-nil part, nil error") } mpf, err = files.NewFileFromPart(part) if mpf == nil || err != nil { t.Error("Expected non-nil MultipartFile, nil error") } part, err = mpReader.NextPart() if part != nil || err != io.EOF { t.Error("Expected to get (nil, io.EOF)") } }