1. Confirm the test standard
In order to realize software verification, a series of tests are needed. Validation testing also requires a test plan and process. The test plan should specify the type and progress of the test, and the test process defines some special test cases to explain whether the software meets the requirements. Whether it is a plan or a process, we should focus on whether the software meets all the functions and performance stipulated in the contract, whether the documents are complete and accurate, and whether the man-machine interface (such as portability, compatibility, error recovery ability, maintainability, etc.) satisfies users.
There are two possibilities to confirm the test results. One is that the function and performance indicators meet the requirements of the software requirements specification and are acceptable to users. The other is that the software does not meet the requirements of software requirements, which is unacceptable to users. At this stage of the project, it is difficult to correct serious errors and deviations within the predetermined time limit, so it is necessary to negotiate with users to find a proper solution to the problem.
2. Configuration review
Another important part of validation testing is configuration review. The purpose of the review is to ensure that the software configuration is complete, the classification is orderly, and the details required for software maintenance are included.
3.α, β test
In fact, it is impossible for software developers to fully foresee the actual use of programs by users. For example, the user may misunderstand the command, or provide some strange data combinations, or may be confused about the output information that the designer thinks is clear, and so on. Therefore, whether the software really meets the requirements of end users should be tested by users. The acceptance test can be informal test or planned system test. Sometimes, the acceptance test lasts for weeks or even months, and the errors are constantly exposed, which leads to the delay of development. A software product may have many users, and it is impossible for everyone to accept it. At this time, a process called alpha and beta testing is often used to find problems that only end users can find.
Alpha testing refers to the software development company organizing internal personnel to simulate various user lines to test the upcoming software products (called alpha version), trying to find errors and correct them. The key of alpha testing is to simulate the actual running environment and user operation of software products as truly as possible, and cover all possible user operation modes as much as possible. A software product that has been adjusted by alpha testing is called beta. Secondly, beta testing, that is, software development companies organize typical users in all aspects to actually use the beta version in their daily work, and ask users to report abnormal situations and make criticisms. Then the software development company will revise and improve the beta version.
Basic methods of system testing
Computer software is an important part of computer-based system. After the software is developed, it should be integrated with other components in the system. At this time, a series of system integration and verification tests are needed. The detailed discussion of these tests is beyond the scope of software engineering, and these tests cannot be completed by software developers alone. Before the system test, the software engineer should complete the following tasks:
(1) Design an error handling path for the input information of the test software system;
(2) Design test cases, simulate the wrong data and possible errors in the software interface, record the test results, and provide experience and help for system testing;
(3) Participate in the planning and design of system testing to ensure the rationality of software testing.
System testing should be composed of several different tests, aiming at fully running the system, verifying whether all components of the system can work in a political party and completing the assigned tasks. Several types of system testing are briefly discussed below.
1, resume testing
Recovery test mainly checks the fault tolerance of the system. When there is a problem with the system, can you correct the error and restart the system within the specified time interval? The recovery test should first use various methods to force the system to fail, and then verify whether the system can recover as soon as possible. For automatic recovery, it is necessary to verify the correctness of reinitialization, checkpoint mechanism, data recovery and restart. For the artificial intervention repair system, it is necessary to estimate the average repair time to determine whether it is within the acceptable range.
2. Safety test
Security testing checks the ability of the system to prevent illegal intrusion. In security testing, testers pretend to be illegal intruders and try to break through the defense line through various methods. For example, ① trying to intercept or decipher passwords; (2) Customize the protection mechanism of the software destruction system; (3) Deliberately causing system failure and attempting to illegally enter during recovery; (4) Trying to infer the required information by browsing non-confidential data, and so on. Theoretically, as long as there is enough time and resources, there is no inaccessible system. Therefore, the criterion of system security design is to make the cost of illegal intrusion exceed the value of protected information. At this point, illegal intruders are unprofitable.
3. Strength test
The strength test checks the program's resistance to abnormal conditions. Strength testing always forces the system to run under abnormal resource configuration. For example: ① When the normal interrupt frequency is one or two per second, run a test case that generates ten interrupts per second; (2) Quantitatively increase the data input rate and check the reflection ability of input sub-functions; (3) Run test cases that require the largest storage space (or other resources); (4) Running test cases may cause the virtual memory operating system to crash or the disk data to shake violently.
4. Characteristic test
For those real-time and embedded systems, even if the software part meets the functional requirements, it may not meet the performance requirements. Although each test step includes the performance test from the unit test, only after the system is truly integrated can the performance be fully and reliably tested and run in the real environment. The purpose of performance testing is to accomplish this task. Performance testing is sometimes combined with strength testing, which usually requires the support of other software and hardware.