mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
tests: Use unbuffered input ports when decompressing from 'guix publish'.
Fixes <http://bugs.gnu.org/24060>. Reported by Chris Marusich <cmmarusich@gmail.com>. * tests/publish.scm (http-get-port): Explicitly call 'open-socket-for-uri' and add calls to 'setvbuf'.
This commit is contained in:
parent
688ec13c45
commit
37402ecb43
1 changed files with 10 additions and 2 deletions
|
@ -58,8 +58,16 @@ (define (http-get-body uri)
|
|||
(lambda (response body) body)))
|
||||
|
||||
(define (http-get-port uri)
|
||||
(call-with-values (lambda () (http-get uri #:streaming? #t))
|
||||
(lambda (response port) port)))
|
||||
(let ((socket (open-socket-for-uri uri)))
|
||||
;; Make sure to use an unbuffered port so that we can then peek at the
|
||||
;; underlying file descriptor via 'call-with-gzip-input-port'.
|
||||
(setvbuf socket _IONBF)
|
||||
(call-with-values
|
||||
(lambda ()
|
||||
(http-get uri #:port socket #:streaming? #t))
|
||||
(lambda (response port)
|
||||
(setvbuf port _IONBF)
|
||||
port))))
|
||||
|
||||
(define (publish-uri route)
|
||||
(string-append "http://localhost:6789" route))
|
||||
|
|
Loading…
Reference in a new issue