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

Remove old fuzzer logic #2896

Conversation

ddoktorski
Copy link
Contributor

@ddoktorski ddoktorski commented Jan 29, 2025

Towards #2051

This PR is part of the stack:

-- Add generate_arg cheatcode (#2892)
-- Add Fuzzable trait (#2893)
-- Move statements logic to separate function (#2894)
-- Add new fuzzer logic to plugin (#2895)
-- Add cheatcode to save fuzzer input (#2923)
➡️ Remove old fuzzer logic (#2896)
-- Add fuzzer tests with multiple attributes (#2898)
-- Update fuzzer documentation and changelog (#2899)

@ddoktorski ddoktorski force-pushed the 2051-new-fuzzer-architecture-4 branch from 7e192cd to ddf09c5 Compare February 6, 2025 16:26
@ddoktorski ddoktorski requested a review from a team as a code owner February 6, 2025 16:26
@ddoktorski ddoktorski force-pushed the 2051-new-fuzzer-architecture-5 branch from 3a18d4c to 6a9a27c Compare February 6, 2025 16:33
@ddoktorski ddoktorski changed the base branch from 2051-new-fuzzer-architecture-4 to 2051-new-fuzzer-architecture-4-cheatcode February 6, 2025 16:33
Copy link
Member

@cptartur cptartur left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🙏

@ddoktorski ddoktorski force-pushed the 2051-new-fuzzer-architecture-5 branch from 6a9a27c to 006ae51 Compare February 10, 2025 17:41
Copy link
Contributor

@Draggu Draggu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That feels good

@ddoktorski ddoktorski force-pushed the 2051-new-fuzzer-architecture-4-cheatcode branch from fd46db5 to c546212 Compare February 14, 2025 10:48
@ddoktorski ddoktorski force-pushed the 2051-new-fuzzer-architecture-5 branch from 006ae51 to 481f7c9 Compare February 14, 2025 10:48
@ddoktorski ddoktorski force-pushed the 2051-new-fuzzer-architecture-4-cheatcode branch from c546212 to ff3639b Compare February 14, 2025 11:03
@ddoktorski ddoktorski force-pushed the 2051-new-fuzzer-architecture-5 branch 2 times, most recently from 6afd563 to 0826356 Compare February 14, 2025 13:44
RichoKD pushed a commit to RichoKD/starknet-foundry that referenced this pull request Feb 17, 2025
<!-- Reference any GitHub issues resolved by this PR -->

Towards foundry-rs#2051

## Introduced changes

<!-- A brief description of the changes -->

- Added a cheatcode for generating random number that is used for
creating data for fuzz tests

This PR is part of the stack:

➡️ Add `generate_arg` cheatcode
(foundry-rs#2892)
-- Add `Fuzzable` trait
(foundry-rs#2893)
-- Move statements logic to separate function
(foundry-rs#2894)
-- Add new fuzzer logic to plugin
(foundry-rs#2895)
-- Add cheatcode to save fuzzer input
(foundry-rs#2923)
-- Remove old fuzzer logic
(foundry-rs#2896)
-- Add fuzzer tests with multiple attributes
(foundry-rs#2898)
-- Update fuzzer documentation and changelog
(foundry-rs#2899)

---------

Co-authored-by: Franciszek Job <[email protected]>
Co-authored-by: Piotr Figiela <[email protected]>
github-merge-queue bot pushed a commit that referenced this pull request Feb 18, 2025
<!-- Reference any GitHub issues resolved by this PR -->

Towards #2051

## Introduced changes

<!-- A brief description of the changes -->

- Added `Fuzzable` trait with implementation for basic types

This PR is part of the stack:

-- Add `generate_arg` cheatcode
(#2892)
➡️ Add `Fuzzable` trait
(#2893)
-- Move statements logic to separate function
(#2894)
-- Add new fuzzer logic to plugin
(#2895)
-- Add cheatcode to save fuzzer input
(#2923)
-- Remove old fuzzer logic
(#2896)
-- Add fuzzer tests with multiple attributes
(#2898)
-- Update fuzzer documentation and changelog
(#2899)
github-merge-queue bot pushed a commit that referenced this pull request Feb 18, 2025
<!-- Reference any GitHub issues resolved by this PR -->

Towards #2051

## Introduced changes

<!-- A brief description of the changes -->

- Simple refactor to extract common logic between current
`append_config_statements` function and
`append_fuzzer_config_statements` added in the next PR

This PR is part of the stack:

-- Add `generate_arg` cheatcode
(#2892)
-- Add `Fuzzable` trait
(#2893)
➡️ Move statements logic to separate function
(#2894)
-- Add new fuzzer logic to plugin
(#2895)
-- Add cheatcode to save fuzzer input
(#2923)
-- Remove old fuzzer logic
(#2896)
-- Add fuzzer tests with multiple attributes
(#2898)
-- Update fuzzer documentation and changelog
(#2899)
@ddoktorski ddoktorski force-pushed the 2051-new-fuzzer-architecture-4-cheatcode branch from b3245f6 to 80d41fa Compare February 18, 2025 11:22
@ddoktorski ddoktorski force-pushed the 2051-new-fuzzer-architecture-5 branch from 0826356 to 3753fb1 Compare February 18, 2025 11:25
@ddoktorski ddoktorski merged commit bd7e7aa into 2051-new-fuzzer-architecture-4-cheatcode Feb 18, 2025
38 checks passed
@ddoktorski ddoktorski deleted the 2051-new-fuzzer-architecture-5 branch February 18, 2025 12:00
github-merge-queue bot pushed a commit that referenced this pull request Feb 18, 2025
<!-- Reference any GitHub issues resolved by this PR -->

Towards #2051

## Introduced changes

<!-- A brief description of the changes -->

- Added new plugin logic for fuzzer attribute
- Split `#[fuzzer]` attribute into `#[__fuzzer_config]` and
`#[__fuzzer_wrapper]`
- Modified tests execution for fuzz tests

This PR is part of the stack:

-- Add `generate_arg` cheatcode
(#2892)
-- Add `Fuzzable` trait
(#2893)
-- Move statements logic to separate function
(#2894)
➡️ Add new fuzzer logic to plugin
(#2895)
-- Add cheatcode to save fuzzer input
(#2923)
-- Remove old fuzzer logic
(#2896)
-- Add fuzzer tests with multiple attributes
(#2898)
-- Update fuzzer documentation and changelog
(#2899)
github-merge-queue bot pushed a commit that referenced this pull request Feb 18, 2025
<!-- Reference any GitHub issues resolved by this PR -->

Towards #2051

This PR is part of the stack:

-- Add `generate_arg` cheatcode
(#2892)
-- Add `Fuzzable` trait
(#2893)
-- Move statements logic to separate function
(#2894)
-- Add new fuzzer logic to plugin
(#2895)
-- Add cheatcode to save fuzzer input
(#2923)
-- Remove old fuzzer logic
(#2896)
➡️ Add fuzzer tests with multiple attributes
(#2898)
-- Update fuzzer documentation and changelog
(#2899)

---------

Co-authored-by: Franciszek Job <[email protected]>
Co-authored-by: Piotr Figiela <[email protected]>
github-merge-queue bot pushed a commit that referenced this pull request Feb 19, 2025
<!-- Reference any GitHub issues resolved by this PR -->

Towards #2051

This PR is part of the stack:

-- Add `generate_arg` cheatcode
(#2892)
-- Add `Fuzzable` trait
(#2893)
-- Move statements logic to separate function
(#2894)
-- Add new fuzzer logic to plugin
(#2895)
-- Add cheatcode to save fuzzer input
(#2923)
-- Remove old fuzzer logic
(#2896)
-- Add fuzzer tests with multiple attributes
(#2898)
➡️ Update fuzzer documentation and changelog
(#2899)

---------

Co-authored-by: Artur Michałek <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants