Yelp / fuzz-lightyear

A pytest-inspired, DAST framework, capable of identifying vulnerabilities in a distributed, micro-service ecosystem through chaos engineering testing and stateful, Swagger fuzzing.
Other
205 stars 25 forks source link

support file uploads #4

Open domanchi opened 5 years ago

domanchi commented 5 years ago

Summary

In the petstore example, /pet/{petId}/uploadImage accepts a file in the formData.

/pet/{petId}/uploadImage:
  post:
    parameters:
    - name: "file"
      in: "formData"
      description: "file to upload"
      required: false
      type: "file"

We don't currently support this. Maybe we should?