trait PluginTestTrait in Search API 8
Provides functionality for tests that deal with test plugins.
Hierarchy
- trait \Drupal\search_api_test\PluginTestTrait
See also
\Drupal\search_api_test\TestPluginTrait
15 files declare their use of PluginTestTrait
- AjaxTest.php in tests/
src/ FunctionalJavascript/ AjaxTest.php - ConfigOverrideIntegrationTest.php in tests/
src/ Functional/ ConfigOverrideIntegrationTest.php - ConfigOverrideKernelTest.php in tests/
src/ Kernel/ ConfigEntity/ ConfigOverrideKernelTest.php - DefaultConfigEntityInstallationTest.php in tests/
src/ Kernel/ ConfigEntity/ DefaultConfigEntityInstallationTest.php - DependencyRemovalTest.php in tests/
src/ Kernel/ ConfigEntity/ DependencyRemovalTest.php
File
- tests/
search_api_test/ src/ PluginTestTrait.php, line 10
Namespace
Drupal\search_api_testView source
trait PluginTestTrait {
/**
* Sets an exception to be thrown on calls to the given method.
*
* @param string $plugin_type
* The "short" plugin type.
* @param string $method
* The method on the plugin object which should throw an exception.
* @param bool $error
* (optional) If TRUE, further calls to the method will throw exceptions,
* otherwise they won't.
*/
protected function setError($plugin_type, $method, $error = TRUE) {
$key = "search_api_test.{$plugin_type}.exception.{$method}";
\Drupal::state()
->set($key, $error);
}
/**
* Sets the return value for a certain method on a test plugin.
*
* @param string $plugin_type
* The "short" plugin type.
* @param string $method
* The method name.
* @param mixed $value
* The value that should be returned.
*/
protected function setReturnValue($plugin_type, $method, $value) {
$key = "search_api_test.{$plugin_type}.return.{$method}";
\Drupal::state()
->set($key, $value);
}
/**
* Overrides a method for a certain plugin.
*
* @param string $plugin_type
* The "short" plugin type.
* @param string $method
* The name of the method to override.
* @param callable|null $override
* The new code of the method, or NULL to use the default.
*/
protected function setMethodOverride($plugin_type, $method, callable $override = NULL) {
$key = "search_api_test.{$plugin_type}.method.{$method}";
\Drupal::state()
->set($key, $override);
}
/**
* Retrieves the methods called on a given plugin.
*
* @param string $plugin_type
* The "short" plugin type.
* @param bool $reset
* (optional) If TRUE, also clear the list of called methods for that type.
*
* @return string[]
* The methods called on the given plugin.
*/
protected function getCalledMethods($plugin_type, $reset = TRUE) {
$key = "search_api_test.{$plugin_type}.methods_called";
$methods = \Drupal::state()
->get($key, []);
if ($reset) {
\Drupal::state()
->delete($key);
}
return $methods;
}
/**
* Retrieves the arguments of a certain method called on the given plugin.
*
* @param string $plugin_type
* The "short" plugin type.
* @param string $method
* The method name.
*
* @return array
* The arguments of the last call to the method.
*/
protected function getMethodArguments($plugin_type, $method) {
$key = "search_api_test.{$plugin_type}.method_arguments.{$method}";
return \Drupal::state()
->get($key);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PluginTestTrait:: |
protected | function | Retrieves the methods called on a given plugin. | |
PluginTestTrait:: |
protected | function | Retrieves the arguments of a certain method called on the given plugin. | |
PluginTestTrait:: |
protected | function | Sets an exception to be thrown on calls to the given method. | |
PluginTestTrait:: |
protected | function | Overrides a method for a certain plugin. | |
PluginTestTrait:: |
protected | function | Sets the return value for a certain method on a test plugin. |