How To Install robot-testing-framework on Kali Linux

In this tutorial we learn how to install robot-testing-framework on Kali Linux. robot-testing-framework is Robot Testing Framework (metapackage)

Introduction

In this tutorial we learn how to install robot-testing-framework on Kali Linux.

What is robot-testing-framework

robot-testing-framework is:

It is a generic and multi-platform testing framework for the test driven development (TDD) which is initially designed for the robotic systems. However, it can be used for any TDD system. The framework provides functionalities for developing and running unit tests in a language and middleware independent manner. The test cases are developed as independent plug-ins (i.e., using scripting languages or built as dynamically loadable libraries) to be loaded and executed by an automated test runner. Moreover, a fixture manager prepares the setup (e.g., running robot interfaces, simulator) and actively monitors that all the requirements for running the tests are satisfied during the execution of the tests. These functionalities along with other facilities such as the test result collector, result formatter and remote interface allow for rapid development of test units to cover different levels of system testing.

This metapackage installs all libraries and tools.

There are three methods to install robot-testing-framework on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install robot-testing-framework Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install robot-testing-framework using apt-get by running the following command:

sudo apt-get -y install robot-testing-framework

Install robot-testing-framework Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install robot-testing-framework using apt by running the following command:

sudo apt -y install robot-testing-framework

Install robot-testing-framework Using aptitude

If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install robot-testing-framework using aptitude by running the following command:

sudo aptitude -y install robot-testing-framework

How To Uninstall robot-testing-framework on Kali Linux

To uninstall only the robot-testing-framework package we can use the following command:

sudo apt-get remove robot-testing-framework

Uninstall robot-testing-framework And Its Dependencies

To uninstall robot-testing-framework and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove robot-testing-framework

Remove robot-testing-framework Configurations and Data

To remove robot-testing-framework configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge robot-testing-framework

Remove robot-testing-framework configuration, data, and all of its dependencies

We can use the following command to remove robot-testing-framework configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge robot-testing-framework

Dependencies

robot-testing-framework have the following dependencies:

References

Summary

In this tutorial we learn how to install robot-testing-framework package on Kali Linux using different package management tools: apt, apt-get and aptitude.