What are the main aspects of interface testing?

1. The interface returns
whether the data format is consistent with expectations.

2. The correctness of interface data processing
Whether the database insertion, modification, and deletion are successful.

3. Fault-tolerant processing When the
parameter transmission value is wrong, whether the interface can give the corresponding return.

4. Parameter boundary value processing
If the passed parameter is large enough or negative, whether the interface can be processed normally.

5. Security
This is particularly important for interfaces exposed to the outside world.

6. Performance
Whether it can meet performance requirements.

7. Whether sensitive data has been processed,
such as passing transaction passwords, logging in accounts, etc.

Guess you like

Origin blog.csdn.net/aaaaaaaaanjjj/article/details/115300706