mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 02:00:51 -04:00
Fix typos in method names
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
This commit is contained in:
parent
1d0a70e416
commit
f59238444a
1 changed files with 9 additions and 9 deletions
|
|
@ -766,7 +766,7 @@ class ManagerTest extends \Test\TestCase {
|
|||
}
|
||||
|
||||
|
||||
public function testvalidateExpirationDateInPast() {
|
||||
public function testValidateExpirationDateInPast() {
|
||||
$this->expectException(\OCP\Share\Exceptions\GenericShareException::class);
|
||||
$this->expectExceptionMessage('Expiration date is in the past');
|
||||
|
||||
|
|
@ -782,7 +782,7 @@ class ManagerTest extends \Test\TestCase {
|
|||
}
|
||||
|
||||
|
||||
public function testvalidateExpirationDateEnforceButNotSet() {
|
||||
public function testValidateExpirationDateEnforceButNotSet() {
|
||||
$this->expectException(\InvalidArgumentException::class);
|
||||
$this->expectExceptionMessage('Expiration date is enforced');
|
||||
|
||||
|
|
@ -798,7 +798,7 @@ class ManagerTest extends \Test\TestCase {
|
|||
self::invokePrivate($this->manager, 'validateExpirationDate', [$share]);
|
||||
}
|
||||
|
||||
public function testvalidateExpirationDateEnforceButNotEnabledAndNotSet() {
|
||||
public function testValidateExpirationDateEnforceButNotEnabledAndNotSet() {
|
||||
$share = $this->manager->newShare();
|
||||
$share->setProviderId('foo')->setId('bar');
|
||||
|
||||
|
|
@ -812,7 +812,7 @@ class ManagerTest extends \Test\TestCase {
|
|||
$this->assertNull($share->getExpirationDate());
|
||||
}
|
||||
|
||||
public function testvalidateExpirationDateEnforceButNotSetNewShare() {
|
||||
public function testValidateExpirationDateEnforceButNotSetNewShare() {
|
||||
$share = $this->manager->newShare();
|
||||
|
||||
$this->config->method('getAppValue')
|
||||
|
|
@ -833,7 +833,7 @@ class ManagerTest extends \Test\TestCase {
|
|||
$this->assertEquals($expected, $share->getExpirationDate());
|
||||
}
|
||||
|
||||
public function testvalidateExpirationDateEnforceToFarIntoFuture() {
|
||||
public function testValidateExpirationDateEnforceTooFarIntoFuture() {
|
||||
// Expire date in the past
|
||||
$future = new \DateTime();
|
||||
$future->add(new \DateInterval('P7D'));
|
||||
|
|
@ -857,7 +857,7 @@ class ManagerTest extends \Test\TestCase {
|
|||
}
|
||||
}
|
||||
|
||||
public function testvalidateExpirationDateEnforceValid() {
|
||||
public function testValidateExpirationDateEnforceValid() {
|
||||
// Expire date in the past
|
||||
$future = new \DateTime();
|
||||
$future->add(new \DateInterval('P2D'));
|
||||
|
|
@ -886,7 +886,7 @@ class ManagerTest extends \Test\TestCase {
|
|||
$this->assertEquals($expected, $share->getExpirationDate());
|
||||
}
|
||||
|
||||
public function testvalidateExpirationDateNoDateNoDefaultNull() {
|
||||
public function testValidateExpirationDateNoDateNoDefaultNull() {
|
||||
$date = new \DateTime();
|
||||
$date->add(new \DateInterval('P5D'));
|
||||
|
||||
|
|
@ -907,7 +907,7 @@ class ManagerTest extends \Test\TestCase {
|
|||
$this->assertEquals($expected, $share->getExpirationDate());
|
||||
}
|
||||
|
||||
public function testvalidateExpirationDateNoDateNoDefault() {
|
||||
public function testValidateExpirationDateNoDateNoDefault() {
|
||||
$hookListner = $this->getMockBuilder('Dummy')->setMethods(['listener'])->getMock();
|
||||
\OCP\Util::connectHook('\OC\Share', 'verifyExpirationDate', $hookListner, 'listener');
|
||||
$hookListner->expects($this->once())->method('listener')->with($this->callback(function ($data) {
|
||||
|
|
@ -922,7 +922,7 @@ class ManagerTest extends \Test\TestCase {
|
|||
$this->assertNull($share->getExpirationDate());
|
||||
}
|
||||
|
||||
public function testvalidateExpirationDateNoDateDefault() {
|
||||
public function testValidateExpirationDateNoDateDefault() {
|
||||
$future = new \DateTime();
|
||||
$future->add(new \DateInterval('P3D'));
|
||||
$future->setTime(0,0,0);
|
||||
|
|
|
|||
Loading…
Reference in a new issue