Grails test-app -https

时间:2014-01-29 20:42:03

标签: grails testing cucumber geb

我刚刚将我的应用程序升级为grails 2.3.4,并且我正在实施Cucumber和Geb测试,以便全面覆盖。

问题是应该只应该监听安全连接(https)的应用程序的一个要求,所以我在config groovy中添加了

grails.plugin.springsecurity.auth.forceHttps = "true"
grails.plugin.springsecurity.secureChannel.definition = [
    '/**':'REQUIRES_SECURE_CHANNEL'
]

现在,问题是当我运行grails test-app -https时,没有使用param -https并且只在非安全通道中启动应用程序。

在https中运行test-app的任何想法?

提前致谢

1 个答案:

答案 0 :(得分:0)

似乎是Grails的错误。我已提交pull request并对此问题添加了评论。