Skip to content
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

[Perf Tests] Updates to perf test framework #12662

Merged
24 commits merged into from
Dec 2, 2020
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
d732bd6
fix nodefetch test
HarshaNalluru Nov 23, 2020
8859ebb
Add perf folder and download test
HarshaNalluru Nov 23, 2020
016d7e8
perfstress-test:node command and rollup setup - currently results in …
HarshaNalluru Nov 23, 2020
342ae51
formatting
HarshaNalluru Nov 23, 2020
9a40172
Update main entry in perf package
HarshaNalluru Nov 23, 2020
514c46f
Add "module": "commonjs"
HarshaNalluru Nov 23, 2020
3a998c0
fix dotenv path
HarshaNalluru Nov 23, 2020
f6d0176
revert ts-config change and update perfstress-test:node
HarshaNalluru Nov 23, 2020
0ddcea3
dotenv update
HarshaNalluru Nov 23, 2020
ab7868b
Revert "perfstress-test:node command and rollup setup - currently res…
HarshaNalluru Nov 23, 2020
1f8b1a2
separate folders for track 1 and track 2
HarshaNalluru Nov 24, 2020
38011a8
Update TOptionsNames to TOptions and changes to interfaces for better…
HarshaNalluru Nov 30, 2020
012c6d5
update tests with the new changes to the src code.. left some TODOs
HarshaNalluru Nov 30, 2020
f626cfb
update package.json cmd from rushx to npm run
HarshaNalluru Nov 30, 2020
367467b
download test updated - with the updated framework
HarshaNalluru Nov 30, 2020
9eebb8b
Add global cleanup
HarshaNalluru Nov 30, 2020
251caf8
minor update - no need for a new const blockBlobClient
HarshaNalluru Nov 30, 2020
f02c0c9
rest of the tests for storage-blob
HarshaNalluru Dec 1, 2020
74d258b
split storage blob tests to a separate PR
HarshaNalluru Dec 1, 2020
468b7cf
Act on TODOs
HarshaNalluru Dec 1, 2020
602256f
do not "extends DefaultPerfStressOptions" for the constructor
HarshaNalluru Dec 1, 2020
f2efb1c
PerfStressPolicyTest fix accordingly
HarshaNalluru Dec 1, 2020
b6309db
remove <{}> with defaults.. everywhere
HarshaNalluru Dec 1, 2020
118e18e
split storage changes to a separate PR
HarshaNalluru Dec 2, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
minor update - no need for a new const blockBlobClient
  • Loading branch information
HarshaNalluru committed Nov 30, 2020
commit 251caf84a58eeb1daf7ecb464391a1203a08b2a5
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ export class StorageBlobDownloadTest extends PerfStressTest<StorageBlobDownloadT
);

// Create a blob
const blockBlobClient = containerClient.getBlockBlobClient(blobName);
const uploadBlobResponse = await blockBlobClient.upload(
Buffer.alloc(this.options.size.value!),
this.options.size.value as number
Expand Down