请教一个服务器页面url请求的测试用例

比如我做好了一个页面 /index.php

我想到了用以下这些url来测试index.php页面呈现是否正常。
假如200返回正常则html源码包含有bbb字符串 表示测试通过(自动follow重定向,如果有的话)。

【url】【status code】【return code】包含字符串 bbb
/INDEX.PHP200true
/200true
/index.php/test.php200true
/index.php/test.php?param=bbb200true
/index.php/ccc.html/v/kkk/?aaaaaaa200true
/index.php%20/a/b/c/200true

类似这种还有些啥呢?

最好能有标准测试dict啥的,这样我方便写个测试脚本批量测试很多页面。
除了php还有html,静态资源什么的。

PS:我试了试b站,测试通不过。
比如正常地址是: https://www.bilibili.com/v/music
测试地址是:https://www.bilibili.com/v/mu...
应该返回404,然而明显得到了一个未处理的空白页面。
而请求:https://www.bilibili.com/v/23... 则有正确的404提示
*测试于 2022-5-15

以上是 请教一个服务器页面url请求的测试用例 的全部内容, 来源链接: utcz.com/p/944442.html

回到顶部