是否可以以“本地系统”用户身份运行测试?
我正在编写一个集成测试,需要在本地系统安全上下文中运行该方法才能实现所需的行为。我还无法实现这一点。我应该怎么办?
我正在使用 C#、VS 2010、MsTest,目标项目是 Windows 服务应用程序。
I'm writing an integration test that requires the method to be run in the Local System
security context to achieve the desired behavior. I couldn't achieve this yet. What should I do?
I'm using C#, VS 2010, MsTest and the target project is a Windows Service app.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我看到两个选择。
您可以编写 Windows 服务。
这并不像听起来那么繁重。您可以使用 WCF 等来监听命令。如果将该服务的权限设置为本地系统,则可以让该服务运行单元测试。
您可以使用计划任务。
如果您希望定期运行测试,则可以使用计划任务以本地系统权限计划任务。
I see two options.
You can write a Windows service.
This is not as much work as it sounds. You can have that listen for commands, using e.g. WCF. If you set the privilege of that service to Local System you can have that service run your unit tests.
You can use scheduled tasks.
If you want your tests to run periodically, you can use scheduled tasks to schedule the task with the Local System privileges.
这篇文章可以帮助您:作者是谈论将 cmd 作为本地系统运行,但也应该与 nunit.exe 一起使用,所以......
This post could help you: the author is talking about running cmd as local system, but shoud work with nunit.exe as well so...