Hypothesis extension to allow generating strings based on regex
Project description
Hypothesis extension to allow generating strings based on regex. Useful in case you have some schema (e.g. JSON Schema) which already has regular expressions validating data.
Example
from hypothesis_regex import regex
import requests
import json
EMAIL_REGEX = r"^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]{2,}\.[a-zA-Z0-9-.]{2,}$"
@given(regex(EMAIL_REGEX))
def test_registering_user(email):
response = requests.post('/signup', json.dumps({'email': email}))
assert response.status_code == 201
Features
Regex strategy returns strings that always match given regex (this check is enforced by a filter) and it tries to do that in an effective way so that less generated examples are filtered out. However, some regex constructs may decrease strategy efficiency and should be used with caution:
“^” and “$” in the middle of a string - do not do anything.
“\b” and “\B” (word boundary and not a word boundary) - do not do anything and instead just rely on top-level regex match filter to filter out non-matching examples.
positive lookaheads and lookbehinds just generate data they should match (as if it was part of preceeding/following parts).
negative lookaheads and lookbehinds do not do anything so it relies on preceeding/following parts to generate correct strings (otherwise the example will be filtered out).
“(?(id)yes-pattern|no-pattern)” does not actually check if group with given id was actually used and instead just generates either yes- or no-pattern.
Regex strategy tries to go all crazy about generated data (e.g. “$” at the end of a string either does not generate anything or generate a newline). The idea is not to generate a nicely looking strings but instead any craze unexpected combination that will still match your given regex so you can prepare for those and handle them in most apropriate way.
You can use regex flags to get more control on strategy:
re.IGNORECASE - literals or literal ranges generate both lowercase and uppercase letters. E.g. r’a’ will generate both “a” and “A”, or ‘[a-z]’ will generate both lowercase and uppercase english characters.
re.DOTALL - “.” char will be able to generate newlines
re.UNICODE - character categories (”\w”, “\d” or “\s” and their negations) will generate unicode characters. This is default for Python 3, see re.ASCII to reverse it.
There are two ways to pass regex flags:
By passing compiled regex with that flags: regex(re.compile(‘abc’, re.IGNORECASE))
By using inline flags syntax: regex(‘(?i)abc’)
Installation
$ pip install hypothesis-regex
Requirements
Python >= 2.7 and <= 3.6
hypothesis >= 3.8
Project Links
License
MIT licensed. See the bundled LICENSE file for more details.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file hypothesis-regex-0.3.1.tar.gz
.
File metadata
- Download URL: hypothesis-regex-0.3.1.tar.gz
- Upload date:
- Size: 9.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d7432b72e832e9fa1db97bd949ab12f9739dd31363d8c8502215be007fde2763 |
|
MD5 | f4d97ff427e5cbe6fee0876a7474773e |
|
BLAKE2b-256 | b10cf58b9b187d48274a74238344f66afe262fc953bd4c4dd5fc3206c769b2ea |
File details
Details for the file hypothesis_regex-0.3.1-py2.py3-none-any.whl
.
File metadata
- Download URL: hypothesis_regex-0.3.1-py2.py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b1b851c08f1480abf34fea05ee6ad3362c5754c76dd83ef7ce8651e064a4fc61 |
|
MD5 | 9adbf1b8f8ea4636a4f7cc4badd11b1d |
|
BLAKE2b-256 | 4a5e66e12e5bab7aaa5cf8a20fc22d877c575969f4b308e1db3d69e590a6fbcf |