dnfjson: drop repo checksums

The repository checksums in the response from dnf-json aren't used
anywhere.  Since we're making changes to dnf-json and depsolving, now is
a good opportunity to drop them completely.
This commit is contained in:
Achilleas Koutsou 2022-05-23 19:06:24 +02:00 committed by Tom Gundersen
parent 0ef4e7ee84
commit 7a70a5e69b
13 changed files with 182 additions and 290 deletions

View file

@ -109,23 +109,9 @@ func BaseDeps() []rpmmd.PackageSpec {
type ResponseGenerator func(string) string
func Base(tmpdir string) string {
deps := map[string]interface{}{
"checksums": map[string]string{
"REPOID": "test:responsechecksum",
},
"dependencies": createBaseDepsolveFixture(),
}
pkgs := map[string]interface{}{
"checksums": map[string]string{
"REPOID": "test:responsechecksum",
},
"packages": generatePackageList(),
}
data := map[string]interface{}{
"depsolve": deps,
"dump": pkgs,
"depsolve": createBaseDepsolveFixture(),
"dump": generatePackageList(),
}
path := filepath.Join(tmpdir, "base.json")
write(data, path)
@ -150,16 +136,10 @@ func BadDepsolve(tmpdir string) string {
Kind: "DepsolveError",
Reason: "There was a problem depsolving ['go2rpm']: \n Problem: conflicting requests\n - nothing provides askalono-cli needed by go2rpm-1-4.fc31.noarch",
}
pkgs := map[string]interface{}{
"checksums": map[string]string{
"REPOID": "test:responsechecksum",
},
"packages": generatePackageList(),
}
data := map[string]interface{}{
"depsolve": deps,
"dump": pkgs,
"dump": generatePackageList(),
}
path := filepath.Join(tmpdir, "baddepsolve.json")
write(data, path)