mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-30 16:38:21 +01:00
19b2c3d3d0
Summary: Currently, we have a configuration stack for unit tests, but they're built in to `PhabricatorEnv`. Pull them out and formalize them, so we can add more configuration sources (e.g., database). Test Plan: Ran unit tests, web requests, scripts. This code had fairly good existing test coverage. Reviewers: btrahan, vrana Reviewed By: btrahan CC: aran Maniphest Tasks: T2223, T2221 Differential Revision: https://secure.phabricator.com/D4284
59 lines
1.2 KiB
PHP
59 lines
1.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Scope guard to hold a temporary environment. See @{class:PhabricatorEnv} for
|
|
* instructions on use.
|
|
*
|
|
* @task internal Internals
|
|
* @task override Overriding Environment Configuration
|
|
*/
|
|
final class PhabricatorScopedEnv {
|
|
|
|
private $key;
|
|
private $isPopped = false;
|
|
|
|
/* -( Overriding Environment Configuration )------------------------------- */
|
|
|
|
/**
|
|
* Override a configuration key in this scope, setting it to a new value.
|
|
*
|
|
* @param string Key to override.
|
|
* @param wild New value.
|
|
* @return this
|
|
*
|
|
* @task override
|
|
*/
|
|
public function overrideEnvConfig($key, $value) {
|
|
PhabricatorEnv::overrideTestEnvConfig(
|
|
$this->key,
|
|
$key,
|
|
$value);
|
|
return $this;
|
|
}
|
|
|
|
|
|
/* -( Internals )---------------------------------------------------------- */
|
|
|
|
|
|
/**
|
|
* @task internal
|
|
*/
|
|
public function __construct($stack_key) {
|
|
$this->key = $stack_key;
|
|
}
|
|
|
|
|
|
/**
|
|
* Release the scoped environment.
|
|
*
|
|
* @return void
|
|
* @task internal
|
|
*/
|
|
public function __destruct() {
|
|
if (!$this->isPopped) {
|
|
PhabricatorEnv::popTestEnvironment($this->key);
|
|
$this->isPopped = true;
|
|
}
|
|
}
|
|
|
|
}
|