当前位置:网站首页>Personal thoughts on the development of game automation protocol testing tool
Personal thoughts on the development of game automation protocol testing tool
2022-07-04 10:37:00 【Pot pot pot】
Catalog
Four 、 The function interface CASE Operation process
6、 ... and 、 Use case recording
Preface
From zero to 1 Try to get a tool , The first step from the beginning , Understand packets , After the first agreement is successfully sent in the packet , Think about how to put the documents ,( Among them, the file name has been thought for a long time , Probably because experience is not enough ) How to organize test results , Up to now, the final finished product , It can be used , But I always feel like something .
When writing this article, I struggled for a long time to express clearly , Because the code cannot be made public , I originally wanted to write a use case , This may be more obvious , But finally give up ...
Generalization
be based on pytest Organize use cases , Run and aggregate reports
Use producer consumer design pattern for protocol sending and receiving
gitlab CI Realize automatic timing trigger
Using language :python3.7+
frame :pytest
One 、 scene
1、 Automatic test of functional interface
2、 Batch 、 Repeatability test data construction
Two 、 Directory structure
|_agent
|_case
--|_XX function
----|_get_xxdata.py
----|_xx_test.py
----|_conftest.py
--|_XX function
|_conftest.py
|_command-protocol
|_common
|_dist
|_docs
|_gameconfigs
|_gametools
|_pb2
|_report
|_utils
pytest.ini
run.py
setting.yaml
3、 ... and 、 catalogue
agent: Front and back interaction layer , When writing a new agreement , First write the protocol request method here
case: Use case storage directory , Create a new folder for each function , among conftest.py Perform pre-processing and post-processing before use cases , No need to import , Just pass in the firmware name in the use case function
command-protocol: proto file
common: Protocol tool file
dist: Store packaged test data tool files
example: Sample file , Some unfamiliar function usage examples
gameconfig: Game item configuration , Mainly planning and configuration
gametools: Test data construction file
docs: Project documentation related
pb2: Protobuff Converted pb file
report: Run report directory ( Do not upload to the remote , Generated locally after running )
utils: Some auxiliary scripts , For example, lead pb, Generate result code file
pytest.ini: pytest Run setup file
requirements.txt: Third party package import file
run.py: Run case entry file
Four 、 The function interface CASE Operation process


5、 ... and 、 Data structure
1、 Card drawing scene

2、 Team mate / robot
( When you are too lazy to open multiple real machine clients , Or there is no real machine on hand )

6、 ... and 、 Use case recording
A non game embedded approach , Tell me your thoughts roughly
use Wireshark Capture network packets , preservation Wireshark file , hold Wireshark The file is parsed into json file , The protocol tool then reads json file , Parse into use case steps .
Last :
The article may not be clear , If you are interested or have any suggestions, you can leave a message
边栏推荐
- Uniapp--- initial use of websocket (long link implementation)
- 基于线性函数近似的安全强化学习 Safe RL with Linear Function Approximation 翻译 2
- Learning XML DOM -- a typical model for parsing XML documents
- leetcode842. Split the array into Fibonacci sequences
- Linked list operation can never change without its roots
- Network connection (II) three handshakes, four waves, socket essence, packaging of network packets, TCP header, IP header, ACK confirmation, sliding window, results of network packets, working mode of
- Sword finger offer 05 (implemented in C language)
- Evolution from monomer architecture to microservice architecture
- DML statement of MySQL Foundation
- On binary tree (C language)
猜你喜欢
![[test theory] test process management](/img/d2/65865dffacf38d9a8be720868b75f0.jpg)
[test theory] test process management

Dichotomy search (C language)

PHP code audit 3 - system reload vulnerability

The bamboo shadow sweeps the steps, the dust does not move, and the moon passes through the marsh without trace -- in-depth understanding of the pointer

Rhsca day 11 operation

IPv6 comprehensive experiment

20 minutes to learn what XML is_ XML learning notes_ What is an XML file_ Basic grammatical rules_ How to parse

Rhcsa12

MongoDB数据日期显示相差8小时 原因和解决方案

Online troubleshooting
随机推荐
Safety reinforcement learning based on linear function approximation safe RL with linear function approximation translation 2
Introduction to tree and binary tree
uniapp 小于1000 按原数字显示 超过1000 数字换算成10w+ 1.3k+ 显示
DML statement of MySQL Foundation
按键精灵打怪学习-识别所在地图、跑图、进入帮派识别NPC
DDL language of MySQL database: create, modify alter, delete drop of databases and tables
Jianzhi offer 04 (implemented in C language)
Seven examples to understand the storage rules of shaped data on each bit
Reprint: summation formula of proportional series and its derivation process
What is devsecops? Definitions, processes, frameworks and best practices for 2022
Sword finger offer 05 (implemented in C language)
leetcode1-3
C language - stack
Use C to extract all text in PDF files (support.Net core)
Basic principle of servlet and application of common API methods
The bamboo shadow sweeps the steps, the dust does not move, and the moon passes through the marsh without trace -- in-depth understanding of the pointer
[Galaxy Kirin V10] [desktop] cannot add printer
【Day1】 deep-learning-basics
PHP programming language (1) - operators
When I forget how to write SQL, I


