Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

Add functionality to pass custom fuzz array to fuzzer #63

Open
tedcasey opened this issue Feb 10, 2020 · 0 comments
Open

Add functionality to pass custom fuzz array to fuzzer #63

tedcasey opened this issue Feb 10, 2020 · 0 comments

Comments

@tedcasey
Copy link
Collaborator

tedcasey commented Feb 10, 2020

Expected Behaviour

Want to add behavior to send a custom fuzz array to the fuzzer so that users can send an array of their choosing to their json payload nodes

Actual Behaviour

Not currently supported. Only a default set of strings is currently run by the fuzzer.

Reproduce Scenario (including but not limited to)

N/A

Steps to Reproduce

N/A

Platform and Version

Sample Code that illustrates the problem

Would like to have something like this:

@Factory
  public Object[] fuzzwithCustomArray_IT() throws Exception {
    String itemName = UUID.randomUUID().toString();
    String[] myFuzzArray = new String[]{"values", "that", "might", "matter", "to", "my", "service"};
    SampleServiceObject1 object1 = new SampleServiceObject1(itemName, false);
    return new Object[] {new MetadataFuzzer(Service.SAMPLE_SERVICE.toString(), object1, myFuzzArray)};
  }

Logs taken while reproducing problem

@tedcasey tedcasey changed the title Add functionality to pass custom fuzz array to fuzzer. Add functionality to pass custom fuzz array to fuzzer Feb 10, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant