sysbot 0.2.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- sysbot-0.2.0/LICENSE +21 -0
- sysbot-0.2.0/MANIFEST.in +1 -0
- sysbot-0.2.0/PKG-INFO +59 -0
- sysbot-0.2.0/README.md +28 -0
- sysbot-0.2.0/pyproject.toml +3 -0
- sysbot-0.2.0/setup.cfg +4 -0
- sysbot-0.2.0/setup.py +51 -0
- sysbot-0.2.0/sysbot/README.md +611 -0
- sysbot-0.2.0/sysbot/Sysbot.py +318 -0
- sysbot-0.2.0/sysbot/__init__.py +51 -0
- sysbot-0.2.0/sysbot/connectors/__init__.py +16 -0
- sysbot-0.2.0/sysbot/connectors/http.py +1093 -0
- sysbot-0.2.0/sysbot/connectors/local.py +249 -0
- sysbot-0.2.0/sysbot/connectors/socket.py +329 -0
- sysbot-0.2.0/sysbot/connectors/ssh.py +587 -0
- sysbot-0.2.0/sysbot/connectors/winrm.py +134 -0
- sysbot-0.2.0/sysbot/modules/__init__.py +8 -0
- sysbot-0.2.0/sysbot/modules/bmc/__init__.py +7 -0
- sysbot-0.2.0/sysbot/modules/bmc/idrac.py +351 -0
- sysbot-0.2.0/sysbot/modules/bmc/ilo.py +308 -0
- sysbot-0.2.0/sysbot/modules/linux/__init__.py +8 -0
- sysbot-0.2.0/sysbot/modules/linux/dnf.py +47 -0
- sysbot-0.2.0/sysbot/modules/linux/file.py +256 -0
- sysbot-0.2.0/sysbot/modules/linux/firewalld.py +190 -0
- sysbot-0.2.0/sysbot/modules/linux/ip.py +112 -0
- sysbot-0.2.0/sysbot/modules/linux/iptables.py +274 -0
- sysbot-0.2.0/sysbot/modules/linux/kubernetes.py +283 -0
- sysbot-0.2.0/sysbot/modules/linux/libvirt.py +181 -0
- sysbot-0.2.0/sysbot/modules/linux/podman.py +167 -0
- sysbot-0.2.0/sysbot/modules/linux/process.py +108 -0
- sysbot-0.2.0/sysbot/modules/linux/rpm.py +60 -0
- sysbot-0.2.0/sysbot/modules/linux/selinux.py +112 -0
- sysbot-0.2.0/sysbot/modules/linux/sysinfo.py +317 -0
- sysbot-0.2.0/sysbot/modules/linux/systemd.py +53 -0
- sysbot-0.2.0/sysbot/modules/linux/users.py +128 -0
- sysbot-0.2.0/sysbot/modules/monitoring/__init__.py +7 -0
- sysbot-0.2.0/sysbot/modules/monitoring/grafana.py +219 -0
- sysbot-0.2.0/sysbot/modules/network/__init__.py +7 -0
- sysbot-0.2.0/sysbot/modules/network/cisco/__init__.py +7 -0
- sysbot-0.2.0/sysbot/modules/network/cisco/catalyst.py +340 -0
- sysbot-0.2.0/sysbot/modules/vmware/__init__.py +7 -0
- sysbot-0.2.0/sysbot/modules/vmware/nsx.py +516 -0
- sysbot-0.2.0/sysbot/modules/vmware/sddcmanager.py +432 -0
- sysbot-0.2.0/sysbot/modules/vmware/vsphere.py +381 -0
- sysbot-0.2.0/sysbot/modules/windows/__init__.py +8 -0
- sysbot-0.2.0/sysbot/modules/windows/adcs.py +187 -0
- sysbot-0.2.0/sysbot/modules/windows/adds.py +266 -0
- sysbot-0.2.0/sysbot/modules/windows/dnsserver.py +147 -0
- sysbot-0.2.0/sysbot/modules/windows/file.py +197 -0
- sysbot-0.2.0/sysbot/modules/windows/firewall.py +184 -0
- sysbot-0.2.0/sysbot/modules/windows/ip.py +105 -0
- sysbot-0.2.0/sysbot/modules/windows/sysinfo.py +267 -0
- sysbot-0.2.0/sysbot/modules/windows/users.py +43 -0
- sysbot-0.2.0/sysbot/modules/windows/veeam.py +212 -0
- sysbot-0.2.0/sysbot/modules/windows/wsus.py +155 -0
- sysbot-0.2.0/sysbot/plugins/__init__.py +7 -0
- sysbot-0.2.0/sysbot/plugins/ansible.py +610 -0
- sysbot-0.2.0/sysbot/plugins/data.py +123 -0
- sysbot-0.2.0/sysbot/plugins/vault.py +169 -0
- sysbot-0.2.0/sysbot/utils/__init__.py +7 -0
- sysbot-0.2.0/sysbot/utils/engine.py +437 -0
- sysbot-0.2.0/sysbot/utils/helper.py +119 -0
- sysbot-0.2.0/sysbot/utils/robot/__init__.py +7 -0
- sysbot-0.2.0/sysbot/utils/robot/listener/__init__.py +8 -0
- sysbot-0.2.0/sysbot/utils/robot/listener/mongodb.py +283 -0
- sysbot-0.2.0/sysbot/utils/robot/listener/mysql.py +395 -0
- sysbot-0.2.0/sysbot/utils/robot/listener/postgresql.py +395 -0
- sysbot-0.2.0/sysbot/utils/robot/listener/sqlite.py +374 -0
- sysbot-0.2.0/sysbot/utils/robot/polarion.py +361 -0
- sysbot-0.2.0/sysbot.egg-info/PKG-INFO +59 -0
- sysbot-0.2.0/sysbot.egg-info/SOURCES.txt +72 -0
- sysbot-0.2.0/sysbot.egg-info/dependency_links.txt +1 -0
- sysbot-0.2.0/sysbot.egg-info/requires.txt +37 -0
- sysbot-0.2.0/sysbot.egg-info/top_level.txt +1 -0
sysbot-0.2.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Thibault SCIRE
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
sysbot-0.2.0/MANIFEST.in
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
include sysbot/README.md
|
sysbot-0.2.0/PKG-INFO
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: sysbot
|
|
3
|
+
Version: 0.2.0
|
|
4
|
+
Summary: System test automation library
|
|
5
|
+
Home-page: https://github.com/JoReci2/sysbot.git
|
|
6
|
+
Author: Thibault SCIRE
|
|
7
|
+
Author-email: thibault.scire@outlook.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Requires-Python: >=3.7
|
|
10
|
+
Description-Content-Type: text/plain
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Requires-Dist: robotframework
|
|
13
|
+
Requires-Dist: paramiko
|
|
14
|
+
Requires-Dist: sshtunnel
|
|
15
|
+
Requires-Dist: netmiko
|
|
16
|
+
Requires-Dist: redfish
|
|
17
|
+
Requires-Dist: pywinrm
|
|
18
|
+
Requires-Dist: pyOpenSSL
|
|
19
|
+
Requires-Dist: pytz
|
|
20
|
+
Requires-Dist: requests
|
|
21
|
+
Requires-Dist: requests-oauthlib
|
|
22
|
+
Requires-Dist: PyJWT
|
|
23
|
+
Requires-Dist: cryptography
|
|
24
|
+
Requires-Dist: hvac
|
|
25
|
+
Requires-Dist: sqlalchemy
|
|
26
|
+
Requires-Dist: ansible-runner
|
|
27
|
+
Provides-Extra: mysql
|
|
28
|
+
Requires-Dist: mysql-connector-python; extra == "mysql"
|
|
29
|
+
Provides-Extra: postgresql
|
|
30
|
+
Requires-Dist: psycopg2-binary; extra == "postgresql"
|
|
31
|
+
Provides-Extra: mongodb
|
|
32
|
+
Requires-Dist: pymongo; extra == "mongodb"
|
|
33
|
+
Provides-Extra: all-databases
|
|
34
|
+
Requires-Dist: mysql-connector-python; extra == "all-databases"
|
|
35
|
+
Requires-Dist: psycopg2-binary; extra == "all-databases"
|
|
36
|
+
Requires-Dist: pymongo; extra == "all-databases"
|
|
37
|
+
Provides-Extra: dev
|
|
38
|
+
Requires-Dist: build; extra == "dev"
|
|
39
|
+
Requires-Dist: pdoc3; extra == "dev"
|
|
40
|
+
Requires-Dist: ruff; extra == "dev"
|
|
41
|
+
Requires-Dist: bandit; extra == "dev"
|
|
42
|
+
Requires-Dist: radon; extra == "dev"
|
|
43
|
+
Requires-Dist: safety; extra == "dev"
|
|
44
|
+
Dynamic: author
|
|
45
|
+
Dynamic: author-email
|
|
46
|
+
Dynamic: description
|
|
47
|
+
Dynamic: description-content-type
|
|
48
|
+
Dynamic: home-page
|
|
49
|
+
Dynamic: license
|
|
50
|
+
Dynamic: license-file
|
|
51
|
+
Dynamic: provides-extra
|
|
52
|
+
Dynamic: requires-dist
|
|
53
|
+
Dynamic: requires-python
|
|
54
|
+
Dynamic: summary
|
|
55
|
+
|
|
56
|
+
SysBot is a comprehensive library designed for system test automation.
|
|
57
|
+
It provides secure connection management (SSH, WinRM), secret handling
|
|
58
|
+
capabilities, and seamless integration with various technologies including Redfish
|
|
59
|
+
and remote system management. Perfect for DevOps teams looking to automate infrastructure tests workflows.
|
sysbot-0.2.0/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# SysBot
|
|
2
|
+
|
|
3
|
+
A comprehensive Python library for system test automation with support for multiple protocols (SSH, WinRM, HTTP, Socket), secret management, and seamless integration with Robot Framework and various database systems.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install sysbot
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Documentation
|
|
12
|
+
|
|
13
|
+
For complete documentation, tutorials, API reference, and usage examples, please visit the **[SysBot Documentation](https://joreci2.github.io/sysbot/)**.
|
|
14
|
+
|
|
15
|
+
## Links
|
|
16
|
+
|
|
17
|
+
- **Documentation**: [https://joreci2.github.io/sysbot/](https://joreci2.github.io/sysbot/)
|
|
18
|
+
- **PyPI**: [https://pypi.org/project/sysbot/](https://pypi.org/project/sysbot/)
|
|
19
|
+
- **Repository**: [https://github.com/JoReci2/sysbot](https://github.com/JoReci2/sysbot)
|
|
20
|
+
- **Issues**: [https://github.com/JoReci2/sysbot/issues](https://github.com/JoReci2/sysbot/issues)
|
|
21
|
+
|
|
22
|
+
## Contributing
|
|
23
|
+
|
|
24
|
+
Contributions are welcome! Please see the [CONTRIBUTING.md](CONTRIBUTING.md) file for guidelines.
|
|
25
|
+
|
|
26
|
+
## License
|
|
27
|
+
|
|
28
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
sysbot-0.2.0/setup.cfg
ADDED
sysbot-0.2.0/setup.py
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Setup script for SysBot package.
|
|
3
|
+
|
|
4
|
+
SysBot is a comprehensive library for system test automation with support for
|
|
5
|
+
multiple protocols (SSH, WinRM, HTTP, Socket), secret management, and integration
|
|
6
|
+
with Robot Framework and various database systems.
|
|
7
|
+
"""
|
|
8
|
+
from setuptools import setup, find_packages
|
|
9
|
+
|
|
10
|
+
setup(
|
|
11
|
+
name="sysbot",
|
|
12
|
+
version="0.2.0",
|
|
13
|
+
packages=find_packages(),
|
|
14
|
+
include_package_data=True,
|
|
15
|
+
install_requires=[
|
|
16
|
+
"robotframework",
|
|
17
|
+
"paramiko",
|
|
18
|
+
"sshtunnel",
|
|
19
|
+
"netmiko",
|
|
20
|
+
"redfish",
|
|
21
|
+
"pywinrm",
|
|
22
|
+
"pyOpenSSL",
|
|
23
|
+
"pytz",
|
|
24
|
+
"requests",
|
|
25
|
+
"requests-oauthlib",
|
|
26
|
+
"PyJWT",
|
|
27
|
+
"cryptography",
|
|
28
|
+
"hvac",
|
|
29
|
+
"sqlalchemy",
|
|
30
|
+
"ansible-runner",
|
|
31
|
+
],
|
|
32
|
+
extras_require={
|
|
33
|
+
"mysql": ["mysql-connector-python"],
|
|
34
|
+
"postgresql": ["psycopg2-binary"],
|
|
35
|
+
"mongodb": ["pymongo"],
|
|
36
|
+
"all_databases": ["mysql-connector-python", "psycopg2-binary", "pymongo"],
|
|
37
|
+
"dev": ["build", "pdoc3", "ruff", "bandit", "radon", "safety"],
|
|
38
|
+
},
|
|
39
|
+
author="Thibault SCIRE",
|
|
40
|
+
author_email="thibault.scire@outlook.com",
|
|
41
|
+
description="System test automation library",
|
|
42
|
+
long_description="""SysBot is a comprehensive library designed for system test automation.
|
|
43
|
+
It provides secure connection management (SSH, WinRM), secret handling
|
|
44
|
+
capabilities, and seamless integration with various technologies including Redfish
|
|
45
|
+
and remote system management. Perfect for DevOps teams looking to automate infrastructure tests workflows.""",
|
|
46
|
+
long_description_content_type="text/plain",
|
|
47
|
+
url="https://github.com/JoReci2/sysbot.git",
|
|
48
|
+
license="MIT",
|
|
49
|
+
license_files=["LICENSE"],
|
|
50
|
+
python_requires=">=3.7",
|
|
51
|
+
)
|