Software Testing软件测试小白学习记录(&1.知识框架梳理)

测试员的工作流程:
1 做需求分析
2 编写测试用例
3 评选测试用例
4 搭建测试环境
5 等待开发完毕后平行测试
6 部署测试包
7 冒烟测试
8 执行测试用例
9 Bug跟踪处理
10 N轮测试
11 版本上线
12 用户使用
什么是软件测试:为了发现软件的问题而执行操作软件的过程


根据大神的知识框架,我做了以下的资源整理

一、Linux知识
1)XSHELL6/XFTP6: https://www.netsarang.com/en/free-for-home-school/
Free for non-commercial use 非商业用途免费

2)Vi/vim编辑器:
https://catswhocode.com/vim-commands/
https://zhuanlan.zhihu.com/p/51440836

3)Linux 软件安装:

1.Ubuntu软件安装:
https://askubuntu.com/questions/307280/how-do-i-install-applications-in-ubuntu
安装多种途径
1 Ubuntu Software Center
2 Synaptic Package Manager
3 Installing via Terminal
4 Manual download .deb
5 .tar.gz extraction

常用安装命令:sudo apt-get install filename
yum官方文档:http://yum.baseurl.org/
Linux Docker官方文档:
https://docs.docker.com/install/linux/docker-ce/ubuntu/

镜像内容可以是系统、光盘、软件,网站,甚至服务器。一般说的镜像是指给系统作个ghost镜像。 这样可以在很短时间,很方便的还原出一个完整的系统来

二、Shell脚本知识

GNU Bash (Linux Shell的名称)官方文档:
https://www.gnu.org/software/emacs/manual/html_node/tramp/Concept-Index.html

1)Shell 基础:
https://www.zhihu.com/question/21281304

2)Shell 逻辑控制
见Bash Reference Manual pdf文档

3)Shell 函数
Bash Reference Manual 3.3 Shell Functions

4)Windows 脚本&批处理
使用PowerShell:Microsoft官方文档
https://docs.microsoft.com/en-us/powershell/

三、互联网程序原理
1)Web前端开发基础
HTML (超文本标记语言)& CSS (层叠样式表)
1.W3C标准:
https://www.w3.org/html/
2.HTML 5.2官方文档:
https://www.w3.org/TR/html52/

2)Web前端开发脚本:JavaScript
1.EMCAScript文档:
http://www.ecma-international.org/ecma-262/5.1/
2.MNC(Mozilla developer network)的JavaScript文档:
https://developer.mozilla.org/en-US/docs/Web/JavaScript

3)开发者调试工具测试应用
F12键

4)互联网程序网络架构
1.互联网程序
2.互联网通信原理
3.TCP\UCP\HTTP协议

5)HTTP协议数据结构分析
数据解析(Parse 不是统计上的Data Analysis)

  1. Request, Response
  2. Header(头字段)
  3. REST(Representational State Transfer)
  4. 常见Body数据形式

6)Cookie与Session机制
测试Cookie与Session

四、Mysql数据库

1)Mysql数据库测试应用
1.Mysql:https://dev.mysql.com/doc/
2.Navicat:https://www.navicat.com/en/support/online-manual

2)Mysql高级查询(Advanced Queries)
见Mysql官方文档

3)Mysql自定义函数(User-defined functions)
https://dev.mysql.com/doc/refman/8.0/en/adding-udf.html

4)Mysql存储过程SP(Save-point)
https://dev.mysql.com/doc/refman/8.0/en/savepoint.html

5)Mysql事务与编程(Transaction)
事务的4个特征ACID
Atomicity原子性
Consistency一致性
Isolation隔离性
Durability持久性

五、抓包工具(Packet Capture)

1)抓包原理与方式

2)抓包工具选择

3)Fiddler基础功能
Fiddler官方文档:
https://docs.telerik.com/fiddler/Configure-Fiddler/Tasks/ConfigureFiddler

  1. 数据过滤(Filter):
    https://docs.telerik.com/fiddler/knowledgebase/filters
  2. Find Sessions
  3. Web,非Web(non-web),手机(Mobile),和HTTP环境抓包

4)Fiddler高级功能
1.接口测试(API testing)
2.断点(Break-point)
3.脚本:
https://docs.telerik.com/fiddler/knowledgebase/fiddlerscript/modifyrequestorresponse
4.模拟数据(使用Auto-responder)
Autoresponder官方文档:
https://docs.telerik.com/fiddler/knowledgebase/autoresponder
参考:https://blog.csdn.net/lintax/article/details/68969502
5.自定义菜单栏:
https://docs.telerik.com/fiddler/knowledgebase/fiddlerscript/customizemenus

5)Wireshark
过滤和分析:
https://www.wireshark.org/docs/man-pages/wireshark-filter.html

6)Sniffer
7)Tcpdump
apt-get install tcpdump

六、接口测试工具

1)Jmeter接口测试入门
Jmeter组件(Component):
官方文档:
https://jmeter.apache.org/usermanual/component_reference.html
1.录制脚本(Script Recorder):
https://jmeter.apache.org/usermanual/jmeter_proxy_step_by_step.html
2.线程(Thread):
&18.9
3.作用域(Scope)
4.断言(Assertions):
&18.5

2)Jmeter接口测试进阶使用
1.逻辑控制(logic controllers)
见Jmeter官方文档&18.2
2.前置处理器(Pre Processors)
&18.7
3.后置处理器(Post Processors)
&18.8
4.监视器(Listener)
&18.3
5.结果树(Results Tree)
&18.3
6.参数化
&20.Functions and Variables
7.正则表达式(Regular Expression):
&18.8
8.事务(Session)
9.检查点(Checkpoint)
10.动态数据项目

3)Jmeter接口测试高级功能
1.脚本思考时间(Think times)
2.随机时间(Random Timer)
&18.6
3.线程启动间隔(Ramp-up Period)
4.并发集合点(使用Synchronizing Timer)
5.联机远程调用(见&13.Remote Testing [远程测试])
https://jmeter.apache.org/usermanual/remote-test.html
6.Webservice(Web服务)
Jmeter SOAP(简单S对象O访问A协议P) Webservice官方文档:
https://jmeter.apache.org/usermanual/build-ws-test-plan.html
7.Websocket协议
8.Jdbc
9.命令行调用


本文框架来源:https://zhuanlan.zhihu.com/p/34897270

你可能感兴趣的:(资源整理)