mirror of
https://github.com/ipfs/kubo.git
synced 2025-09-15 03:03:08 +08:00

- Modified Godeps/Godeps.json by hand - [TEST] Updated welcome docs hash to sharness - [TEST] Updated contact doc - [TEST] disabled breaking test (t0080-repo refs local)
107 lines
2.9 KiB
Go
107 lines
2.9 KiB
Go
package http
|
|
|
|
import (
|
|
"io"
|
|
"io/ioutil"
|
|
"mime/multipart"
|
|
"strings"
|
|
"testing"
|
|
|
|
files "github.com/ipfs/go-ipfs/commands/files"
|
|
)
|
|
|
|
func TestOutput(t *testing.T) {
|
|
text := "Some text! :)"
|
|
fileset := []files.File{
|
|
files.NewReaderFile("file.txt", ioutil.NopCloser(strings.NewReader(text)), nil),
|
|
files.NewSliceFile("boop", []files.File{
|
|
files.NewReaderFile("boop/a.txt", ioutil.NopCloser(strings.NewReader("bleep")), nil),
|
|
files.NewReaderFile("boop/b.txt", ioutil.NopCloser(strings.NewReader("bloop")), nil),
|
|
}),
|
|
files.NewReaderFile("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)")
|
|
}
|
|
}
|