mirror of
https://github.com/laramies/theHarvester.git
synced 2025-02-25 15:03:01 +08:00
36 lines
994 B
Python
36 lines
994 B
Python
#!/usr/bin/env python3
|
|
# coding=utf-8
|
|
import os
|
|
|
|
import pytest
|
|
import requests
|
|
|
|
from theHarvester.discovery import threatminer
|
|
from theHarvester.lib.core import *
|
|
|
|
pytestmark = pytest.mark.asyncio
|
|
github_ci = os.getenv(
|
|
"GITHUB_ACTIONS"
|
|
) # Github set this to be the following: true instead of True
|
|
|
|
|
|
class TestThreatminer(object):
|
|
@staticmethod
|
|
def domain() -> str:
|
|
return "target.com"
|
|
|
|
async def test_api(self):
|
|
base_url = f"https://api.threatminer.org/v2/domain.php?q={TestThreatminer.domain()}&rt=5"
|
|
headers = {"User-Agent": Core.get_user_agent()}
|
|
request = requests.get(base_url, headers=headers)
|
|
assert request.status_code == 200
|
|
|
|
async def test_search(self):
|
|
search = threatminer.SearchThreatminer(TestThreatminer.domain())
|
|
await search.process()
|
|
assert isinstance(await search.get_hostnames(), set)
|
|
assert isinstance(await search.get_ips(), set)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
pytest.main()
|