-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NEW Add test for FolderFormFactoryExtension with a separate fixture
- Loading branch information
1 parent
a0836be
commit 4f174ff
Showing
3 changed files
with
45 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php | ||
|
||
namespace SilverStripe\Subsites\Tests\Extensions; | ||
|
||
use SilverStripe\AssetAdmin\Forms\FolderFormFactory; | ||
use SilverStripe\Assets\Folder; | ||
use SilverStripe\Dev\SapphireTest; | ||
use SilverStripe\Forms\Form; | ||
use SilverStripe\Forms\FormFactory; | ||
|
||
class FolderFormFactoryExtensionTest extends SapphireTest | ||
{ | ||
protected static $fixture_file = 'FolderFormFactoryExtensionTest.yml'; | ||
|
||
public function testSubsitesFolderDropdown() | ||
{ | ||
$this->logInWithPermission('ADMIN'); | ||
|
||
/** @var Folder $folder */ | ||
$folder = $this->objFromFixture(Folder::class, 'folder_a'); | ||
|
||
/** @var Form $folderForm */ | ||
$folderForm = FolderFormFactory::create()->getForm(null, FormFactory::DEFAULT_NAME, [ | ||
'Record' => $folder | ||
]); | ||
|
||
$source = array_values($folderForm->Fields()->fieldByName('SubsiteID')->getSource()); | ||
$result = array_values($source); | ||
|
||
$this->assertContains('Main site', $result); | ||
$this->assertContains('Subsite A', $result); | ||
$this->assertContains('Subsite B', $result); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
SilverStripe\Subsites\Model\Subsite: | ||
main: | ||
Title: Template | ||
subsite_a: | ||
Title: Subsite A | ||
subsite_b: | ||
Title: Subsite B | ||
|
||
SilverStripe\Assets\Folder: | ||
folder_a: | ||
Title: Folder A |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters