@@ -32,6 +32,7 @@ protected function defineEnvironment($app)
32
32
$ app ['config ' ]->set ('settings.fillable ' , []);
33
33
$ app ['config ' ]->set ('settings.cache ' , true );
34
34
$ app ['config ' ]->set ('settings.hidden ' , []);
35
+ $ app ['config ' ]->set ('settings.cast ' , []);
35
36
}
36
37
37
38
/**
@@ -283,7 +284,6 @@ public function it_can_return_default_string_settings()
283
284
$ settings = Settings::get ('baz ' , 'test ' );
284
285
285
286
$ this ->assertEquals ('test ' , $ settings , json_encode ($ settings ));
286
-
287
287
}
288
288
289
289
/** @test */
@@ -299,7 +299,6 @@ public function it_can_return_default_array_settings()
299
299
$ settings = Settings::get (['foo ' , 'bar ' , 'not_set ' ], ['not_set ' => 'test ' ]);
300
300
301
301
$ this ->assertEquals ('test ' , $ settings ['not_set ' ], json_encode ($ settings ));
302
-
303
302
}
304
303
305
304
/** @test */
@@ -308,18 +307,31 @@ public function it_can_return_default_all_settings()
308
307
$ settings = Settings::get (['not_set ' ], ['not_set ' => 'test ' ]);
309
308
310
309
$ this ->assertEquals ('test ' , $ settings ['not_set ' ], json_encode ($ settings ));
311
-
312
310
}
313
311
314
312
/** @test */
315
- public function it_encodes_arrays_to_json ()
313
+ public function it_casts_arrays ()
316
314
{
317
315
$ this ->app ['config ' ]->set ('settings.fillable ' , ['* ' ]);
316
+ $ this ->app ['config ' ]->set ('settings.cast ' , ['array ' => 'json ' ]);
318
317
319
318
Settings::set (['array ' => ['test ' , 'one ' , 'two ' ]]);
320
319
321
- $ settings = json_decode (Settings::get ('array ' ));
320
+ $ settings = Settings::get ('array ' );
321
+
322
+ $ this ->assertIsArray ($ settings );
323
+ }
324
+
325
+ /** @test */
326
+ public function it_casts_booleans ()
327
+ {
328
+ $ this ->app ['config ' ]->set ('settings.fillable ' , ['* ' ]);
329
+ $ this ->app ['config ' ]->set ('settings.cast ' , ['boolean ' => 'boolean ' ]);
330
+
331
+ Settings::set (['boolean ' => true ]);
332
+
333
+ $ settings = Settings::get ('boolean ' );
322
334
323
- $ this ->assertIsArray ($ settings , json_encode ( $ settings ) );
335
+ $ this ->assertEquals ($ settings , true );
324
336
}
325
337
}
0 commit comments