mirror of
https://github.com/laramies/theHarvester.git
synced 2024-11-14 19:45:53 +08:00
32 lines
1,008 B
Python
32 lines
1,008 B
Python
#!/usr/bin/env python3
|
|
# coding=utf-8
|
|
from theHarvester.lib.core import *
|
|
from theHarvester.discovery import omnisint
|
|
import os
|
|
import requests
|
|
import pytest
|
|
|
|
pytestmark = pytest.mark.asyncio
|
|
github_ci = os.getenv('GITHUB_ACTIONS') # Github set this to be the following: true instead of True
|
|
|
|
|
|
class TestOmnisint(object):
|
|
@staticmethod
|
|
def domain() -> str:
|
|
return 'uber.com'
|
|
|
|
@pytest.mark.skipif(github_ci == 'true', reason='Skipping on Github CI due to unstable status code from site')
|
|
async def test_api(self):
|
|
base_url = f'https://sonar.omnisint.io/all/{TestOmnisint.domain()}'
|
|
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 = omnisint.SearchOmnisint(TestOmnisint.domain())
|
|
await search.process()
|
|
assert isinstance(await search.get_hostnames(), list)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
pytest.main()
|