-
Notifications
You must be signed in to change notification settings - Fork 6.8k
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
[Fuzz] Add Fuzz testing for RegistryPreview #37607
Open
chenmy77
wants to merge
18
commits into
main
Choose a base branch
from
dev/mengyuanchen/add_onefuzz/registrypreview
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+464
−62
Open
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
b205794
Add fuzz test cases
chenmy77 8aefd45
Merge remote-tracking branch 'origin/main' into dev/mengyuanchen/add_…
chenmy77 88f5e65
add fuzz tests framework in registrypreview
chenmy77 5e28035
update code
chenmy77 330e292
add registrypreview fuzzing code
chenmy77 6ee7dba
merge main into code
chenmy77 d1b4fee
add annotations and change net7.0--net8.0
chenmy77 63724c8
Merge remote-tracking branch 'origin/main' into dev/mengyuanchen/add_…
chenmy77 a6a9f92
merge main into code
chenmy77 16c2c2b
add registry fuzz sln
chenmy77 f0951bb
change fuzzing tests scope
chenmy77 11471bd
remove unuse annotations
chenmy77 8ca1c2f
fix typos
chenmy77 a7b8a27
change public parser to internel and private
chenmy77 ad15dd1
change public to internal
chenmy77 136b7ca
Merge remote-tracking branch 'origin/main' into dev/mengyuanchen/add_…
chenmy77 e8269b8
fix linelower error and modify filenametext to registryContent
chenmy77 0438b20
Revert "fix linelower error and modify filenametext to registryContent"
chenmy77 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
add annotations and change net7.0--net8.0
- Loading branch information
commit d1b4fee0b6e0a8a6d9a331c29b89cfdbbd262925
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
5 changes: 3 additions & 2 deletions
5
src/modules/registrypreview/RegistryPreview.FuzzTests/RegistryPreview.FuzzTests.csproj
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.
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.
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.
Based on the comments, the result represents registry file content, so the name filenameText might be confusing. Would registryContent be a better choice?
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.
Yes, I also think so,registryContent would be a better choice than filenameText. I will modify it.