1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* apparat-resource |
5
|
|
|
* |
6
|
|
|
* @category Apparat |
7
|
|
|
* @package Apparat\Resource |
8
|
|
|
* @subpackage Apparat\Resource\Tests |
9
|
|
|
* @author Joschi Kuphal <[email protected]> / @jkphl |
10
|
|
|
* @copyright Copyright © 2016 Joschi Kuphal <[email protected]> / @jkphl |
11
|
|
|
* @license http://opensource.org/licenses/MIT The MIT License (MIT) |
12
|
|
|
*/ |
13
|
|
|
|
14
|
|
|
/*********************************************************************************** |
15
|
|
|
* The MIT License (MIT) |
16
|
|
|
* |
17
|
|
|
* Copyright © 2016 Joschi Kuphal <[email protected]> / @jkphl |
18
|
|
|
* |
19
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of |
20
|
|
|
* this software and associated documentation Fixture (the "Software"), to deal in |
21
|
|
|
* the Software without restriction, including without limitation the rights to |
22
|
|
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of |
23
|
|
|
* the Software, and to permit persons to whom the Software is furnished to do so, |
24
|
|
|
* subject to the following conditions: |
25
|
|
|
* |
26
|
|
|
* The above copyright notice and this permission notice shall be included in all |
27
|
|
|
* copies or substantial portions of the Software. |
28
|
|
|
* |
29
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
30
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS |
31
|
|
|
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR |
32
|
|
|
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER |
33
|
|
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
34
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
35
|
|
|
***********************************************************************************/ |
36
|
|
|
|
37
|
|
|
namespace Apparat\Resource\Tests; |
38
|
|
|
|
39
|
|
|
use Apparat\Dev\Tests\AbstractTest; |
40
|
|
|
use Apparat\Kernel\Ports\Kernel; |
41
|
|
|
use Apparat\Resource\Infrastructure\Io\InMemory\Reader; |
42
|
|
|
use Apparat\Resource\Infrastructure\Model\Part\CommonMarkPart; |
43
|
|
|
use Apparat\Resource\Infrastructure\Model\Resource\CommonMarkResource; |
44
|
|
|
|
45
|
|
|
/** |
46
|
|
|
* CommonMark file tests |
47
|
|
|
* |
48
|
|
|
* @package Apparat\Resource |
49
|
|
|
* @subpackage Apparat\Resource\Tests |
50
|
|
|
*/ |
51
|
|
|
class CommonMarkTest extends AbstractTest |
52
|
|
|
{ |
53
|
|
|
/** |
54
|
|
|
* Example CommonMark file |
55
|
|
|
* |
56
|
|
|
* @var string |
57
|
|
|
*/ |
58
|
|
|
const COMMONMARK_FILE = __DIR__.DIRECTORY_SEPARATOR.'Fixture'.DIRECTORY_SEPARATOR.'commonmark.md'; |
59
|
|
|
/** |
60
|
|
|
* Example CommonMark data |
61
|
|
|
* |
62
|
|
|
* @var string |
63
|
|
|
*/ |
64
|
|
|
protected $commonMark = null; |
65
|
|
|
|
66
|
|
|
/** |
67
|
|
|
* Test the CommonMark file constructor |
68
|
|
|
*/ |
69
|
|
|
public function testCommonMarkResource() |
70
|
|
|
{ |
71
|
|
|
$commonMarkResource = Kernel::create(CommonMarkResource::class, [null]); |
72
|
|
|
$this->assertInstanceOf(CommonMarkResource::class, $commonMarkResource); |
73
|
|
|
$this->assertEquals(CommonMarkPart::MEDIA_TYPE, $commonMarkResource->getMediaTypePart()); |
74
|
|
|
} |
75
|
|
|
|
76
|
|
|
/** |
77
|
|
|
* Test the CommonMark file constructor with reader |
78
|
|
|
*/ |
79
|
|
|
public function testCommonMarkResourceReader() |
80
|
|
|
{ |
81
|
|
|
$commonMarkResource = Kernel::create( |
82
|
|
|
CommonMarkResource::class, |
83
|
|
|
[Kernel::create(Reader::class, [$this->commonMark])] |
84
|
|
|
); |
85
|
|
|
$this->assertEquals($this->commonMark, $commonMarkResource->getPart()); |
86
|
|
|
} |
87
|
|
|
|
88
|
|
|
/** |
89
|
|
|
* Test setting the content of a CommonMark file |
90
|
|
|
*/ |
91
|
|
|
public function testCommonMarkResourceSet() |
92
|
|
|
{ |
93
|
|
|
$randomSet = md5(rand()); |
94
|
|
|
$commonMarkResource = Kernel::create(CommonMarkResource::class, [null]); |
95
|
|
|
$commonMarkResource->setPart($randomSet); |
96
|
|
|
$this->assertEquals($randomSet, $commonMarkResource->getPart()); |
97
|
|
|
} |
98
|
|
|
|
99
|
|
|
/** |
100
|
|
|
* Test appending content to a CommonMark file |
101
|
|
|
*/ |
102
|
|
|
public function testCommonMarkResourceAppend() |
103
|
|
|
{ |
104
|
|
|
$randomSet = md5(rand()); |
105
|
|
|
$randomAppend = md5(rand()); |
106
|
|
|
$commonMarkResource = Kernel::create(CommonMarkResource::class, [null]); |
107
|
|
|
$commonMarkResource->setPart($randomSet)->appendPart($randomAppend); |
108
|
|
|
$this->assertEquals($randomSet.$randomAppend, $commonMarkResource->getPart()); |
109
|
|
|
} |
110
|
|
|
|
111
|
|
|
/** |
112
|
|
|
* Test prepending content to a CommonMark file |
113
|
|
|
*/ |
114
|
|
|
public function testCommonMarkResourcePrepend() |
115
|
|
|
{ |
116
|
|
|
$randomSet = md5(rand()); |
117
|
|
|
$randomPrepend = md5(rand()); |
118
|
|
|
$commonMarkResource = Kernel::create(CommonMarkResource::class, [null]); |
119
|
|
|
$commonMarkResource->setPart($randomSet)->prependPart($randomPrepend); |
120
|
|
|
$this->assertEquals($randomPrepend.$randomSet, $commonMarkResource->getPart()); |
121
|
|
|
} |
122
|
|
|
|
123
|
|
|
/** |
124
|
|
|
* Test getting the HTML content of a CommonMark file with unallowed subparts |
125
|
|
|
* |
126
|
|
|
* @expectedException \Apparat\Resource\Domain\Model\Part\InvalidArgumentException |
127
|
|
|
* @expectedExceptionCode 1447365624 |
128
|
|
|
*/ |
129
|
|
|
public function testCommonMarkResourceHtmlSubparts() |
130
|
|
|
{ |
131
|
|
|
$commonMarkResource = Kernel::create( |
132
|
|
|
CommonMarkResource::class, |
133
|
|
|
[Kernel::create(Reader::class, [$this->commonMark])] |
134
|
|
|
); |
135
|
|
|
$commonMarkResource->getHtmlPart('a/b/c'); |
136
|
|
|
} |
137
|
|
|
|
138
|
|
|
/** |
139
|
|
|
* Test getting the HTML content part of a CommonMark file |
140
|
|
|
*/ |
141
|
|
|
public function testCommonMarkResourceHtmlPart() |
142
|
|
|
{ |
143
|
|
|
$expectedHtml = $this->normalizeHtml( |
144
|
|
|
file_get_contents(__DIR__.DIRECTORY_SEPARATOR.'Fixture'.DIRECTORY_SEPARATOR.'commonmark.html') |
145
|
|
|
); |
146
|
|
|
$commonMarkResource = Kernel::create( |
147
|
|
|
CommonMarkResource::class, |
148
|
|
|
[Kernel::create(Reader::class, [$this->commonMark])] |
149
|
|
|
); |
150
|
|
|
$this->assertEquals($expectedHtml, $this->normalizeHtml($commonMarkResource->getHtmlPart())); |
151
|
|
|
} |
152
|
|
|
|
153
|
|
|
/** |
154
|
|
|
* Test getting the HTML content of a CommonMark file |
155
|
|
|
*/ |
156
|
|
|
public function testCommonMarkResourceHtml() |
157
|
|
|
{ |
158
|
|
|
$expectedHtml = $this->normalizeHtml( |
159
|
|
|
file_get_contents(__DIR__.DIRECTORY_SEPARATOR.'Fixture'.DIRECTORY_SEPARATOR.'commonmark.html') |
160
|
|
|
); |
161
|
|
|
$commonMarkResource = Kernel::create( |
162
|
|
|
CommonMarkResource::class, |
163
|
|
|
[Kernel::create(Reader::class, [$this->commonMark])] |
164
|
|
|
); |
165
|
|
|
$this->assertEquals($expectedHtml, $this->normalizeHtml($commonMarkResource->getHtml())); |
166
|
|
|
} |
167
|
|
|
|
168
|
|
|
/** |
169
|
|
|
* Sets up the fixture |
170
|
|
|
*/ |
171
|
|
|
protected function setUp() |
172
|
|
|
{ |
173
|
|
|
parent::setUp(); |
174
|
|
|
$this->commonMark = file_get_contents(self::COMMONMARK_FILE); |
175
|
|
|
} |
176
|
|
|
} |
177
|
|
|
|