使用特定IP的Django REST客户端测试

时间:2018-01-24 05:10:25

标签: python django django-rest-framework pytest-django

enter image description hereMETA读取地址。 所以我必须创建存储ip-address / subnet的Whitelist模型。没什么大不了的,我已经在我的数据库中拥有了所有302个子网。

from rest_framework import permissions

class BlacklistPermission(permissions.BasePermission):
    """
    Global permission check for blacklisted IPs.
    """

    def has_permission(self, request, view):
        ip_addr = request.META['REMOTE_ADDR']
        blacklisted = Blacklist.objects.filter(ip_addr=ip_addr).exists()
        return not blacklisted

问题:
我想从其他IP地址而不是127.0.0.1测试白名单 我怎么能在pytest

中做到这一点

2 个答案:

答案 0 :(得分:2)

感谢@rpkilby
https://github.com/encode/django-rest-framework/issues/5775#issuecomment-360734150

因为APICLient继承自同一来源。设置标题非常简单。

client = APIClient(REMOTE_ADDR='x.x.x.x')

答案 1 :(得分:0)

编写集成测试:使用requests或等效库来调用您的API。

如果您打算测试一次,只需将应用程序部署到另一台主机并运行测试。

如果您想要自动化测试,请考虑使用CI / CD管道。将您的API放在容器中,将测试代码放在另一个容器中,然后在需要时触发这些测试。