Test platform configuration-management tool selection (on)

According to the distribution of test tasks, Lin needs to build the Zen Tao management tools required by the development team. If the development engineer has already completed the build, there is no need to rebuild it, just apply it directly.

 

 

3.3.1 Selection of management tools

 

At present, the most widely used test management platforms in the industry are HP's ALM and the domestic open source software Zen Tao, both of which provide very rich test management functions, such as requirement management, use case management, defect management, etc. Compared with HP's ALM, open source Zen Tao fits the Scrum model better.

 

1. ALM

ALM (Application Lifecycle Management, application lifecycle management software) is used for the entire lifecycle management of software development activities. The early versions developed by HP are Test Direct and Quality Center. More multinational companies or powerful companies are using it. ALM is expensive, and generally entrepreneurial or smaller companies cannot afford it.

 

2. Zen Tao

ZenTao is an excellent open source project management software in China, which integrates product management, project management, quality management, document management, organization management and affairs management, and perfectly covers the core process of project management. At present, many domestic Internet companies use Zen Tao for project management.

 

This tutorial uses Zen Tao as the project management platform and introduces the agile testing process through actual cases.

 

3.3.2 ZenTao Installation and Configuration

 

As an excellent open source project management software, ZenTao provides a wealth of configuration methods. Readers can obtain the open source version from its official website and build it on Windows or Linux. This tutorial uses CentOS as the operating system platform to build ZenTao .

 

[Case 3-2 ZenTao Installation and Configuration]

 

Nowadays, there are many channels for readers to obtain knowledge. There are a lot of materials on the Internet that can help readers complete the environment construction, but the repetition rate and error rate are high. This book gives as much as possible a detailed configuration process for readers to learn.

 

Before configuring ZenTao, you need to install and configure the CentOS system. In order to facilitate learning, this tutorial uses a VMware virtual machine to simulate a real machine to install CentOS. For the installation process, please refer to "Appendix 1 CentOS Environment Setup Manual". The CentOS version is: CentOS-6.5-x86_64.

 

After CentOS configuration is complete, download the open source version corresponding to ZenTao official website to build the project application environment.

 

The ZenTao development language is PHP, and the database uses Mysql. Before configuring ZenTao, you need to configure the ZenTao operating environment.

 

1. Apache installation and configuration

Install Apache on the installed CentOS virtual machine, and check whether it has been installed through rpm -q, such as:

 

If it has been installed, the above version information will appear, just start the service. If it is not installed, you can use the following command to install it.

 

After the installation is complete, start the apache server with the following commands, "start" to start the service, "restart" to restart the service, and "stop" to stop the service.

 

After the startup is successful, visit the server, such as http://192.168.0.105. If the page shown in Figure 3-1 appears, it means that the Apache installation is successful. Otherwise, please check the above installation steps.

Figure 3- 1 Apache started successfully

 

If you need to set the httpd service to start automatically after booting, you can edit the /etc/rc.d/rc.local file and add the following code.

 

2. PHP installation and configuration

After the Apache installation is complete, install and configure the php parser.

 

Similarly, first check whether php has been installed, use the following command:

 

The result of the above command indicates that the system does not have a php parser installed, use the following command to install:

 

After the installation is complete, verify again whether the php parser has been installed, such as

The above results indicate that the PHP 5.3.3 version has been successfully installed.

 

3. Mysql installation and configuration

This ECShop system uses Mysql database. Use the following steps to install Mysql database.

 

(1) Install mysql and mysql-server files

 

During the installation of mysql files, lib files and other auxiliary files related to mysql are automatically installed.

 

(2) Check whether mysql has been installed

 

(3) Start the mysql service

 

At this point, the Mysql database installation is complete, enter the database password setting, such as the following command:

 

Find the command path for mysqladmin to modify the password:

 

Set the password of the root account of the mysql database to 123456:

 

Cannot log in without a password:

Log in with root and password:

 

After mysql installation is complete, install the php_pdo and php_pdo_mysql components.

 

If you need to set the mysql service to start automatically after booting, you can edit the /etc/rc.d/rc.local file and add the following code.

Guess you like

Origin blog.csdn.net/weixin_43802541/article/details/112374300