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.
Files changed (74) hide show
  1. sysbot-0.2.0/LICENSE +21 -0
  2. sysbot-0.2.0/MANIFEST.in +1 -0
  3. sysbot-0.2.0/PKG-INFO +59 -0
  4. sysbot-0.2.0/README.md +28 -0
  5. sysbot-0.2.0/pyproject.toml +3 -0
  6. sysbot-0.2.0/setup.cfg +4 -0
  7. sysbot-0.2.0/setup.py +51 -0
  8. sysbot-0.2.0/sysbot/README.md +611 -0
  9. sysbot-0.2.0/sysbot/Sysbot.py +318 -0
  10. sysbot-0.2.0/sysbot/__init__.py +51 -0
  11. sysbot-0.2.0/sysbot/connectors/__init__.py +16 -0
  12. sysbot-0.2.0/sysbot/connectors/http.py +1093 -0
  13. sysbot-0.2.0/sysbot/connectors/local.py +249 -0
  14. sysbot-0.2.0/sysbot/connectors/socket.py +329 -0
  15. sysbot-0.2.0/sysbot/connectors/ssh.py +587 -0
  16. sysbot-0.2.0/sysbot/connectors/winrm.py +134 -0
  17. sysbot-0.2.0/sysbot/modules/__init__.py +8 -0
  18. sysbot-0.2.0/sysbot/modules/bmc/__init__.py +7 -0
  19. sysbot-0.2.0/sysbot/modules/bmc/idrac.py +351 -0
  20. sysbot-0.2.0/sysbot/modules/bmc/ilo.py +308 -0
  21. sysbot-0.2.0/sysbot/modules/linux/__init__.py +8 -0
  22. sysbot-0.2.0/sysbot/modules/linux/dnf.py +47 -0
  23. sysbot-0.2.0/sysbot/modules/linux/file.py +256 -0
  24. sysbot-0.2.0/sysbot/modules/linux/firewalld.py +190 -0
  25. sysbot-0.2.0/sysbot/modules/linux/ip.py +112 -0
  26. sysbot-0.2.0/sysbot/modules/linux/iptables.py +274 -0
  27. sysbot-0.2.0/sysbot/modules/linux/kubernetes.py +283 -0
  28. sysbot-0.2.0/sysbot/modules/linux/libvirt.py +181 -0
  29. sysbot-0.2.0/sysbot/modules/linux/podman.py +167 -0
  30. sysbot-0.2.0/sysbot/modules/linux/process.py +108 -0
  31. sysbot-0.2.0/sysbot/modules/linux/rpm.py +60 -0
  32. sysbot-0.2.0/sysbot/modules/linux/selinux.py +112 -0
  33. sysbot-0.2.0/sysbot/modules/linux/sysinfo.py +317 -0
  34. sysbot-0.2.0/sysbot/modules/linux/systemd.py +53 -0
  35. sysbot-0.2.0/sysbot/modules/linux/users.py +128 -0
  36. sysbot-0.2.0/sysbot/modules/monitoring/__init__.py +7 -0
  37. sysbot-0.2.0/sysbot/modules/monitoring/grafana.py +219 -0
  38. sysbot-0.2.0/sysbot/modules/network/__init__.py +7 -0
  39. sysbot-0.2.0/sysbot/modules/network/cisco/__init__.py +7 -0
  40. sysbot-0.2.0/sysbot/modules/network/cisco/catalyst.py +340 -0
  41. sysbot-0.2.0/sysbot/modules/vmware/__init__.py +7 -0
  42. sysbot-0.2.0/sysbot/modules/vmware/nsx.py +516 -0
  43. sysbot-0.2.0/sysbot/modules/vmware/sddcmanager.py +432 -0
  44. sysbot-0.2.0/sysbot/modules/vmware/vsphere.py +381 -0
  45. sysbot-0.2.0/sysbot/modules/windows/__init__.py +8 -0
  46. sysbot-0.2.0/sysbot/modules/windows/adcs.py +187 -0
  47. sysbot-0.2.0/sysbot/modules/windows/adds.py +266 -0
  48. sysbot-0.2.0/sysbot/modules/windows/dnsserver.py +147 -0
  49. sysbot-0.2.0/sysbot/modules/windows/file.py +197 -0
  50. sysbot-0.2.0/sysbot/modules/windows/firewall.py +184 -0
  51. sysbot-0.2.0/sysbot/modules/windows/ip.py +105 -0
  52. sysbot-0.2.0/sysbot/modules/windows/sysinfo.py +267 -0
  53. sysbot-0.2.0/sysbot/modules/windows/users.py +43 -0
  54. sysbot-0.2.0/sysbot/modules/windows/veeam.py +212 -0
  55. sysbot-0.2.0/sysbot/modules/windows/wsus.py +155 -0
  56. sysbot-0.2.0/sysbot/plugins/__init__.py +7 -0
  57. sysbot-0.2.0/sysbot/plugins/ansible.py +610 -0
  58. sysbot-0.2.0/sysbot/plugins/data.py +123 -0
  59. sysbot-0.2.0/sysbot/plugins/vault.py +169 -0
  60. sysbot-0.2.0/sysbot/utils/__init__.py +7 -0
  61. sysbot-0.2.0/sysbot/utils/engine.py +437 -0
  62. sysbot-0.2.0/sysbot/utils/helper.py +119 -0
  63. sysbot-0.2.0/sysbot/utils/robot/__init__.py +7 -0
  64. sysbot-0.2.0/sysbot/utils/robot/listener/__init__.py +8 -0
  65. sysbot-0.2.0/sysbot/utils/robot/listener/mongodb.py +283 -0
  66. sysbot-0.2.0/sysbot/utils/robot/listener/mysql.py +395 -0
  67. sysbot-0.2.0/sysbot/utils/robot/listener/postgresql.py +395 -0
  68. sysbot-0.2.0/sysbot/utils/robot/listener/sqlite.py +374 -0
  69. sysbot-0.2.0/sysbot/utils/robot/polarion.py +361 -0
  70. sysbot-0.2.0/sysbot.egg-info/PKG-INFO +59 -0
  71. sysbot-0.2.0/sysbot.egg-info/SOURCES.txt +72 -0
  72. sysbot-0.2.0/sysbot.egg-info/dependency_links.txt +1 -0
  73. sysbot-0.2.0/sysbot.egg-info/requires.txt +37 -0
  74. 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.
@@ -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.
@@ -0,0 +1,3 @@
1
+ [build-system]
2
+ requires = ["setuptools", "wheel"]
3
+ build-backend = "setuptools.build_meta"
sysbot-0.2.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
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
+ )