2015-03-02 20:25:03 +00:00
|
|
|
package asm
|
|
|
|
|
2015-03-03 19:23:04 +00:00
|
|
|
import (
|
2015-03-04 22:14:43 +00:00
|
|
|
"bytes"
|
|
|
|
"compress/gzip"
|
|
|
|
"crypto/sha1"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
2015-03-03 19:23:04 +00:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/vbatts/tar-split/tar/storage"
|
|
|
|
)
|
|
|
|
|
2015-03-04 22:14:43 +00:00
|
|
|
var entries = []struct {
|
|
|
|
Entry storage.Entry
|
|
|
|
Body []byte
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
Entry: storage.Entry{
|
|
|
|
Type: storage.FileType,
|
|
|
|
Name: "./hurr.txt",
|
|
|
|
Payload: []byte{2, 116, 164, 177, 171, 236, 107, 78},
|
|
|
|
Size: 20,
|
|
|
|
},
|
|
|
|
Body: []byte("imma hurr til I derp"),
|
2015-03-03 19:23:04 +00:00
|
|
|
},
|
2015-03-04 22:14:43 +00:00
|
|
|
{
|
|
|
|
Entry: storage.Entry{
|
|
|
|
Type: storage.FileType,
|
|
|
|
Name: "./ermahgerd.txt",
|
|
|
|
Payload: []byte{126, 72, 89, 239, 230, 252, 160, 187},
|
|
|
|
Size: 26,
|
|
|
|
},
|
|
|
|
|
|
|
|
Body: []byte("café con leche, por favor"),
|
2015-03-03 19:23:04 +00:00
|
|
|
},
|
|
|
|
}
|
2015-03-02 20:25:03 +00:00
|
|
|
|
2015-03-05 19:09:17 +00:00
|
|
|
func TestTarStreamOld(t *testing.T) {
|
2015-03-02 20:25:03 +00:00
|
|
|
fgp := NewBufferFileGetPutter()
|
2015-03-04 22:14:43 +00:00
|
|
|
|
|
|
|
// first lets prep a GetPutter and Packer
|
|
|
|
for i := range entries {
|
|
|
|
if entries[i].Entry.Type == storage.FileType {
|
|
|
|
j, csum, err := fgp.Put(entries[i].Entry.Name, bytes.NewBuffer(entries[i].Body))
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
if j != entries[i].Entry.Size {
|
|
|
|
t.Errorf("size %q: expected %d; got %d",
|
|
|
|
entries[i].Entry.Name,
|
|
|
|
entries[i].Entry.Size,
|
|
|
|
j)
|
|
|
|
}
|
|
|
|
if !bytes.Equal(csum, entries[i].Entry.Payload) {
|
|
|
|
t.Errorf("checksum %q: expected %v; got %v",
|
|
|
|
entries[i].Entry.Name,
|
|
|
|
entries[i].Entry.Payload,
|
|
|
|
csum)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// next we'll use these to produce a tar stream.
|
2015-03-02 20:25:03 +00:00
|
|
|
_ = NewOutputTarStream(fgp, nil)
|
2015-03-04 22:14:43 +00:00
|
|
|
// TODO finish this
|
2015-03-02 20:25:03 +00:00
|
|
|
}
|
2015-03-03 19:23:04 +00:00
|
|
|
|
2015-03-05 19:09:17 +00:00
|
|
|
func TestTarStream(t *testing.T) {
|
2015-03-04 22:14:43 +00:00
|
|
|
var (
|
|
|
|
expectedSum = "1eb237ff69bca6e22789ecb05b45d35ca307adbd"
|
|
|
|
expectedSize int64 = 10240
|
|
|
|
)
|
|
|
|
|
|
|
|
fh, err := os.Open("./testdata/t.tar.gz")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer fh.Close()
|
|
|
|
gzRdr, err := gzip.NewReader(fh)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer gzRdr.Close()
|
|
|
|
|
|
|
|
// Setup where we'll store the metadata
|
|
|
|
w := bytes.NewBuffer([]byte{})
|
|
|
|
sp := storage.NewJsonPacker(w)
|
|
|
|
fgp := NewBufferFileGetPutter()
|
|
|
|
|
|
|
|
// wrap the disassembly stream
|
2015-03-05 19:09:17 +00:00
|
|
|
tarStream, err := NewInputTarStream(gzRdr, sp, fgp)
|
2015-03-04 22:14:43 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// get a sum of the stream after it has passed through to ensure it's the same.
|
2015-03-05 19:09:17 +00:00
|
|
|
h0 := sha1.New()
|
|
|
|
tRdr0 := io.TeeReader(tarStream, h0)
|
2015-03-04 22:14:43 +00:00
|
|
|
|
|
|
|
// read it all to the bit bucket
|
2015-03-05 19:09:17 +00:00
|
|
|
i, err := io.Copy(ioutil.Discard, tRdr0)
|
2015-03-04 22:14:43 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if i != expectedSize {
|
|
|
|
t.Errorf("size of tar: expected %d; got %d", expectedSize, i)
|
|
|
|
}
|
2015-03-05 19:09:17 +00:00
|
|
|
if fmt.Sprintf("%x", h0.Sum(nil)) != expectedSum {
|
|
|
|
t.Fatalf("checksum of tar: expected %s; got %x", expectedSum, h0.Sum(nil))
|
|
|
|
}
|
2015-03-04 22:14:43 +00:00
|
|
|
|
2015-03-05 19:09:17 +00:00
|
|
|
t.Logf("%s", w.String()) // if we fail, then show the packed info
|
|
|
|
|
|
|
|
// If we've made it this far, then we'll turn it around and create a tar
|
|
|
|
// stream from the packed metadata and buffered file contents.
|
|
|
|
r := bytes.NewBuffer(w.Bytes())
|
|
|
|
sup := storage.NewJsonUnpacker(r)
|
|
|
|
// and reuse the fgp that we Put the payloads to.
|
|
|
|
|
|
|
|
rc := NewOutputTarStream(fgp, sup)
|
|
|
|
h1 := sha1.New()
|
|
|
|
tRdr1 := io.TeeReader(rc, h1)
|
|
|
|
|
|
|
|
// read it all to the bit bucket
|
|
|
|
i, err = io.Copy(ioutil.Discard, tRdr1)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
2015-03-04 22:14:43 +00:00
|
|
|
}
|
|
|
|
|
2015-03-05 19:09:17 +00:00
|
|
|
if i != expectedSize {
|
|
|
|
t.Errorf("size of output tar: expected %d; got %d", expectedSize, i)
|
|
|
|
}
|
|
|
|
if fmt.Sprintf("%x", h1.Sum(nil)) != expectedSum {
|
|
|
|
t.Fatalf("checksum of output tar: expected %s; got %x", expectedSum, h1.Sum(nil))
|
|
|
|
}
|
2015-03-03 19:23:04 +00:00
|
|
|
}
|