是否可以以“本地系统”用户身份运行测试?

发布于 2024-10-15 15:41:12 字数 118 浏览 7 评论 0原文

我正在编写一个集成测试,需要在本地系统安全上下文中运行该方法才能实现所需的行为。我还无法实现这一点。我应该怎么办?

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

帅哥哥的热头脑 2024-10-22 15:41:12

我看到两个选择。

您可以编写 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.

他不在意 2024-10-22 15:41:12

这篇文章可以帮助您:作者是谈论将 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...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文