Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
supervisor /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-02-27 19:58
fixtures
[ DIR ]
drwxr-xr-x
2025-02-27 19:58
__init__.py
20
B
-rw-r--r--
2017-07-25 03:57
base.py
35.16
KB
-rw-r--r--
2020-08-07 05:05
test_childutils.py
5.35
KB
-rw-r--r--
2019-04-06 06:19
test_confecho.py
549
B
-rw-r--r--
2019-04-06 06:19
test_datatypes.py
26.61
KB
-rw-r--r--
2019-04-06 06:19
test_dispatchers.py
49.02
KB
-rw-r--r--
2019-04-06 06:19
test_end_to_end.py
10.47
KB
-rw-r--r--
2020-02-16 04:41
test_events.py
20.43
KB
-rw-r--r--
2019-04-06 06:19
test_http.py
24.82
KB
-rw-r--r--
2019-11-28 04:11
test_http_client.py
13.5
KB
-rw-r--r--
2019-04-06 06:19
test_loggers.py
20.94
KB
-rw-r--r--
2019-10-20 02:06
test_options.py
136.94
KB
-rw-r--r--
2020-04-10 05:49
test_poller.py
16.3
KB
-rw-r--r--
2019-04-06 06:19
test_process.py
97.58
KB
-rw-r--r--
2019-04-11 06:22
test_rpcinterfaces.py
101.81
KB
-rw-r--r--
2019-04-06 06:19
test_socket_manager.py
8.39
KB
-rw-r--r--
2020-08-07 06:07
test_states.py
2.22
KB
-rw-r--r--
2017-07-25 03:57
test_supervisorctl.py
80.15
KB
-rw-r--r--
2019-06-17 02:45
test_supervisord.py
33.72
KB
-rw-r--r--
2019-12-10 02:49
test_templating.py
62.18
KB
-rw-r--r--
2019-09-17 02:23
test_web.py
7
KB
-rw-r--r--
2019-04-06 06:19
test_xmlrpc.py
34.96
KB
-rw-r--r--
2019-04-06 06:19
Save
Rename
"""Test suite for supervisor.states""" import sys import unittest from supervisor import states class TopLevelProcessStateTests(unittest.TestCase): def test_module_has_process_states(self): self.assertTrue(hasattr(states, 'ProcessStates')) def test_stopped_states_do_not_overlap_with_running_states(self): for state in states.STOPPED_STATES: self.assertFalse(state in states.RUNNING_STATES) def test_running_states_do_not_overlap_with_stopped_states(self): for state in states.RUNNING_STATES: self.assertFalse(state in states.STOPPED_STATES) def test_getProcessStateDescription_returns_string_when_found(self): state = states.ProcessStates.STARTING self.assertEqual(states.getProcessStateDescription(state), 'STARTING') def test_getProcessStateDescription_returns_None_when_not_found(self): self.assertEqual(states.getProcessStateDescription(3.14159), None) class TopLevelSupervisorStateTests(unittest.TestCase): def test_module_has_supervisor_states(self): self.assertTrue(hasattr(states, 'SupervisorStates')) def test_getSupervisorStateDescription_returns_string_when_found(self): state = states.SupervisorStates.RUNNING self.assertEqual(states.getSupervisorStateDescription(state), 'RUNNING') def test_getSupervisorStateDescription_returns_None_when_not_found(self): self.assertEqual(states.getSupervisorStateDescription(3.14159), None) class TopLevelEventListenerStateTests(unittest.TestCase): def test_module_has_eventlistener_states(self): self.assertTrue(hasattr(states, 'EventListenerStates')) def test_getEventListenerStateDescription_returns_string_when_found(self): state = states.EventListenerStates.ACKNOWLEDGED self.assertEqual(states.getEventListenerStateDescription(state), 'ACKNOWLEDGED') def test_getEventListenerStateDescription_returns_None_when_not_found(self): self.assertEqual(states.getEventListenerStateDescription(3.14159), None) def test_suite(): return unittest.findTestCases(sys.modules[__name__]) if __name__ == '__main__': unittest.main(defaultTest='test_suite')