forked from package-url/packageurl-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add repo URL support and testing for cocoapods package-url#143
Reference: package-url#143 Signed-off-by: John M. Horan <[email protected]>
- Loading branch information
1 parent
ef3747a
commit 4bd76d5
Showing
2 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,6 +64,8 @@ def test_purl2url_get_repo_url(): | |
"pkg:golang/xorm.io/xorm": "https://pkg.go.dev/xorm.io/xorm", | ||
"pkg:golang/xorm.io/[email protected]": "https://pkg.go.dev/xorm.io/[email protected]", | ||
"pkg:golang/gopkg.in/[email protected]": "https://pkg.go.dev/gopkg.in/[email protected]", | ||
"pkg:cocoapods/[email protected]": "https://cocoapods.org/pods/AFNetworking", | ||
"pkg:cocoapods/[email protected]": "https://cocoapods.org/pods/MapsIndoors", | ||
} | ||
|
||
for purl, url in purls_url.items(): | ||
|
@@ -134,7 +136,10 @@ def test_purl2url_get_inferred_urls(): | |
"https://gitlab.com/tg1999/firebase", | ||
"https://gitlab.com/tg1999/firebase/-/archive/1a122122/firebase-1a122122.tar.gz", | ||
], | ||
"pkg:pypi/[email protected]": ["https://pypi.org/project/sortedcontainers/2.4.0/"], | ||
"pkg:pypi/[email protected]": [ | ||
"https://pypi.org/project/sortedcontainers/2.4.0/" | ||
], | ||
"pkg:cocoapods/[email protected]": ["https://cocoapods.org/pods/AFNetworking"], | ||
"pkg:composer/psr/[email protected]": ["https://packagist.org/packages/psr/log#1.1.3"], | ||
"pkg:rubygems/package-name": ["https://rubygems.org/gems/package-name"], | ||
"pkg:bitbucket/birkenfeld": [], | ||
|