当前位置:  开发笔记 > 编程语言 > 正文

获取rails应用程序中URLS的完整列表

如何解决《获取rails应用程序中URLS的完整列表》经验,为你挑选了1个好方法。

如何获得我的rails应用程序可以生成的所有URL的完整列表?

我不希望我获得的路由形成rake路由,而是希望获得与我的应用程序中所有动态生成的页面相对应的actul URL ...

这甚至可能吗?

(背景:我这样做是因为我想要一个完整的URL列表,用于我想做的一些负载测试,它必须覆盖整个应用程序的广度)



1> kch..:

我能够使用以下命令生成有用的输出:

$ wget --spider -r -nv -nd -np http://localhost:3209/ 2>&1 | ack -o '(?<=URL:)\S+'
http://localhost:3209/
http://localhost:3209/robots.txt
http://localhost:3209/agenda/2008/08
http://localhost:3209/agenda/2008/10
http://localhost:3209/agenda/2008/09/01
http://localhost:3209/agenda/2008/09/02
http://localhost:3209/agenda/2008/09/03
^C

wget参数的快速参考:

# --spider                  don't download anything.
# -r,  --recursive          specify recursive download.
# -nv, --no-verbose         turn off verboseness, without being quiet.
# -nd, --no-directories     don't create directories.
# -np, --no-parent          don't ascend to the parent directory.

关于 ack

ack就像grep使用正则perl表达式,它更完整/更强大.

-o告诉ack我只输出匹配的子字符串,我使用的模式查找前面的任何非空格'URL:'

推荐阅读
ERIK又
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有