mirror of
https://github.com/vbatts/tar-split.git
synced 2024-11-15 12:58:38 +00:00
249 lines
5.7 KiB
Go
249 lines
5.7 KiB
Go
package asm
|
|
|
|
import (
|
|
"bytes"
|
|
"compress/gzip"
|
|
"crypto/sha1"
|
|
"fmt"
|
|
"hash/crc64"
|
|
"io"
|
|
"io/ioutil"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/vbatts/tar-split/tar/storage"
|
|
)
|
|
|
|
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"),
|
|
},
|
|
{
|
|
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"),
|
|
},
|
|
}
|
|
var entriesMangled = []struct {
|
|
Entry storage.Entry
|
|
Body []byte
|
|
}{
|
|
{
|
|
Entry: storage.Entry{
|
|
Type: storage.FileType,
|
|
Name: "./hurr.txt",
|
|
Payload: []byte{3, 116, 164, 177, 171, 236, 107, 78},
|
|
Size: 20,
|
|
},
|
|
// switch
|
|
Body: []byte("imma derp til I hurr"),
|
|
},
|
|
{
|
|
Entry: storage.Entry{
|
|
Type: storage.FileType,
|
|
Name: "./ermahgerd.txt",
|
|
Payload: []byte{127, 72, 89, 239, 230, 252, 160, 187},
|
|
Size: 26,
|
|
},
|
|
// san not con
|
|
Body: []byte("café sans leche, por favor"),
|
|
},
|
|
}
|
|
|
|
func TestTarStreamMangledGetterPutter(t *testing.T) {
|
|
fgp := storage.NewBufferFileGetPutter()
|
|
|
|
// 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)
|
|
}
|
|
}
|
|
}
|
|
|
|
for _, e := range entriesMangled {
|
|
if e.Entry.Type == storage.FileType {
|
|
rdr, err := fgp.Get(e.Entry.Name)
|
|
if err != nil {
|
|
t.Error(err)
|
|
}
|
|
c := crc64.New(storage.CRCTable)
|
|
i, err := io.Copy(c, rdr)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
rdr.Close()
|
|
|
|
csum := c.Sum(nil)
|
|
if bytes.Equal(csum, e.Entry.Payload) {
|
|
t.Errorf("wrote %d bytes. checksum for %q should not have matched! %v",
|
|
i,
|
|
e.Entry.Name,
|
|
csum)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestTarStream(t *testing.T) {
|
|
var (
|
|
expectedSHA1Sum = "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 := storage.NewBufferFileGetPutter()
|
|
|
|
// wrap the disassembly stream
|
|
tarStream, err := NewInputTarStream(gzRdr, sp, fgp)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// get a sum of the stream after it has passed through to ensure it's the same.
|
|
h0 := sha1.New()
|
|
tRdr0 := io.TeeReader(tarStream, h0)
|
|
|
|
// read it all to the bit bucket
|
|
i, err := io.Copy(ioutil.Discard, tRdr0)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if i != expectedSize {
|
|
t.Errorf("size of tar: expected %d; got %d", expectedSize, i)
|
|
}
|
|
if fmt.Sprintf("%x", h0.Sum(nil)) != expectedSHA1Sum {
|
|
t.Fatalf("checksum of tar: expected %s; got %x", expectedSHA1Sum, h0.Sum(nil))
|
|
}
|
|
|
|
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()
|
|
i, err = io.Copy(h1, rc)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if i != expectedSize {
|
|
t.Errorf("size of output tar: expected %d; got %d", expectedSize, i)
|
|
}
|
|
if fmt.Sprintf("%x", h1.Sum(nil)) != expectedSHA1Sum {
|
|
t.Fatalf("checksum of output tar: expected %s; got %x", expectedSHA1Sum, h1.Sum(nil))
|
|
}
|
|
}
|
|
|
|
func TestTarGNUTar(t *testing.T) {
|
|
var (
|
|
expectedSHA1Sum = "d9f6babe107b7247953dff6b5b5ae31a3a880add"
|
|
expectedSize int64 = 20480
|
|
)
|
|
|
|
fh, err := os.Open("./testdata/longlink.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 := storage.NewBufferFileGetPutter()
|
|
|
|
// wrap the disassembly stream
|
|
tarStream, err := NewInputTarStream(gzRdr, sp, fgp)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// get a sum of the stream after it has passed through to ensure it's the same.
|
|
h0 := sha1.New()
|
|
tRdr0 := io.TeeReader(tarStream, h0)
|
|
|
|
// read it all to the bit bucket
|
|
i, err := io.Copy(ioutil.Discard, tRdr0)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if i != expectedSize {
|
|
t.Errorf("size of tar: expected %d; got %d", expectedSize, i)
|
|
}
|
|
if fmt.Sprintf("%x", h0.Sum(nil)) != expectedSHA1Sum {
|
|
t.Fatalf("checksum of tar: expected %s; got %x", expectedSHA1Sum, h0.Sum(nil))
|
|
}
|
|
|
|
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()
|
|
i, err = io.Copy(h1, rc)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if i != expectedSize {
|
|
t.Errorf("size of output tar: expected %d; got %d", expectedSize, i)
|
|
}
|
|
if fmt.Sprintf("%x", h1.Sum(nil)) != expectedSHA1Sum {
|
|
t.Fatalf("checksum of output tar: expected %s; got %x", expectedSHA1Sum, h1.Sum(nil))
|
|
}
|
|
}
|