aboutsummaryrefslogtreecommitdiffstats
path: root/apps/workflowengine/tests
diff options
context:
space:
mode:
Diffstat (limited to 'apps/workflowengine/tests')
-rw-r--r--apps/workflowengine/tests/Check/AbstractStringCheckTest.php5
-rw-r--r--apps/workflowengine/tests/ManagerTest.php23
2 files changed, 14 insertions, 14 deletions
diff --git a/apps/workflowengine/tests/Check/AbstractStringCheckTest.php b/apps/workflowengine/tests/Check/AbstractStringCheckTest.php
index f9fc57a5331..083876268f1 100644
--- a/apps/workflowengine/tests/Check/AbstractStringCheckTest.php
+++ b/apps/workflowengine/tests/Check/AbstractStringCheckTest.php
@@ -24,7 +24,6 @@ namespace OCA\WorkflowEngine\Tests\Check;
use OCP\IL10N;
class AbstractStringCheckTest extends \Test\TestCase {
-
protected function getCheckMock() {
$l = $this->getMockBuilder(IL10N::class)
->disableOriginalConstructor()
@@ -32,8 +31,8 @@ class AbstractStringCheckTest extends \Test\TestCase {
$l->expects($this->any())
->method('t')
->willReturnCallback(function ($string, $args) {
- return sprintf($string, $args);
- });
+ return sprintf($string, $args);
+ });
$check = $this->getMockBuilder('OCA\WorkflowEngine\Check\AbstractStringCheck')
->setConstructorArgs([
diff --git a/apps/workflowengine/tests/ManagerTest.php b/apps/workflowengine/tests/ManagerTest.php
index 191e7bfec84..512d5dc1f61 100644
--- a/apps/workflowengine/tests/ManagerTest.php
+++ b/apps/workflowengine/tests/ManagerTest.php
@@ -126,7 +126,7 @@ class ManagerTest extends TestCase {
public function clearTables() {
$query = $this->db->getQueryBuilder();
- foreach(['flow_checks', 'flow_operations', 'flow_operations_scope'] as $table) {
+ foreach (['flow_checks', 'flow_operations', 'flow_operations_scope'] as $table) {
$query->delete($table)
->execute();
}
@@ -274,7 +274,6 @@ class ManagerTest extends TestCase {
array_walk($userOps, function ($op) {
$this->assertTrue($op['class'] === 'OCA\WFE\TestOp');
});
-
}
public function testUpdateOperation() {
@@ -285,9 +284,9 @@ class ManagerTest extends TestCase {
$this->container->expects($this->any())
->method('query')
->willReturnCallback(function ($class) {
- if(substr($class, -2) === 'Op') {
+ if (substr($class, -2) === 'Op') {
return $this->createMock(IOperation::class);
- } elseif($class === File::class) {
+ } elseif ($class === File::class) {
return $this->getMockBuilder(File::class)
->setConstructorArgs([
$this->l,
@@ -331,7 +330,7 @@ class ManagerTest extends TestCase {
$this->assertSame('Test02a', $op['name']);
$this->assertSame('barfoo', $op['operation']);
- foreach([[$adminScope, $opId2], [$userScope, $opId1]] as $run) {
+ foreach ([[$adminScope, $opId2], [$userScope, $opId1]] as $run) {
try {
/** @noinspection PhpUnhandledExceptionInspection */
$this->manager->updateOperation($run[1], 'Evil', [$check2], 'hackx0r', $run[0], $entity, []);
@@ -361,7 +360,7 @@ class ManagerTest extends TestCase {
);
$this->invokePrivate($this->manager, 'addScope', [$opId2, $userScope]);
- foreach([[$adminScope, $opId2], [$userScope, $opId1]] as $run) {
+ foreach ([[$adminScope, $opId2], [$userScope, $opId1]] as $run) {
try {
/** @noinspection PhpUnhandledExceptionInspection */
$this->manager->deleteOperation($run[1], $run[0]);
@@ -376,11 +375,11 @@ class ManagerTest extends TestCase {
/** @noinspection PhpUnhandledExceptionInspection */
$this->manager->deleteOperation($opId2, $userScope);
- foreach([$opId1, $opId2] as $opId) {
+ foreach ([$opId1, $opId2] as $opId) {
try {
$this->invokePrivate($this->manager, 'getOperation', [$opId]);
$this->assertTrue(false, 'UnexpectedValueException not thrown');
- } catch(\Exception $e) {
+ } catch (\Exception $e) {
$this->assertInstanceOf(\UnexpectedValueException::class, $e);
}
}
@@ -423,13 +422,15 @@ class ManagerTest extends TestCase {
$this->assertCount(2, $entities);
$entityTypeCounts = array_reduce($entities, function (array $carry, IEntity $entity) {
- if($entity instanceof File) $carry[0]++;
- elseif($entity instanceof IEntity) $carry[1]++;
+ if ($entity instanceof File) {
+ $carry[0]++;
+ } elseif ($entity instanceof IEntity) {
+ $carry[1]++;
+ }
return $carry;
}, [0, 0]);
$this->assertSame(1, $entityTypeCounts[0]);
$this->assertSame(1, $entityTypeCounts[1]);
}
-
}