-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7bceaa3
commit 9da9890
Showing
2 changed files
with
116 additions
and
0 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,58 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
/** | ||
* Pimcore | ||
* | ||
* This source file is available under two different licenses: | ||
* - GNU General Public License version 3 (GPLv3) | ||
* - Pimcore Commercial License (PCL) | ||
* Full copyright and license information is available in | ||
* LICENSE.md which is distributed with this source code. | ||
* | ||
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org) | ||
* @license http://www.pimcore.org/license GPLv3 and PCL | ||
*/ | ||
|
||
|
||
namespace Pimcore\Bundle\StudioBackendBundle\Tests\Unit\User\Hydrator; | ||
|
||
use Codeception\Test\Unit; | ||
use Pimcore\Bundle\StudioBackendBundle\User\Hydrator\KeyBindingHydrator; | ||
|
||
/** | ||
* @internal | ||
*/ | ||
final class KeyBindingHydratorTest extends Unit | ||
{ | ||
public function testHydrate(): void | ||
{ | ||
$hydrator = new KeyBindingHydrator(); | ||
|
||
$data = [ | ||
[ | ||
'key' => 65, | ||
'action' => 'test', | ||
'ctrl' => true, | ||
'alt' => false, | ||
'shift' => true, | ||
], | ||
[ | ||
'key' => 66, | ||
'action' => 'test2', | ||
'ctrl' => false, | ||
'alt' => true, | ||
'shift' => false, | ||
], | ||
]; | ||
|
||
$keyBindings = $hydrator->hydrate($data); | ||
|
||
$this->assertCount(2, $keyBindings); | ||
$this->assertSame(65, $keyBindings[0]->getKey()); | ||
$this->assertSame('test', $keyBindings[0]->getAction()); | ||
$this->assertTrue($keyBindings[0]->getCtrl()); | ||
$this->assertFalse($keyBindings[0]->getAlt()); | ||
$this->assertTrue($keyBindings[0]->getShift()); | ||
} | ||
} |
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,58 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
/** | ||
* Pimcore | ||
* | ||
* This source file is available under two different licenses: | ||
* - GNU General Public License version 3 (GPLv3) | ||
* - Pimcore Commercial License (PCL) | ||
* Full copyright and license information is available in | ||
* LICENSE.md which is distributed with this source code. | ||
* | ||
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org) | ||
* @license http://www.pimcore.org/license GPLv3 and PCL | ||
*/ | ||
|
||
namespace Pimcore\Bundle\StudioBackendBundle\Tests\Unit\User\Service; | ||
|
||
use Codeception\Test\Unit; | ||
use Pimcore\Bundle\StudioBackendBundle\User\Hydrator\KeyBindingHydrator; | ||
use Pimcore\Bundle\StudioBackendBundle\User\Service\KeyBindingService; | ||
|
||
/** | ||
* @internal | ||
*/ | ||
final class KeyBindingServiceTest extends Unit | ||
{ | ||
public function testGetDefaultKeyBindings(): void | ||
{ | ||
$data = [ | ||
[ | ||
'key' => 'L', | ||
'action' => 'test', | ||
'ctrl' => true, | ||
'alt' => false, | ||
'shift' => true, | ||
], | ||
[ | ||
'key' => 'P', | ||
'action' => 'test2', | ||
'ctrl' => false, | ||
'alt' => true, | ||
'shift' => false, | ||
], | ||
]; | ||
|
||
$keyBindingHydrator = new KeyBindingHydrator(); | ||
$keyBindingService = new KeyBindingService($data, $keyBindingHydrator); | ||
|
||
$keyBindings = $keyBindingService->getDefaultKeyBindings(); | ||
$this->assertCount(2, $keyBindings); | ||
$this->assertSame(76, $keyBindings[0]->getKey()); | ||
$this->assertSame('test', $keyBindings[0]->getAction()); | ||
$this->assertTrue($keyBindings[0]->getCtrl()); | ||
$this->assertFalse($keyBindings[0]->getAlt()); | ||
$this->assertTrue($keyBindings[0]->getShift()); | ||
} | ||
} |