gpt4 book ai didi

python - 从 Django 2.0 中的 LiveServerTestCase 获取正确的端口号

转载 作者:太空宇宙 更新时间:2023-11-03 14:07:38 24 4
gpt4 key购买 nike

当尝试使用以下代码测试管理员登录时,我发现 self.live_server_url 返回类似 http://localhost:39346 的内容,其中每次运行的端口号都不同。

from django.test import LiveServerTestCase
from selenium import webdriver

class AdminLoginTests(LiveServerTestCase):
def setUp(self):
self.selenium = webdriver.Firefox()
super(AdminLoginTests, self).setUp()

def tearDown(self):
self.selenium.quit()
super(AdminLoginTests, self).tearDown()

def test_admin_login(self):
# ...
print('url: %s' %self.live_server_url)

如何获取正在运行的服务器的正确端口号 8000?假设我通过 python manage.py runserver 0.0.0.0:8000 运行服务器。谢谢!

最佳答案

LiveServerTestCase故意使用该端口生成一个新实例。这样您就可以测试生产环境,而无需关闭生产服务器(默认在 8000 上运行)。

但是,如果您想更改运行调试的端口,可以初始化为不同的端口号。

class TempTest(LiveServerTestCase):
def __init__(self):
super(TempTest, self).__init__()
self.port = 8910

def setUp(self)
# ....

关于python - 从 Django 2.0 中的 LiveServerTestCase 获取正确的端口号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48759105/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com