693dc9a6f6
DNF Repo.dump() function cannot be used as a .repo file for dnf due to
it writing baseurl and gpgkey as a list instead of a string. Add a new
function to write this in the correct format, and limited to the fields
we use.
Add a test for the new function.
Fix /projects/source/info to return an error 400 if a nonexistant TOML
source is requested. If JSON is used the error is part of the standard
response.
Update test_server.py to check for the correct error code.
(cherry picked from commit afa89ea657
)
7 lines
190 B
TOML
7 lines
190 B
TOML
name = "bad-repo-1"
|
|
url = "file:///tmp/not-a-repo/"
|
|
type = "yum-baseurl"
|
|
check_ssl = true
|
|
check_gpg = true
|
|
gpgkey_urls = ["file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$releasever-$basearch"]
|