File tree 6 files changed +40
-3
lines changed
6 files changed +40
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ Unreleased]
8
+ ### Added
9
+ - Issue #5 : ` ResultInterface::get() ` method added.
10
+
7
11
## [ 0.6.3] - 2019-11-18
8
12
### Fixed
9
13
- Issue #4 : replacing document root with ` add() ` fixed.
Original file line number Diff line number Diff line change @@ -44,4 +44,9 @@ public function decode()
44
44
->decoder
45
45
->exportValue ($ this ->nodeValue );
46
46
}
47
+
48
+ public function get (): NodeValueInterface
49
+ {
50
+ return $ this ->nodeValue ;
51
+ }
47
52
}
Original file line number Diff line number Diff line change 3
3
4
4
namespace Remorhaz \JSON \Pointer \Processor \Result ;
5
5
6
+ use Remorhaz \JSON \Data \Value \NodeValueInterface ;
7
+
6
8
final class NonExistingResult implements ResultInterface
7
9
{
8
10
@@ -27,4 +29,9 @@ public function decode()
27
29
{
28
30
throw new Exception \ResultNotFoundException ($ this ->source );
29
31
}
32
+
33
+ public function get (): NodeValueInterface
34
+ {
35
+ throw new Exception \ResultNotFoundException ($ this ->source );
36
+ }
30
37
}
Original file line number Diff line number Diff line change 3
3
4
4
namespace Remorhaz \JSON \Pointer \Processor \Result ;
5
5
6
+ use Remorhaz \JSON \Data \Value \NodeValueInterface ;
7
+
6
8
interface ResultInterface
7
9
{
8
10
@@ -11,4 +13,6 @@ public function exists(): bool;
11
13
public function encode (): string ;
12
14
13
15
public function decode ();
16
+
17
+ public function get (): NodeValueInterface ;
14
18
}
Original file line number Diff line number Diff line change @@ -53,7 +53,6 @@ public function testEncode_EncoderExportsValue_ReturnsSameValue(): void
53
53
);
54
54
55
55
$ encoder
56
- ->expects (self ::once ())
57
56
->method ('exportValue ' )
58
57
->willReturn ('a ' );
59
58
self ::assertSame ('a ' , $ result ->encode ());
@@ -87,9 +86,19 @@ public function testDecode_DecoderExportsValue_ReturnsSameValue(): void
87
86
);
88
87
89
88
$ decoder
90
- ->expects (self ::once ())
91
89
->method ('exportValue ' )
92
90
->willReturn ('a ' );
93
91
self ::assertSame ('a ' , $ result ->decode ());
94
92
}
93
+
94
+ public function testGet_ConstructedWithValue_ReturnsSameInstance (): void
95
+ {
96
+ $ value = $ this ->createMock (NodeValueInterface::class);
97
+ $ result = new ExistingResult (
98
+ $ this ->createMock (ValueEncoderInterface::class),
99
+ $ this ->createMock (ValueDecoderInterface::class),
100
+ $ value
101
+ );
102
+ self ::assertSame ($ value , $ result ->get ());
103
+ }
95
104
}
Original file line number Diff line number Diff line change @@ -27,11 +27,19 @@ public function testEncode_ConstructedWithSource_ThrowsMatchingException(): void
27
27
$ result ->encode ();
28
28
}
29
29
30
- public function testDencode_ConstructedWithSource_ThrowsMatchingException (): void
30
+ public function testDecode_ConstructedWithSource_ThrowsMatchingException (): void
31
31
{
32
32
$ result = new NonExistingResult ('a ' );
33
33
$ this ->expectException (ResultNotFoundException::class);
34
34
$ this ->expectExceptionMessage ('\'a \'' );
35
35
$ result ->decode ();
36
36
}
37
+
38
+ public function testGet_ConstructedWithSource_ThrowsMatchingException (): void
39
+ {
40
+ $ result = new NonExistingResult ('a ' );
41
+ $ this ->expectException (ResultNotFoundException::class);
42
+ $ this ->expectExceptionMessage ('\'a \'' );
43
+ $ result ->get ();
44
+ }
37
45
}
You can’t perform that action at this time.
0 commit comments