testgres.os_ops
testgres.os_ops is a lightweight Python package that provides a unified, highly secure, and polymorphic interface (OsOperations) for interacting with the operating system environment either locally or on a remote machine.
While originally designed as an infrastructure core for the testgres PostgreSQL testing framework, this package is completely decoupled and can be installed and used independently in any automation pipeline.
Key Features
- Unified API (
OsOperations): Write your automation logic once using a high-level abstract interface and switch transparently between local execution and remote SSH sessions. - Stateless and Stateful Environments: Smooth handling of environment variables across distinct execution contexts (
set_env,environ, and polymorphicreset_envwith clean state rollback). - Industrial-Grade Shell Security: Safe execution pipeline featuring bulletproof shell argument escaping (
join_command_arguments) and tilde tracking (~,~root), fully eliminating code injection vulnerabilities. - Cross-Platform Consistency: Extensively verified via a robust multi-container matrix across 12+ Linux distributions (including Ubuntu, Rocky Linux, Alt Linux, Astra Linux, and Alpine).
Installation
pip install testgres.os-ops
Architecture
LocalOperations: Interacts with the host machine using native Python standard libraries (subprocess,psutil,os,pathlib).RemoteOperations: Controls remote Linux-based nodes by proxying commands over secure SSH connections (utilizing binary stream polling and automated environment replication).
Supported operation groups include:
- Safe shell command execution
- Persistent environment variable tracking
- File and directory tree management (
stat, exclusive creation, copying) - Process lifecycle and signal management
Quick Start Example
The following example demonstrates how the exact same generic automation code executes seamlessly on both a local host and a remote RHEL server.
import uuid
from testgres.operations.os_ops import OsOperations
from testgres.operations.os_ops import ConnectionParams
from testgres.operations.local_ops import LocalOperations
from testgres.operations.remote_ops import RemoteOperations
def generic_pipeline(title: str, os_ops: OsOperations):
"""Polymorphic code that executes identically on any target platform."""
cmd = [
"sh",
"-c",
"echo whoami: $(whoami); "
"echo \"------ os_info:\"; cat /etc/os-release; "
"echo \"------ our env:\"; echo \"OS_OPS_ENV\": ${OS_OPS_ENV}; "
]
print("[{}] -------------\n".format(title))
# Set stateful environment variable
os_ops.set_env("OS_OPS_ENV", "HELLO WORLD!")
# Safe execution with precise encoding
cout = os_ops.exec_command(cmd, encoding="utf-8")
print(cout)
# Polymorphic state cleanup
os_ops.reset_env("OS_OPS_ENV", None)
return
# 1. Run locally using Python API under the hood
local_ops = LocalOperations()
generic_pipeline("Local system", local_ops)
# 2. Run remotely over an isolated SSH session
remote_cn_params = ConnectionParams(
host="192.168.122.85",
port=22,
username="test",
ssh_key="./id_rsa_test",
)
remote_ops = RemoteOperations(remote_cn_params)
generic_pipeline("Remote system", remote_ops)
Expected Output
[Local system] -------------
whoami: dima
------ os_info:
PRETTY_NAME="Ubuntu 24.04.4 LTS"
NAME="Ubuntu"
VERSION_ID="24.04"
VERSION="24.04.4 LTS (Noble Numbat)"
VERSION_CODENAME=noble
ID=ubuntu
ID_LIKE=debian
HOME_URL="https://ubuntu.com"
SUPPORT_URL="https://ubuntu.com"
BUG_REPORT_URL="https://launchpad.net"
PRIVACY_POLICY_URL="https://ubuntu.comlegal/terms-and-policies/privacy-policy"
UBUNTU_CODENAME=noble
LOGO=ubuntu-logo
------ our env:
OS_OPS_ENV: HELLO WORLD!
[Remote system] -------------
whoami: test
------ os_info:
NAME="Red Hat Enterprise Linux"
VERSION="8.9 (Ootpa)"
ID="rhel"
ID_LIKE="fedora"
VERSION_ID="8.9"
PLATFORM_ID="platform:el8"
PRETTY_NAME="Red Hat Enterprise Linux 8.9 (Ootpa)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:redhat:enterprise_linux:8::baseos"
HOME_URL="https://redhat.com"
DOCUMENTATION_URL="https://redhat.com"
BUG_REPORT_URL="https://redhat.com"
REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8"
REDHAT_BUGZILLA_PRODUCT_VERSION=8.9
REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux"
REDHAT_SUPPORT_PRODUCT_VERSION="8.9"
------ our env:
OS_OPS_ENV: HELLO WORLD!
Testing
The project includes an intensive full-scale test suite ensuring absolute behavior consistency between local and remote providers. The validation matrix automatically deploys multi-container Docker environments to stress-test concurrent setups, edge-case quoting anomalies, and thread isolation across distinct architectures.
Authors
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file testgres_os_ops-3.2.0.tar.gz.
File metadata
- Download URL: testgres_os_ops-3.2.0.tar.gz
- Upload date:
- Size: 43.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c4d3f20b192cea1c8863a8b6cd2feeaae9bc1ab0416e93f79df787bd454712d
|
|
| MD5 |
e419d16a211c2711c5ecf53e13d209ea
|
|
| BLAKE2b-256 |
4613b03e294ba3b55ea33c22ca7127e1a29c1af57532dae3522fd6956fb93426
|
Provenance
The following attestation bundles were made for testgres_os_ops-3.2.0.tar.gz:
Publisher:
python-publish.yml on postgrespro/testgres.os_ops
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
testgres_os_ops-3.2.0.tar.gz -
Subject digest:
9c4d3f20b192cea1c8863a8b6cd2feeaae9bc1ab0416e93f79df787bd454712d - Sigstore transparency entry: 2195040742
- Sigstore integration time:
-
Permalink:
postgrespro/testgres.os_ops@428f8e9ee9c3dca120a4c3f97d98194282287b49 -
Branch / Tag:
refs/tags/v3.2.0 - Owner: https://github.com/postgrespro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@428f8e9ee9c3dca120a4c3f97d98194282287b49 -
Trigger Event:
release
-
Statement type:
File details
Details for the file testgres_os_ops-3.2.0-py3-none-any.whl.
File metadata
- Download URL: testgres_os_ops-3.2.0-py3-none-any.whl
- Upload date:
- Size: 25.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2928779ac4b7a48bcd9777e804d8a5262910bb14e8db587c677655c919204201
|
|
| MD5 |
743e490e25ac9bbe0bbfab853e468891
|
|
| BLAKE2b-256 |
6885cbea2ba3857a62432b98fa5062ba700371e1573708c34271d8ab6627cb10
|
Provenance
The following attestation bundles were made for testgres_os_ops-3.2.0-py3-none-any.whl:
Publisher:
python-publish.yml on postgrespro/testgres.os_ops
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
testgres_os_ops-3.2.0-py3-none-any.whl -
Subject digest:
2928779ac4b7a48bcd9777e804d8a5262910bb14e8db587c677655c919204201 - Sigstore transparency entry: 2195040752
- Sigstore integration time:
-
Permalink:
postgrespro/testgres.os_ops@428f8e9ee9c3dca120a4c3f97d98194282287b49 -
Branch / Tag:
refs/tags/v3.2.0 - Owner: https://github.com/postgrespro
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@428f8e9ee9c3dca120a4c3f97d98194282287b49 -
Trigger Event:
release
-
Statement type: