class CdfExpectations in Acquia Content Hub 8.2
Expectations for cdf fixtures.
@package Drupal\Tests\acquia_contenthub\Kernel\Stubs
Hierarchy
- class \Drupal\Tests\acquia_contenthub\Kernel\Stubs\CdfExpectations
Expanded class hierarchy of CdfExpectations
271 files declare their use of CdfExpectations
- block_config_translations.php in tests/
fixtures/ import/ drupal-9.2/ expectations/ block/ block_config_translations.php - Expectation for block configuration entity translation scenario.
- block_config_translations.php in tests/
fixtures/ import/ drupal-9.0/ expectations/ block/ block_config_translations.php - Expectation for block configuration entity translation scenario.
- block_config_translations.php in tests/
fixtures/ import/ drupal-8.9/ expectations/ block/ block_config_translations.php - Expectation for block configuration entity translation scenario.
- block_config_translations.php in tests/
fixtures/ import/ drupal-9.1/ expectations/ block/ block_config_translations.php - Expectation for block configuration entity translation scenario.
- block_config_translations.php in tests/
fixtures/ import/ drupal-8.8/ expectations/ block/ block_config_translations.php - Expectation for block configuration entity translation scenario.
File
- tests/
src/ Kernel/ Stubs/ CdfExpectations.php, line 10
Namespace
Drupal\Tests\acquia_contenthub\Kernel\StubsView source
class CdfExpectations {
protected $data = [];
protected $exclusions = [];
/**
* Language codes (expected translation variants).
*
* @var string[]
*/
protected $langcodes = [];
/**
* Alternative entity loader.
*
* The loader can be used as a fallback to load an entity.
*
* @var callable
*/
protected $entityLoader;
/**
* CdfExpectations constructor.
*
* @param array $data
* Data.
* @param array $exclusions
* The list of exclusions (fields).
*/
public function __construct(array $data, array $exclusions = []) {
$this->data = $data;
$this->exclusions = $exclusions;
}
/**
* Return field value.
*
* @param string $field_name
* Field name.
* @param string $langcode
* Language code.
*
* @return mixed|array
* Field value.
*/
public function getFieldValue(string $field_name, string $langcode = NULL) {
if (is_null($langcode) && isset($this->data[$field_name])) {
return $this->data[$field_name];
}
if (isset($this->data[$field_name][$langcode])) {
return $this->data[$field_name][$langcode];
}
return [];
}
/**
* Checks whether the field is excluded.
*
* @param string $field_name
* The name of the field to exclude.
*
* @return bool
* The status of the field:
* - TRUE - if the field is excluded;
* - FALSE - otherwise.
*/
public function isExcludedField($field_name) : bool {
return in_array($field_name, $this->exclusions);
}
/**
* Sets expected supported languages.
*
* @param array $langcodes
* The list of language codes.
*/
public function setLangcodes(array $langcodes) : void {
$this->langcodes = $langcodes;
}
/**
* Returns the list of expected language codes.
*
* @return string[]
* The list of language codes.
*/
public function getLangcodes() : array {
return $this->langcodes;
}
/**
* Returns the list of expected field names.
*
* @return string[]
* The list of field names.
*/
public function getFieldNames() : array {
return array_keys($this->data);
}
/**
* Sets alternative entity loader (fallback function).
*
* @param callable $entity_loader
* Alternative entity loader.
*/
public function setEntityLoader(callable $entity_loader) : void {
$this->entityLoader = $entity_loader;
}
/**
* Returns alternative entity loader.
*
* @return callable
* Alternative entity loader.
*/
public function getEntityLoader() : ?callable {
return $this->entityLoader;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CdfExpectations:: |
protected | property | ||
CdfExpectations:: |
protected | property | Alternative entity loader. | |
CdfExpectations:: |
protected | property | ||
CdfExpectations:: |
protected | property | Language codes (expected translation variants). | |
CdfExpectations:: |
public | function | Returns alternative entity loader. | |
CdfExpectations:: |
public | function | Returns the list of expected field names. | |
CdfExpectations:: |
public | function | Return field value. | |
CdfExpectations:: |
public | function | Returns the list of expected language codes. | |
CdfExpectations:: |
public | function | Checks whether the field is excluded. | |
CdfExpectations:: |
public | function | Sets alternative entity loader (fallback function). | |
CdfExpectations:: |
public | function | Sets expected supported languages. | |
CdfExpectations:: |
public | function | CdfExpectations constructor. |