Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Automated test tools for Linux/ncurses

I've picked up a legacy application developed in C/C++ on Linux, using ncurses for UI. What automated testing tools are there for this environment?

Edit: I've used AutomatedQA TestComplete in the past, and this is the type of tool I'm looking for - except running on Linux, and with the ability to test Text UI apps.

like image 851
Alistair Ward Avatar asked Apr 07 '11 10:04

Alistair Ward


2 Answers

I wrote something like that before. Not much docs, but you can try the code. It's written in Python and runs on Linux.

You would basically need the ANSIterm filter, and the expect module. Then you compose them into a filter. You'll likely have to start the process with the proctools module. They are all designed to work together or separately (modular).

like image 61
Keith Avatar answered Nov 08 '22 00:11

Keith


I have considered using Rational Function Tester and TestComplete.

RFT has explicit support for testing this type of application (text-mode linux) via built-in terminal emulation.

TestComplete does not support testing Linux apps directly, but can be made to work by "testing" a COM-enabled terminal emulation program (Attachmate Reflection at this stage), and using COM from the test scripts to do screen scraping.

Have also considered using Reflection as the terminal emulator and rolling my own test framework in C# and NUnit.

Edit: "Final" solution is using Terminator (a Java terminal emulator), extending it with an RMI interface and using TestNG...

like image 1
Alistair Ward Avatar answered Nov 08 '22 01:11

Alistair Ward