mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-14 22:30:27 +08:00
53 lines
1.1 KiB
PHP
53 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* @link https://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license https://www.yiiframework.com/license/
|
|
*/
|
|
|
|
namespace yiiunit\framework\mutex;
|
|
|
|
use yii\base\InvalidConfigException;
|
|
use yii\mutex\FileMutex;
|
|
use yiiunit\TestCase;
|
|
|
|
/**
|
|
* Class FileMutexTest.
|
|
*
|
|
* @group mutex
|
|
*/
|
|
class FileMutexTest extends TestCase
|
|
{
|
|
use MutexTestTrait;
|
|
|
|
/**
|
|
* @return FileMutex
|
|
* @throws InvalidConfigException
|
|
*/
|
|
protected function createMutex()
|
|
{
|
|
return \Yii::createObject([
|
|
'class' => FileMutex::class,
|
|
'mutexPath' => '@yiiunit/runtime/mutex',
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider mutexDataProvider()
|
|
*
|
|
* @param string $mutexName
|
|
* @throws InvalidConfigException
|
|
*/
|
|
public function testDeleteLockFile($mutexName): void
|
|
{
|
|
$mutex = $this->createMutex();
|
|
$fileName = $mutex->mutexPath . '/' . md5($mutexName) . '.lock';
|
|
|
|
$mutex->acquire($mutexName);
|
|
$this->assertFileExists($fileName);
|
|
|
|
$mutex->release($mutexName);
|
|
$this->assertFileDoesNotExist($fileName);
|
|
}
|
|
}
|