-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New console command: random seeder #458
Merged
Merged
Conversation
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
```console src/console/ ├── commands │ ├── mod.rs │ └── tracker_statistics_importer │ ├── app.rs │ └── mod.rs ├── cronjobs │ ├── mod.rs │ └── tracker_statistics_importer.rs └── mod.rs ``` - We will create a new command to seed the Index with random torrents. - This new strcuture is similar to what we have in the Tracker.
josecelano
added
Testing
Checking Torrust
- Admin -
Enjoyable to Install and Setup our Software
labels
Feb 6, 2024
Added `server` subfolder. We will add a client folder.
Hi @da2ce7 I'm going to clone the API client from testing code to production. I would keep the same code in tests. I do not want to couple tests to production code. In the future, we could:
We can refactor this in the next milestone. |
It will be use in a new console command (seeder).
They will be used in console commands.
josecelano
force-pushed
the
453-load-test
branch
from
February 6, 2024 16:56
9fb76fa
to
c94b566
Compare
New console command to upload torrent to the Index remotely by using the API client. ```console cargo run --bin seeder -- --api-base-url <API_BASE_URL> --number-of-torrents <NUMBER_OF_TORRENTS> --user <USER> --password <PASSWORD> --interval <INTERVAL> ``` For example: ```console cargo run --bin seeder -- --api-base-url "localhost:3001" --number-of-torrents 1000 --user admin --password 12345678 --interval 0 ``` That command would upload 1000 random torrents to the Index using the user account `admin` with password `123456` and waiting `1` second between uploads.
josecelano
force-pushed
the
453-load-test
branch
from
February 6, 2024 17:16
c94b566
to
935facb
Compare
ACK 324fac7 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
It will upload random torrents to the Index. For testing purposes. It could be used to seed E2E test environments too.
console
mod to include more mods.seeder
(withclap
andanyhow
)The console command is:
cargo run --bin seeder -- --api-base-url <API_BASE_URL> --number-of-torrents <NUMBER_OF_TORRENTS> --user <USER> --password <PASSWORD> --interval <INTERVAL>
For example:
cargo run --bin seeder -- --api-base-url "localhost:3001" --number-of-torrents 1000 --user admin --password 12345678 --interval 0
That command would upload 1000 random torrents to the Index using the user account
admin
with password123456
and wait 1 second between uploads.Output: