nvchecker/tests/test_regex.py
2019-07-08 11:40:08 +08:00

33 lines
972 B
Python

# MIT licensed
# Copyright (c) 2013-2019 lilydjwg <lilydjwg@gmail.com>, et al.
import pytest
pytestmark = pytest.mark.asyncio
async def test_regex_httpbin_default_user_agent(get_version):
ua = await get_version("example", {
"url": "https://httpbin.org/get",
"regex": r'"User-Agent": "([^"]+)"',
})
assert ua.startswith("lilydjwg/nvchecker")
async def test_regex_httpbin_user_agent(get_version):
assert await get_version("example", {
"url": "https://httpbin.org/get",
"regex": r'"User-Agent": "(\w+)"',
"user_agent": "Meow",
}) == "Meow"
async def test_regex(get_version):
assert await get_version("example", {
"url": "http://example.net/",
"regex": r'for (\w+) examples',
}) == "illustrative"
async def test_missing_ok(get_version):
assert await get_version("example", {
"url": "http://example.net/",
"regex": "foobar",
"missing_ok": True,
}) is None