Skip to content

Commit

Permalink
test: add non-debian based tests for gawk (#3482)
Browse files Browse the repository at this point in the history
  • Loading branch information
donheshanthaka committed Oct 31, 2023
1 parent 0c1d8ce commit 0880b0a
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
Binary file not shown.
Binary file not shown.
26 changes: 24 additions & 2 deletions test/test_data/gawk.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,21 @@


mapping_test_data = [
{
"product": "gawk",
"version": "5.1.1",
"version_strings": ["GNU Awk 5.1.1"],
},
{
"product": "gawk",
"version": "5.2.0",
"version_strings": ["GNU Awk 5.2.0"],
},
{
"product": "gawk",
"version": "5.2.1",
"version_strings": ["GNU Awk 5.2.1"],
}
},
]

package_test_data = [
Expand All @@ -16,5 +26,17 @@
"package_name": "gawk_5.2.1-2_amd64.deb",
"product": "gawk",
"version": "5.2.1",
}
},
{
"url": "https://rpmfind.net/linux/fedora/linux/releases/38/Everything/x86_64/os/Packages/g/",
"package_name": "gawk-5.1.1-5.fc38.x86_64.rpm",
"product": "gawk",
"version": "5.1.1",
},
{
"url": "https://downloads.openwrt.org/releases/22.03.5/packages/x86_64/packages/",
"package_name": "gawk_5.2.0-1_x86_64.ipk",
"product": "gawk",
"version": "5.2.0",
},
]

0 comments on commit 0880b0a

Please sign in to comment.