mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-05-05 22:08:27 +00:00
Basic tests for Grab downloader
This commit is contained in:
19
http/grab.go
19
http/grab.go
@@ -86,30 +86,31 @@ func (d *GrabDownloader) maybeSetupChecksum(req *grab.Request, expected *utils.C
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
if expected.MD5 != "" {
|
if expected.MD5 != "" {
|
||||||
expected_hash, err := hex.DecodeString(expected.MD5)
|
expectedHash, err := hex.DecodeString(expected.MD5)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
req.SetChecksum(md5.New(), expected_hash, true)
|
req.SetChecksum(md5.New(), expectedHash, true)
|
||||||
} else if expected.SHA1 != "" {
|
} else if expected.SHA1 != "" {
|
||||||
expected_hash, err := hex.DecodeString(expected.SHA1)
|
expectedHash, err := hex.DecodeString(expected.SHA1)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
req.SetChecksum(sha1.New(), expected_hash, true)
|
req.SetChecksum(sha1.New(), expectedHash, true)
|
||||||
} else if expected.SHA256 != "" {
|
} else if expected.SHA256 != "" {
|
||||||
expected_hash, err := hex.DecodeString(expected.SHA256)
|
expectedHash, err := hex.DecodeString(expected.SHA256)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
req.SetChecksum(sha256.New(), expected_hash, true)
|
req.SetChecksum(sha256.New(), expectedHash, true)
|
||||||
} else if expected.SHA512 != "" {
|
} else if expected.SHA512 != "" {
|
||||||
expected_hash, err := hex.DecodeString(expected.SHA512)
|
expectedHash, err := hex.DecodeString(expected.SHA512)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
req.SetChecksum(sha512.New(), expected_hash, true)
|
req.SetChecksum(sha512.New(), expectedHash, true)
|
||||||
}
|
}
|
||||||
|
req.Size = expected.Size
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -154,7 +155,7 @@ func (d *GrabDownloader) GetProgress() aptly.Progress {
|
|||||||
return d.progress
|
return d.progress
|
||||||
}
|
}
|
||||||
|
|
||||||
func (f *GrabDownloader) GetLength(ctx context.Context, url string) (int64, error) {
|
func (d *GrabDownloader) GetLength(ctx context.Context, url string) (int64, error) {
|
||||||
resp, err := http.Head(url)
|
resp, err := http.Head(url)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return -1, err
|
return -1, err
|
||||||
|
|||||||
137
http/grab_test.go
Normal file
137
http/grab_test.go
Normal file
@@ -0,0 +1,137 @@
|
|||||||
|
package http
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"fmt"
|
||||||
|
"io/ioutil"
|
||||||
|
"net"
|
||||||
|
"net/http"
|
||||||
|
"os"
|
||||||
|
|
||||||
|
"github.com/aptly-dev/aptly/aptly"
|
||||||
|
"github.com/aptly-dev/aptly/console"
|
||||||
|
"github.com/aptly-dev/aptly/utils"
|
||||||
|
|
||||||
|
. "gopkg.in/check.v1"
|
||||||
|
)
|
||||||
|
|
||||||
|
type GrabDownloaderSuiteBase struct {
|
||||||
|
tempfile *os.File
|
||||||
|
l net.Listener
|
||||||
|
url string
|
||||||
|
ch chan struct{}
|
||||||
|
progress aptly.Progress
|
||||||
|
d aptly.Downloader
|
||||||
|
ctx context.Context
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *GrabDownloaderSuiteBase) SetUpTest(c *C) {
|
||||||
|
s.tempfile, _ = ioutil.TempFile(os.TempDir(), "aptly-test")
|
||||||
|
s.l, _ = net.ListenTCP("tcp4", &net.TCPAddr{IP: net.IPv4(127, 0, 0, 1)})
|
||||||
|
s.url = fmt.Sprintf("http://localhost:%d", s.l.Addr().(*net.TCPAddr).Port)
|
||||||
|
|
||||||
|
mux := http.NewServeMux()
|
||||||
|
mux.HandleFunc("/test", func(w http.ResponseWriter, r *http.Request) {
|
||||||
|
fmt.Fprintf(w, "Hello, %s", r.URL.Path)
|
||||||
|
})
|
||||||
|
|
||||||
|
s.ch = make(chan struct{})
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
http.Serve(s.l, mux)
|
||||||
|
close(s.ch)
|
||||||
|
}()
|
||||||
|
|
||||||
|
s.progress = console.NewProgress()
|
||||||
|
s.progress.Start()
|
||||||
|
|
||||||
|
s.d = NewGrabDownloader(0, 1, s.progress)
|
||||||
|
s.ctx = context.Background()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *GrabDownloaderSuiteBase) TearDownTest(c *C) {
|
||||||
|
s.progress.Shutdown()
|
||||||
|
|
||||||
|
s.l.Close()
|
||||||
|
<-s.ch
|
||||||
|
|
||||||
|
os.Remove(s.tempfile.Name())
|
||||||
|
s.tempfile.Close()
|
||||||
|
}
|
||||||
|
|
||||||
|
type GrabDownloaderSuite struct {
|
||||||
|
GrabDownloaderSuiteBase
|
||||||
|
}
|
||||||
|
|
||||||
|
var _ = Suite(&GrabDownloaderSuite{})
|
||||||
|
|
||||||
|
func (s *GrabDownloaderSuite) SetUpTest(c *C) {
|
||||||
|
s.GrabDownloaderSuiteBase.SetUpTest(c)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *GrabDownloaderSuite) TearDownTest(c *C) {
|
||||||
|
s.GrabDownloaderSuiteBase.TearDownTest(c)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *GrabDownloaderSuite) TestDownloadOK(c *C) {
|
||||||
|
c.Assert(s.d.Download(s.ctx, s.url+"/test", s.tempfile.Name()), IsNil)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *GrabDownloaderSuite) TestDownloadWithChecksum(c *C) {
|
||||||
|
c.Assert(s.d.DownloadWithChecksum(s.ctx, s.url+"/test", s.tempfile.Name(), &utils.ChecksumInfo{Size: 1}, false),
|
||||||
|
// ErrorMatches, ".*size check mismatch 12 != 1")
|
||||||
|
ErrorMatches, "bad content length")
|
||||||
|
|
||||||
|
c.Assert(s.d.DownloadWithChecksum(s.ctx, s.url+"/test", s.tempfile.Name(), &utils.ChecksumInfo{Size: 12, MD5: "abcdef"}, false),
|
||||||
|
ErrorMatches, "checksum mismatch")
|
||||||
|
|
||||||
|
c.Assert(s.d.DownloadWithChecksum(s.ctx, s.url+"/test", s.tempfile.Name(), &utils.ChecksumInfo{Size: 12, MD5: "abcdef"}, true),
|
||||||
|
IsNil)
|
||||||
|
|
||||||
|
c.Assert(s.d.DownloadWithChecksum(s.ctx, s.url+"/test", s.tempfile.Name(), &utils.ChecksumInfo{Size: 12, MD5: "a1acb0fe91c7db45ec4d775192ec5738"}, false),
|
||||||
|
IsNil)
|
||||||
|
|
||||||
|
c.Assert(s.d.DownloadWithChecksum(s.ctx, s.url+"/test", s.tempfile.Name(), &utils.ChecksumInfo{Size: 12, MD5: "a1acb0fe91c7db45ec4d775192ec5738",
|
||||||
|
SHA1: "921893bae6ad6fd818401875d6779254ef0ff0ec"}, false),
|
||||||
|
IsNil)
|
||||||
|
|
||||||
|
checksums := utils.ChecksumInfo{Size: 12, MD5: "a1acb0fe91c7db45ec4d775192ec5738",
|
||||||
|
SHA1: "921893bae6ad6fd818401875d6779254ef0ff0ec", SHA256: "b3c92ee1246176ed35f6e8463cd49074f29442f5bbffc3f8591cde1dcc849dac"}
|
||||||
|
c.Assert(s.d.DownloadWithChecksum(s.ctx, s.url+"/test", s.tempfile.Name(), &checksums, false),
|
||||||
|
IsNil)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *GrabDownloaderSuite) TestDownload404(c *C) {
|
||||||
|
c.Assert(s.d.Download(s.ctx, s.url+"/doesntexist", s.tempfile.Name()),
|
||||||
|
ErrorMatches, ".* 404 .*")
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *GrabDownloaderSuite) TestDownloadConnectError(c *C) {
|
||||||
|
c.Assert(s.d.Download(s.ctx, "http://nosuch.host/", s.tempfile.Name()),
|
||||||
|
ErrorMatches, ".*no such host")
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *GrabDownloaderSuite) TestDownloadFileError(c *C) {
|
||||||
|
skipIfRoot(c)
|
||||||
|
c.Assert(s.d.Download(s.ctx, s.url+"/test", "/"),
|
||||||
|
ErrorMatches, ".*permission denied")
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *GrabDownloaderSuite) TestGetLength(c *C) {
|
||||||
|
size, err := s.d.GetLength(s.ctx, s.url+"/test")
|
||||||
|
|
||||||
|
c.Assert(err, IsNil)
|
||||||
|
c.Assert(size, Equals, int64(12))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *GrabDownloaderSuite) TestGetLength404(c *C) {
|
||||||
|
_, err := s.d.GetLength(s.ctx, s.url+"/doesntexist")
|
||||||
|
|
||||||
|
c.Assert(err, ErrorMatches, "HTTP code 404.*")
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *GrabDownloaderSuite) TestGetLengthConnectError(c *C) {
|
||||||
|
_, err := s.d.GetLength(s.ctx, "http://nosuch.host/")
|
||||||
|
|
||||||
|
c.Assert(err, ErrorMatches, ".*no such host")
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user