mirror of
https://github.com/laramies/theHarvester.git
synced 2025-02-23 22:13:02 +08:00
Add bufferover unit test
This commit is contained in:
parent
d30c3af154
commit
f3f62232a4
1 changed files with 30 additions and 0 deletions
30
tests/discovery/test_bufferover.py
Normal file
30
tests/discovery/test_bufferover.py
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
# coding=utf-8
|
||||||
|
from theHarvester.lib.core import *
|
||||||
|
from theHarvester.discovery import bufferoverun
|
||||||
|
import requests
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
pytestmark = pytest.mark.asyncio
|
||||||
|
|
||||||
|
|
||||||
|
class TestBufferover(object):
|
||||||
|
@staticmethod
|
||||||
|
def domain() -> str:
|
||||||
|
return 'uber.com'
|
||||||
|
|
||||||
|
async def test_api(self):
|
||||||
|
base_url = f'https://dns.bufferover.run/dns?q={TestBufferover.domain()}'
|
||||||
|
headers = {'User-Agent': Core.get_user_agent()}
|
||||||
|
request = requests.get(base_url, headers=headers)
|
||||||
|
assert request.status_code == 200
|
||||||
|
|
||||||
|
async def test_do_search(self):
|
||||||
|
search = bufferoverun.SearchBufferover(TestBufferover.domain())
|
||||||
|
await search.process()
|
||||||
|
assert isinstance(await search.get_hostnames(), set)
|
||||||
|
assert isinstance(await search.get_ips(), set)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
pytest.main()
|
Loading…
Reference in a new issue