feat: python formatter finally working

This commit is contained in:
dextmorgn
2025-08-13 20:08:06 +02:00
parent 4d5f96bb8d
commit 7620a6d145
148 changed files with 6777 additions and 3269 deletions

View File

@@ -1,40 +1,50 @@
import re
from typing import List
from app.tools.network.httpx import HttpxTool
from tools.network.httpx import HttpxTool
tool = HttpxTool()
def test_name():
assert tool.name() == "httpx"
def test_description():
assert tool.description() == "An HTTP toolkit that probes services, web servers, and other valuable metadata."
assert (
tool.description()
== "An HTTP toolkit that probes services, web servers, and other valuable metadata."
)
def test_category():
assert tool.category() == "Web technologies enumeration"
def test_image():
assert tool.get_image() == "projectdiscovery/httpx"
def test_install():
tool.install()
assert tool.is_installed() == True
def test_version():
tool.install()
version = tool.version()
# Check that version follows the expected format: v followed by digits and dots
assert re.match(r'^v[\d\.]+$', version)
assert re.match(r"^v[\d\.]+$", version)
def test_launch():
assert True
results = tool.launch("https://alliage.io")
print(results)
assert isinstance(results, List)
def test_launch_unreached_host():
assert True
results = tool.launch("https://this-is-not-a-valid-domain.local")
assert isinstance(results, List)
assert len(results) == 0