Automated test tools for Linux/ncurses

后端 未结 4 897
忘掉有多难
忘掉有多难 2020-12-16 15:52

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:

相关标签:
4条回答
  • 2020-12-16 16:22

    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).

    0 讨论(0)
  • 2020-12-16 16:41

    Have a look at the free version of TETware from the Open Group. It is a full test harness based on TCL.

    0 讨论(0)
  • 2020-12-16 16:44

    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...

    0 讨论(0)
  • 2020-12-16 16:47

    The expect tool sounds like what you need: http://linux.die.net/man/1/expect

    0 讨论(0)
提交回复
热议问题