非图形用户界面的自动化系统测试框架

1 投票
1 回答
1382 浏览
提问于 2025-04-17 12:36

我在寻找一个自动化测试框架,用来测试一个具有以下特征的系统:

 1. Non-GUI System
 2. Has backend nodes running on multiple Linux/Unix hosts
 3. Has remotely executing processes against which we must test
 4. Results in a lot of DB access.

这里的测试是系统测试、集成测试和验收测试,而不是单元测试。我对框架的编程语言没有特别要求,任何语言或技术都可以,只要系统符合要求就行(不过我更喜欢用Python :))。

举个例子: 我想比较两个版本的产品功能。

    1. V1 will run on machine 1. The results will be written to database X
    2. V2 will run on machine 2. The results will be written to database Y
    3. The table structures of V1 & V2 are very different but logically same.
    4. Same data will be pushed to machine 1 & machine 2

1 个回答

2

试试 Pysys:http://sourceforge.net/projects/pysys/

我在工作中用这个工具进行系统测试,效果不错。它非常灵活。

撰写回答