我应该如何存储单元测试的数据库连接信息?

发布于 2024-11-17 00:50:11 字数 137 浏览 0 评论 0原文

我有一系列需要连接到数据库的 PHPUnit 测试。我想避免将特定的数据库/用户名/密码硬编码到每个单元测试中。他们如何分享这些信息?

现在,我将它们设置为 PHPUnit 引导文件中 $GLOBALS 数组中的键/值对。他们应该在其他地方吗?

I have a series of PHPUnit tests that will need to connect to a database. I would like to avoid hardcoding a specific database/username/password into each unit test. How can they share this information?

Right now I am setting these as key/value pairs in the $GLOBALS array in my PHPUnit bootstrap file. Should they be somewhere else?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

菊凝晚露 2024-11-24 00:50:11

您可以将它们放在 %ENV 中

export DB_PASS=foo
export DB_HOST=127.0.0.1
export DB_USER=bar

,也可以在存储库之外拥有一个配置文件。

you can put them in the %ENV

export DB_PASS=foo
export DB_HOST=127.0.0.1
export DB_USER=bar

or you can have a config file outside of your repository.

清风疏影 2024-11-24 00:50:11

$GLOBALS 相当脏。您可以使用常量或从将连接数据作为属性的类派生单元测试。

$GLOBALS is quite dirty. You could use constants or derive the unit tests from a class that has the connection data as properties.

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