[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#62202] [PATCH v4 6/6] tests: juliahub: Add unit tests for (guix imp
From: |
Nicolas Graves |
Subject: |
[bug#62202] [PATCH v4 6/6] tests: juliahub: Add unit tests for (guix import juliahub). |
Date: |
Sun, 21 Apr 2024 18:08:44 +0200 |
On 2024-04-17 10:51, Ludovic Courtès wrote:
> Nicolas Graves <ngraves@ngraves.fr> skribis:
>
>> libgit2, which is behind guile-git, expects this exact header or fails,
>> with no additional charset field. The sanitize-response function in the
>> guile web server implementation on its side ensures that a charset field
>> is added no matter what.
>>
>> So indeed we can set
>>
>> (content-type . (application/x-git-upload-pack-advertisement))
>>
>> but in reality guile-git // libgit2 will read
>>
>> (content-type . (application/x-git-upload-pack-advertisement
>> (charset . "utf-8"))
>>
>> and will fail in this case.
>
> Oh I see, I had misunderstood that.
>
> Note that ‘sanitize-response’ does not add a ‘charset’ header when BODY
> is #f or a bytevector. Maybe we could do that?
I've just taken a look at your suggestion. That's possible although not
elegant.
I stumbled accross a bigger issue however: the dumb protocol is
implemented for git but not for libgit2, thus is not present in
guile-git.
https://github.com/libgit2/libgit2/issues/6609
The smart protocol is however way too complex / unadapted for such a
light use in tests, and requires more that a simple http server easily
configured.
That's sad, such a light implementation would've been quite convenient
in my juliahub case.
>
> Thanks,
> Ludo’.
>
>
>
--
Best regards,
Nicolas Graves