Skip to content

Commit c55d38a

Browse files
authored
Merge pull request #68 from MuhammadJaziraly/add-op-index
Add operation index to `PathException` for detailed error reporting
2 parents 17bfc66 + 27f5d03 commit c55d38a

File tree

3 files changed

+31
-7
lines changed

3 files changed

+31
-7
lines changed

src/JsonPatch.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ public function jsonSerialize()
151151
public function apply(&$original, $stopOnError = true)
152152
{
153153
$errors = array();
154-
foreach ($this->operations as $operation) {
154+
foreach ($this->operations as $opIndex => $operation) {
155155
try {
156156
// track the current pointer field so we can use it for a potential PathException
157157
$pointerField = 'path';
@@ -199,6 +199,7 @@ public function apply(&$original, $stopOnError = true)
199199
$pointerField,
200200
$jsonPointerException->getCode()
201201
);
202+
$pathException->setOpIndex($opIndex);
202203
if ($stopOnError) {
203204
throw $pathException;
204205
} else {

src/PathException.php

+21
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ class PathException extends Exception
1414
/** @var string */
1515
private $field;
1616

17+
/** @var int */
18+
private $opIndex;
19+
1720
/**
1821
* @param string $message
1922
* @param OpPath $operation
@@ -49,4 +52,22 @@ public function getField()
4952
{
5053
return $this->field;
5154
}
55+
56+
/**
57+
* @param int $opIndex
58+
* @return $this
59+
*/
60+
public function setOpIndex($opIndex)
61+
{
62+
$this->opIndex = $opIndex;
63+
return $this;
64+
}
65+
66+
/**
67+
* @return int
68+
*/
69+
public function getOpIndex()
70+
{
71+
return $this->opIndex;
72+
}
5273
}

tests/src/JsonPatchTest.php

+8-6
Original file line numberDiff line numberDiff line change
@@ -229,20 +229,21 @@ public function testPathExceptionContinueOnError()
229229
$data = array('abc' => $actualValue);
230230
$patch = new JsonPatch();
231231

232-
$operation1 = new JsonPatch\Test('/abc', 'def');
233-
$patch->op($operation1);
232+
$operation0 = new JsonPatch\Test('/abc', 'def');
233+
$patch->op($operation0);
234234

235-
$operation2 = new JsonPatch\Move('/target', '/source');
236-
$patch->op($operation2);
235+
$operation1 = new JsonPatch\Move('/target', '/source');
236+
$patch->op($operation1);
237237

238238
$errors = $patch->apply($data, false);
239239

240240
$this->assertInstanceOf(PatchTestOperationFailedException::class, $errors[0]);
241-
$this->assertSame($operation1, $errors[0]->getOperation());
241+
$this->assertSame($operation0, $errors[0]->getOperation());
242242

243243
$this->assertInstanceOf(PathException::class, $errors[1]);
244-
$this->assertSame($operation2, $errors[1]->getOperation());
244+
$this->assertSame($operation1, $errors[1]->getOperation());
245245
$this->assertSame('from', $errors[1]->getField());
246+
$this->assertEquals(1, $errors[1]->getOpIndex());
246247
}
247248

248249
public function pathExceptionProvider() {
@@ -305,6 +306,7 @@ public function testPathException(OpPath $operation, $expectedMessage, $expected
305306
$this->assertInstanceOf(PathException::class, $ex);
306307
$this->assertEquals($expectedMessage, $ex->getMessage());
307308
$this->assertEquals($expectedField, $ex->getField());
309+
$this->assertEquals(0, $ex->getOpIndex()); // There is only one operation
308310
}
309311
}
310312
}

0 commit comments

Comments
 (0)