Verified Commit 6042b73e authored by Lee Rowlands's avatar Lee Rowlands
Browse files

Issue #3152320 by bircher, nedjo, tstoeckler:...

Issue #3152320 by bircher, nedjo, tstoeckler: ExtensionInstallStorage::createCollection() produces error
parent 3f7861f8
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -65,7 +65,9 @@ public function createCollection($collection) {
    return new static(
      $this->configStorage,
      $this->directory,
      $collection
      $collection,
      $this->includeProfile,
      $this->installProfile
    );
  }

+34 −0
Original line number Diff line number Diff line
<?php

namespace Drupal\Tests\Core\Config;

use Drupal\Core\Config\ExtensionInstallStorage;
use Drupal\Core\Config\InstallStorage;
use Drupal\Core\Config\MemoryStorage;
use Drupal\Core\Config\StorageInterface;
use Drupal\Tests\UnitTestCase;

/**
 * @coversDefaultClass \Drupal\Core\Config\ExtensionInstallStorage
 * @group Config
 */
class ExtensionInstallStorageTest extends UnitTestCase {

  /**
   * @covers ::createCollection
  */
  public function testCreateCollection() {
    $memory = new MemoryStorage();
    $include_profile = FALSE;
    $profile = $this->randomMachineName();
    $collectionName = $this->randomMachineName();

    // Set up the storage.
    $storage = new ExtensionInstallStorage($memory, InstallStorage::CONFIG_INSTALL_DIRECTORY, StorageInterface::DEFAULT_COLLECTION, $include_profile, $profile);
    // Create a collection.
    $collection = $storage->createCollection($collectionName);

    static::assertEquals($collectionName, $collection->getCollectionName());
  }

}