-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge #210: Add unit tests for
Tracker
d0c3054 fix(tracker): typo, rename SwamStats to SwarmStats (Jose Celano) 7fb92b5 test(tracker): [#207] add tests for whitelist in Tracker (Jose Celano) af949af test(tracker): [#207] add tests for torrent persistence in Tracker (Jose Celano) 40ff249 test(tracker): [#207] add test for authorization (whitelist) in Tracker (Jose Celano) fad6834 test(tracker): [#207] add tests for HTTP authentication in Tracker (Jose Celano) d1a7b7f fix(cargo): fix output path in cargo allias (Jose Celano) ed58a32 test(tracker): [#207] add test for Tracker::scrape (Jose Celano) 1e7eff5 docs(tracker): add code-review (Jose Celano) d50372f feat(cargo): add cargo alias to generate coverage reports (Jose Celano) fca5353 test(tracker): [#207] add test for Tracker::announce (Jose Celano) ee5b088 docs(http): add comment for duplicate struct info (Jose Celano) 2ddefa8 feat: add .coverage dir to .gitignore (Jose Celano) Pull request description: I'm double-checking the new Axum HTTP tracker and adding more tests. Top commit has no ACKs. Tree-SHA512: 78da5c5b2c121a781ad39afdad4f95e0f770f6f2567c381b38a11fcc4f52f22c907e9c8f6424bf4082c77faab4ca10876aea11301dfc7b18b02cbf26503cdb2a
- Loading branch information
Showing
12 changed files
with
678 additions
and
170 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[alias] | ||
cov = "llvm-cov --lcov --output-path=./.coverage/lcov.info" | ||
cov-html = "llvm-cov --html" |
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 |
---|---|---|
@@ -1,12 +1,11 @@ | ||
.env | ||
/target | ||
**/*.rs.bk | ||
/database.json.bz2 | ||
/database.db | ||
/.coverage/ | ||
/.idea/ | ||
/.vscode/launch.json | ||
/config.toml | ||
/data.db | ||
/.vscode/launch.json | ||
/database.db | ||
/database.json.bz2 | ||
/storage/ | ||
|
||
|
||
/target |
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 |
---|---|---|
|
@@ -31,6 +31,7 @@ | |
"infohashes", | ||
"infoschema", | ||
"intervali", | ||
"lcov", | ||
"leecher", | ||
"leechers", | ||
"libtorrent", | ||
|
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
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
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
Oops, something went wrong.