2021-01-04 study notes 3

IDE introduction

https://zhuanlan.zhihu.com/vs-code

Plug-in
Vue extension pack

Real machine debugging summary

  • Chrome + Android / Safari + iOS
  • Fiddler / Charles
  • Weinre, Spy-Debugger, vConsole

Interface test tool

As the business becomes more and more complex, the requirements for interface platforms and testing tools will be higher

  • version control
  • Visual editing

tool:

  • Postman
  • Interface performance test
  • Proxy test

Introduction to RESTful API

REST features:

  • Client-server
    By separating the user interface, data and storage, by simplifying server components to achieve cross-platform applications
  • Stateless, cacheable
    C -> S contains all the information needed to understand the request
  • Unified interface

RESTful API is a REST-style application interface with REST characteristics

Comparison of 4 common interface testing tools

Application scenario

  • Test the interface provided by the back-end personnel
  • Testing in front-end development
  1. Plug-in category: Postman, DHC, REST client
  2. Platform categories: Yapi, DOClever, RAP2, EasyMock, Swagger
  3. Terminal category: Postman, SoapUI, DOClever

What is Mock data, introduction to Mock data development

  • Simulate real interfaces to
    achieve efficient development, front-end and back-end synchronization, especially for distributed systems
  • Virtual business scenarios
    Some development scenarios are very difficult to trigger, and there are some abnormal logic and interaction logic
  • pressure test

Mock data tool

  • Structure
  • DOClever
  • Easy Mock
  • fast mock

Mock data: virtual data, false test data.
Mock development: using mock data to achieve efficient development.
Mock features: simulated interfaces, virtual business scenarios, critical situations

Mock data development process

Insert picture description here

Guess you like

Origin blog.csdn.net/weixin_40693643/article/details/112158123