-
Notifications
You must be signed in to change notification settings - Fork 584
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
Constrain inferred Django field strategies based on validators before filtering #1116
Comments
Notes dump:
|
Another note to self: after this is done, we could work with Simon to integrate hypothesis-drf and support the Django REST Framework. Technically possible before, but it would be much easier to support this well if we get a solid field-level inference + validation + registration system going first. At least if we bear that in mind, and thus this note! |
Based on chatting with a few Django people at the PyCon Australia sprints, validators are rarely used for model fields but almost always for forms (see our oldest open issue, #35). We can add them in either order, but this is low-priority before a It is almost certainly not worth the code complexity to support a public API for customisable validator inference; we should just support numeric and string validators and stop there. |
#1743 made this quite a bit easier, by cleaning up the
|
@Zac-HD would love an update on this feature. Deciding on what testing strategy to use with a new django project and would like to try Hypothesis out. |
Definitely don't let this stop you! This issue is a nice-to-have which would make automatically created strategies more efficient in some cases. We already infer strategies and they're guaranteed to be valid, plus you can supply an explicit strategy for any field you like if the automatic ones aren't quite what you want (e.g. only positive numbers in a field that allows negatives). |
Hi, I would like to start working on it :) |
Currently, we infer strategies for Django fields almost solely based on the field type, then filter that strategy by calling any attached validators.
Unfortunately, this can be highly inefficient (eg #1112; could not generate default User model). Instead of inferring a strategy from the field type alone, we should also choose arguments to the strategy by inspecting any validators. For some (eg RegexValidator) we might even choose a different strategy.
The text was updated successfully, but these errors were encountered: