You are here

class YamlFormHelperTest in YAML Form 8

Tests form helper utility.

@group YamlFormUnit

@coversDefaultClass \Drupal\yamlform\Utility\YamlFormHelper

Hierarchy

Expanded class hierarchy of YamlFormHelperTest

File

tests/src/Unit/YamlFormHelperTest.php, line 15

Namespace

Drupal\Tests\yamlform\Unit
View source
class YamlFormHelperTest extends UnitTestCase {

  /**
   * Tests YamlFormHelper with YamlFormHelper::cleanupFormStateValues().
   *
   * @param array $values
   *   The array to run through YamlFormHelper::cleanupFormStateValues().
   * @param array $keys
   *   (optional) An array of custom keys to be removed.
   * @param string $expected
   *   The expected result from calling the function.
   *
   * @see YamlFormHelper::cleanupFormStateValues()
   *
   * @dataProvider providerCleanupFormStateValues
   */
  public function testCleanupFormStateValues(array $values, array $keys, $expected) {
    $result = YamlFormHelper::cleanupFormStateValues($values, $keys);
    $this
      ->assertEquals($expected, $result);
  }

  /**
   * Data provider for testCleanupFormStateValues().
   *
   * @see testCleanupFormStateValues()
   */
  public function providerCleanupFormStateValues() {
    $tests[] = [
      [
        'key' => 'value',
      ],
      [],
      [
        'key' => 'value',
      ],
    ];
    $tests[] = [
      [
        'key' => 'value',
        'form_token' => 'ignored',
      ],
      [],
      [
        'key' => 'value',
      ],
    ];
    $tests[] = [
      [
        'key' => 'value',
        'form_token' => 'ignored',
      ],
      [
        'key',
      ],
      [],
    ];
    return $tests;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName Deprecated protected function Mocks a block with a block plugin. 1
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UnitTestCase::setUp protected function 340
YamlFormHelperTest::providerCleanupFormStateValues public function Data provider for testCleanupFormStateValues().
YamlFormHelperTest::testCleanupFormStateValues public function Tests YamlFormHelper with YamlFormHelper::cleanupFormStateValues().