我有使用nmap扫描网络中设备的视图功能。
views.py
import nmap
def home(request):
y=nmap.PortScanner()
data = y.scan(hosts="192.168.1.*", arguments="-sP")
context[status]=data['status']['addresses']['ipv4']
return render_template('home.html',context)
现在我想对no devices
,1 device connected
和2 or more device connected
进行测试。我需要覆盖tests.py中的数据。
我在想它可以使用mock函数完成。我可以在tests.py中覆盖它,但是当模拟响应时,它不会在视图函数中被覆盖。
我如何测试这个nmap函数?
答案 0 :(得分:1)
在您的情况下,猴子修补将是一个很好的解决方案。
另请参阅this关于猴子补丁的问题
这是一个可能的实现,当然你需要将它集成到你的测试框架中。
import your_module
class MockPortScanner(object):
# by setting this class member
# before a test case
# you can determine how many result
# should be return from your view
count = 0
def scan(self, *args, **kwargs):
return {
'status': {
'addresses': {
'ipv4': [i for i in range(self.count)]
}
}
}
def your_test_method():
MockPortScanner.count = 5
request = None # create a Mock Request if you need
# here is the mocking
your_module.nmap.PortScanner = MockPortScanner
# call your view as a regular function
rv = your_module.home(request)
# check the response
更新
要将原始的PortScanner稍后放在测试的其他部分中,请在导入nmap后将其保存在测试中。
import nmap
OriginalPortScanner = nmap.PortScanner
然后,您可以选择PortScanner(原始或模拟),如:
views.nmap.PortScanner = OriginalPortScanner