forked from nWidart/laravel-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JsonTest.php
145 lines (126 loc) · 3.91 KB
/
JsonTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<?php
namespace Nwidart\Modules\Tests;
use Nwidart\Modules\Exceptions\InvalidJsonException;
use Nwidart\Modules\Json;
class JsonTest extends BaseTestCase
{
/**
* @var Json
*/
private $json;
public function setUp(): void
{
parent::setUp();
$path = __DIR__ . '/stubs/valid/module.json';
$this->json = new Json($path, $this->app['files']);
}
/** @test */
public function it_gets_the_file_path()
{
$path = __DIR__ . '/stubs/valid/module.json';
$this->assertEquals($path, $this->json->getPath());
}
/** @test */
public function it_throws_an_exception_with_invalid_json()
{
$path = __DIR__ . '/stubs/InvalidJsonModule/module.json';
$this->expectException(InvalidJsonException::class);
$this->expectExceptionMessage('Error processing file: ' . $path . '. Error: Syntax error');
new Json($path, $this->app['files']);
}
/** @test */
public function it_gets_attributes_from_json_file()
{
$this->assertEquals('Order', $this->json->get('name'));
$this->assertEquals('order', $this->json->get('alias'));
$this->assertEquals('My demo module', $this->json->get('description'));
$this->assertEquals('0.1', $this->json->get('version'));
$this->assertEquals(['my', 'stub', 'module'], $this->json->get('keywords'));
$this->assertEquals(1, $this->json->get('active'));
$this->assertEquals(1, $this->json->get('order'));
}
/** @test */
public function it_reads_attributes_from_magic_get_method()
{
$this->assertEquals('Order', $this->json->name);
$this->assertEquals('order', $this->json->alias);
$this->assertEquals('My demo module', $this->json->description);
$this->assertEquals('0.1', $this->json->version);
$this->assertEquals(['my', 'stub', 'module'], $this->json->keywords);
$this->assertEquals(1, $this->json->active);
$this->assertEquals(1, $this->json->order);
}
/** @test */
public function it_makes_json_class()
{
$path = __DIR__ . '/stubs/valid/module.json';
$json = Json::make($path, $this->app['files']);
$this->assertInstanceOf(Json::class, $json);
}
/** @test */
public function it_sets_a_path()
{
$path = __DIR__ . '/stubs/valid/module.json';
$this->assertEquals($path, $this->json->getPath());
$this->json->setPath('some/path.json');
$this->assertEquals('some/path.json', $this->json->getPath());
}
/** @test */
public function it_decodes_json()
{
$expected = '{
"name": "Order",
"alias": "order",
"description": "My demo module",
"version": "0.1",
"keywords": [
"my",
"stub",
"module"
],
"active": 1,
"order": 1,
"providers": [
"Modules\\\Order\\\Providers\\\OrderServiceProvider",
"Modules\\\Order\\\Providers\\\EventServiceProvider",
"Modules\\\Order\\\Providers\\\RouteServiceProvider"
],
"aliases": [],
"files": []
}';
$this->assertEquals($expected, $this->json->toJsonPretty());
}
/** @test */
public function it_sets_a_key_value()
{
$this->json->set('key', 'value');
$this->assertEquals('value', $this->json->get('key'));
}
/** @test */
public function it_can_be_casted_to_string()
{
$expected = '{
"name": "Order",
"alias": "order",
"description": "My demo module",
"version": "0.1",
"keywords": [
"my",
"stub",
"module"
],
"active": 1,
"order": 1,
"providers": [
"Modules\\\Order\\\Providers\\\OrderServiceProvider",
"Modules\\\Order\\\Providers\\\EventServiceProvider",
"Modules\\\Order\\\Providers\\\RouteServiceProvider"
],
"aliases":{},
"files": [
]
}
';
$this->assertEquals($expected, (string)$this->json);
}
}