You are here

class EntityUpdateTestHelper in Entity Update 2.0.x

Same name and namespace in other branches
  1. 8 modules/entity_update_tests/src/EntityUpdateTestHelper.php \Drupal\entity_update_tests\EntityUpdateTestHelper

EntityUpdateTest Helper functions.

Hierarchy

Expanded class hierarchy of EntityUpdateTestHelper

6 files declare their use of EntityUpdateTestHelper
EntityUpdateFunctionsTest.php in tests/src/Functional/EntityUpdateFunctionsTest.php
EntityUpdateProgUpTest.php in tests/src/Functional/EntityUpdateProgUpTest.php
EntityUpdateTestsContentEntity.php in tests/modules/entity_update_tests/src/Entity/EntityUpdateTestsContentEntity.php
EntityUpdateTestsContentEntity02.php in tests/modules/entity_update_tests/src/Entity/EntityUpdateTestsContentEntity02.php
EntityUpdateTestSettings.php in tests/modules/entity_update_tests/src/Form/EntityUpdateTestSettings.php

... See full list

File

tests/modules/entity_update_tests/src/EntityUpdateTestHelper.php, line 10

Namespace

Drupal\entity_update_tests
View source
class EntityUpdateTestHelper {

  /**
   * Get Configuration Name.
   */
  public static function getConfigName() {
    return 'entity_update_tests.settings';
  }

  /**
   * Get Configuration Object.
   *
   * @param bool $editable
   *   Readonly or Editable.
   *
   * @return \Drupal\Core\Config\Config|\Drupal\Core\Config\ImmutableConfig
   *   The configuration object.
   */
  public static function getConfig($editable = FALSE) {
    if ($editable) {
      $config = \Drupal::configFactory()
        ->getEditable(static::getConfigName());
    }
    else {
      $config = \Drupal::config(static::getConfigName());
    }
    return $config;
  }

  /**
   * Enable a configurable field.
   */
  public static function fieldEnable($name, $enable = TRUE) {
    $config = self::getConfig(TRUE);
    $config
      ->set("fields." . $name, $enable);
    $config
      ->save();
  }

  /**
   * Disable a configurable field.
   */
  public static function fieldDisable($name) {
    return self::fieldEnable($name, FALSE);
  }

  /**
   * Set Field type.
   */
  public static function fieldSetType($name, $type = 'string') {
    $config = self::getConfig(TRUE);
    $config
      ->set("fields." . $name, $type);
    $config
      ->save();
  }

  /**
   * Get a configurable field status or value.
   */
  public static function fieldStatus($name) {
    return self::getConfig()
      ->get("fields." . $name);
  }

  /**
   * Check a database table fields list and match with privided list.
   *
   * @return bool|array
   *   TRUE if has correct fields list. FALSE if exception. Array if different.
   */
  public static function checkFieldList($table, array $fields) {

    // Combine fields.
    $fields_must = array_combine($fields, $fields);

    // Current database fields list.
    $fields_curr = [];

    // Get Database connection.
    $con = Database::getConnection();

    // Add table prefix.
    if ($table_prefix = $con
      ->tablePrefix()) {
      $table = $table_prefix . $table;
    }
    try {
      $fields_list = $con
        ->query("DESCRIBE `{$table}`")
        ->fetchAll();
      foreach ($fields_list as $field) {
        $fields_curr[$field->Field] = $field->Field;
      }

      // Check differents.
      $array_diff = array_diff($fields_must, $fields_curr);
      if (empty($array_diff)) {
        $array_diff = array_diff($fields_curr, $fields_must);

        // Tables matched.
        if (empty($array_diff)) {
          return TRUE;
        }
      }

      // Two tables are different.
      return $array_diff;
    } catch (\Exception $ex) {
      return FALSE;
    }
    return FALSE;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
EntityUpdateTestHelper::checkFieldList public static function Check a database table fields list and match with privided list.
EntityUpdateTestHelper::fieldDisable public static function Disable a configurable field.
EntityUpdateTestHelper::fieldEnable public static function Enable a configurable field.
EntityUpdateTestHelper::fieldSetType public static function Set Field type.
EntityUpdateTestHelper::fieldStatus public static function Get a configurable field status or value.
EntityUpdateTestHelper::getConfig public static function Get Configuration Object.
EntityUpdateTestHelper::getConfigName public static function Get Configuration Name.