All the necessary code needed to connect to a node in a topology with some extras, such as basic logging, per-node locks and some extra useful methods.
To run the code, modify the config file, conf.yaml and execute ./main.py from the root dts folder. Here's an example config: executions: - system_under_test: "SUT 1" nodes: - name: "SUT 1" hostname: 127.0.0.1 user: root password: mypw The code only connects to a node. You'll see logs emitted to console saying where DTS connected. There's no documentation, as there's not much to document - the above is basically all there is to it, as far as user docs go. We'll add some real docs when there's enough functionality to document, when the HelloWorld testcases is in (point 4 in our roadmap below). What will be documented later is runtime dependencies and how to set up the DTS control node environment. This is our current roadmap: 1. Review this patchset and do the rest of the items in parallel, if possible. 2. Rework the parallel lock mechanism using something simpler using existing Python tools. 3. Add tools which aid with DTS control node environment setup and document their usage. 4. We have extracted the code needed to run the most basic testcase, HelloWorld, which runs the DPDK Hello World application. We'll split this along logical/functional boundaries and send after 1 is done. In fact, 1 is part of 4. 5. Once we have 4 applied, we'll planning on adding a basic functional testcase - pf_smoke. This send a bit of traffic, so the big addition is the software traffic generator, Scapy. 6. After 5, we'll add a basic performance testcase which doesn't use Scapy, but Trex or Ixia instead. 7. This is far in the future, but at this point we should have all of the core functionality in place. What then remains is adding the rest of the testcases. v2: Reworked config parser. Extended logging to log to files as well. Added type annotations to most of the code. Juraj Linkeš (7): dts: add basic logging facility dts: add ssh pexpect library dts: add locks for parallel node connections dts: add ssh connection extension dts: add Node base class dts: add dts workflow module dts: add dts executable script Owen Hilyard (1): dts: add config parser module dts/conf.yaml | 7 + dts/framework/config/__init__.py | 116 +++++++++++ dts/framework/config/conf_yaml_schema.json | 73 +++++++ dts/framework/dts.py | 76 ++++++++ dts/framework/exception.py | 75 +++++++ dts/framework/logger.py | 118 +++++++++++ dts/framework/node.py | 108 +++++++++++ dts/framework/settings.py | 43 +++++ dts/framework/ssh_connection.py | 70 +++++++ dts/framework/ssh_pexpect.py | 215 +++++++++++++++++++++ dts/framework/utils.py | 130 +++++++++++++ dts/main.py | 47 +++++ 12 files changed, 1078 insertions(+) create mode 100644 dts/conf.yaml create mode 100644 dts/framework/config/__init__.py create mode 100644 dts/framework/config/conf_yaml_schema.json create mode 100644 dts/framework/dts.py create mode 100644 dts/framework/exception.py create mode 100644 dts/framework/logger.py create mode 100644 dts/framework/node.py create mode 100644 dts/framework/settings.py create mode 100644 dts/framework/ssh_connection.py create mode 100644 dts/framework/ssh_pexpect.py create mode 100644 dts/framework/utils.py create mode 100755 dts/main.py -- 2.30.2