2014-11-08 15:38:42 +00:00
|
|
|
package chrootarchive
|
|
|
|
|
|
|
|
import (
|
2014-12-06 02:30:03 +00:00
|
|
|
"io"
|
2014-11-08 15:38:42 +00:00
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
2014-12-06 02:30:03 +00:00
|
|
|
"time"
|
2014-11-08 15:38:42 +00:00
|
|
|
|
|
|
|
"github.com/docker/docker/pkg/archive"
|
2014-11-11 11:02:14 +00:00
|
|
|
"github.com/docker/docker/pkg/reexec"
|
2014-11-08 15:38:42 +00:00
|
|
|
)
|
|
|
|
|
2014-11-11 11:02:14 +00:00
|
|
|
func init() {
|
|
|
|
reexec.Init()
|
|
|
|
}
|
|
|
|
|
2014-11-08 15:38:42 +00:00
|
|
|
func TestChrootTarUntar(t *testing.T) {
|
|
|
|
tmpdir, err := ioutil.TempDir("", "docker-TestChrootTarUntar")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(tmpdir)
|
|
|
|
src := filepath.Join(tmpdir, "src")
|
|
|
|
if err := os.MkdirAll(src, 0700); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if err := ioutil.WriteFile(filepath.Join(src, "toto"), []byte("hello toto"), 0644); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if err := ioutil.WriteFile(filepath.Join(src, "lolo"), []byte("hello lolo"), 0644); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
stream, err := archive.Tar(src, archive.Uncompressed)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
dest := filepath.Join(tmpdir, "src")
|
|
|
|
if err := os.MkdirAll(dest, 0700); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2014-10-23 21:30:11 +00:00
|
|
|
if err := Untar(stream, dest, &archive.TarOptions{ExcludePatterns: []string{"lolo"}}); err != nil {
|
2014-11-08 15:38:42 +00:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
2014-12-06 02:30:03 +00:00
|
|
|
|
|
|
|
type slowEmptyTarReader struct {
|
|
|
|
size int
|
|
|
|
offset int
|
|
|
|
chunkSize int
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read is a slow reader of an empty tar (like the output of "tar c --files-from /dev/null")
|
|
|
|
func (s *slowEmptyTarReader) Read(p []byte) (int, error) {
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
count := s.chunkSize
|
|
|
|
if len(p) < s.chunkSize {
|
|
|
|
count = len(p)
|
|
|
|
}
|
|
|
|
for i := 0; i < count; i++ {
|
|
|
|
p[i] = 0
|
|
|
|
}
|
|
|
|
s.offset += count
|
|
|
|
if s.offset > s.size {
|
|
|
|
return count, io.EOF
|
|
|
|
}
|
|
|
|
return count, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestChrootUntarEmptyArchiveFromSlowReader(t *testing.T) {
|
|
|
|
tmpdir, err := ioutil.TempDir("", "docker-TestChrootUntarEmptyArchiveFromSlowReader")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(tmpdir)
|
|
|
|
dest := filepath.Join(tmpdir, "dest")
|
|
|
|
if err := os.MkdirAll(dest, 0700); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
stream := &slowEmptyTarReader{size: 10240, chunkSize: 1024}
|
|
|
|
if err := Untar(stream, dest, nil); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
2014-12-08 23:04:34 +00:00
|
|
|
|
|
|
|
func TestChrootApplyEmptyArchiveFromSlowReader(t *testing.T) {
|
|
|
|
tmpdir, err := ioutil.TempDir("", "docker-TestChrootApplyEmptyArchiveFromSlowReader")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(tmpdir)
|
|
|
|
dest := filepath.Join(tmpdir, "dest")
|
|
|
|
if err := os.MkdirAll(dest, 0700); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
stream := &slowEmptyTarReader{size: 10240, chunkSize: 1024}
|
2014-12-18 02:26:03 +00:00
|
|
|
if _, err := ApplyLayer(dest, stream); err != nil {
|
2014-12-08 23:04:34 +00:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|