Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要生成一系列单元测试以确保控制器只能使用 HTTPS,然后为 HTTP 生成一些负面测试。
但是您如何测试控制器以确保它仅适用于 HTTPS?
您可以编写一个测试,使其运行尝试使用 https 协议,以及一些使用其他协议(http、ftp ...)的测试。检查 https 作品和其他作品是否被拒绝。如果可以,请提供更多详细信息。