This repository was archived by the owner on Jan 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Httpstress: Add checksum validation & support plaintext http #40360
Merged
eiriktsarpalis
merged 14 commits into
dotnet:master
from
eiriktsarpalis:httpstress-add-checksum-validation
Aug 22, 2019
Merged
Httpstress: Add checksum validation & support plaintext http #40360
eiriktsarpalis
merged 14 commits into
dotnet:master
from
eiriktsarpalis:httpstress-add-checksum-validation
Aug 22, 2019
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
Member
eiriktsarpalis
commented
Aug 15, 2019
•
edited
Loading
edited
- Adds checksum validation for echo operations.
- Adds support for plaintext http stress tests.
- Adds trailing header validation.
- Add error timestamps to final report.
- Bound size of request headers.
- Add WinHttpHandler support.
bartonjs
reviewed
Aug 16, 2019
src/System.Net.Http/tests/StressTests/HttpStress/ChecksumHelpers.cs
Outdated
Show resolved
Hide resolved
bartonjs
reviewed
Aug 16, 2019
src/System.Net.Http/tests/StressTests/HttpStress/ChecksumHelpers.cs
Outdated
Show resolved
Hide resolved
bartonjs
reviewed
Aug 16, 2019
src/System.Net.Http/tests/StressTests/HttpStress/ChecksumHelpers.cs
Outdated
Show resolved
Hide resolved
bartonjs
reviewed
Aug 16, 2019
src/System.Net.Http/tests/StressTests/HttpStress/ClientOperations.cs
Outdated
Show resolved
Hide resolved
bartonjs
reviewed
Aug 16, 2019
src/System.Net.Http/tests/StressTests/HttpStress/ClientOperations.cs
Outdated
Show resolved
Hide resolved
bartonjs
suggested changes
Aug 16, 2019
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know what the ionide symbolCache is, but we probably don't want to submit it.
You might want to submit a different PR to add it to the .gitignore file.
@bartonjs addressed style issues, will follow up with Crc32.NET replacement. |
Removed the dependency to CRC32.NET and replaced with a modified version of corefx CRC.cs |
bartonjs
reviewed
Aug 22, 2019
} | ||
|
||
public int FailureCount => Failures.Values.Sum(); | ||
public int FailureCount => Failures.Values.Select(x => x.Count).Sum(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggested change
public int FailureCount => Failures.Values.Select(x => x.Count).Sum(); | |
public int FailureCount => Failures.Values.Sum(x => x.Count); |
bartonjs
approved these changes
Aug 22, 2019
picenka21
pushed a commit
to picenka21/runtime
that referenced
this pull request
Feb 18, 2022
…corefx#40360) Httpstress: Add checksum validation & support plaintext http Commit migrated from dotnet/corefx@a25beee
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
area-System.Net.Http
tenet-reliability
Reliability/stability related issue (stress, load problems, etc.)
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.