File: json_config_lite_app.t

package info (click to toggle)
libmojolicious-perl 9.31%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,260 kB
  • sloc: perl: 10,139; makefile: 31; javascript: 1
file content (74 lines) | stat: -rw-r--r-- 2,887 bytes parent folder | download | duplicates (3)
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
use Mojo::Base -strict;

BEGIN {
  $ENV{MOJO_MODE}    = 'development';
  $ENV{MOJO_REACTOR} = 'Mojo::Reactor::Poll';
}

use Test::Mojo;
use Test::More;

use Mojo::File qw(curfile);
use lib curfile->sibling('lib')->to_string;

use Mojolicious::Lite;

subtest 'Default' => sub {
  app->config(it => 'works');
  is_deeply app->config, {it => 'works'}, 'right value';
};

subtest 'Invalid config file' => sub {
  eval { plugin JSONConfig => {file => 'public/hello.txt'} };
  like $@, qr/JSON/, 'right error';
};

subtest 'Load plugins' => sub {
  my $config = plugin j_s_o_n_config => {default => {foo => 'baz', hello => 'there'}};
  my $path   = curfile->sibling('json_config_lite_app_abs.json');
  plugin JSONConfig => {file => $path};
  is $config->{foo},              'bar',                      'right value';
  is $config->{hello},            'there',                    'right value';
  is $config->{utf},              'утф',                      'right value';
  is $config->{absolute},         'works too!',               'right value';
  is $config->{absolute_dev},     'dev works too!',           'right value';
  is app->config->{foo},          'bar',                      'right value';
  is app->config->{hello},        'there',                    'right value';
  is app->config->{utf},          'утф',                      'right value';
  is app->config->{absolute},     'works too!',               'right value';
  is app->config->{absolute_dev}, 'dev works too!',           'right value';
  is app->config('foo'),          'bar',                      'right value';
  is app->config('hello'),        'there',                    'right value';
  is app->config('utf'),          'утф',                      'right value';
  is app->config('absolute'),     'works too!',               'right value';
  is app->config('absolute_dev'), 'dev works too!',           'right value';
  is app->config('it'),           'works',                    'right value';
  is app->deployment_helper,      'deployment plugins work!', 'right value';
  is app->another_helper,         'works too!',               'right value';
};

get '/' => 'index';

my $t = Test::Mojo->new;

$t->get_ok('/')->status_is(200)->content_is("barbar\n");

subtest 'No config file, default only' => sub {
  my $config = plugin JSONConfig => {file => 'nonexistent', default => {foo => 'qux'}};
  is $config->{foo},     'qux',   'right value';
  is app->config->{foo}, 'qux',   'right value';
  is app->config('foo'), 'qux',   'right value';
  is app->config('it'),  'works', 'right value';
};

subtest 'No config file, no default' => sub {
  ok !(eval { plugin JSONConfig => {file => 'nonexistent'} }), 'no config file';
  local $ENV{MOJO_CONFIG} = 'nonexistent';
  ok !(eval { plugin 'JSONConfig' }), 'no config file';
};

done_testing();

__DATA__
@@ index.html.ep
<%= config->{foo} %><%= config 'foo' %>