File: 01-Catalyst-Plugin-CustomErrorMessage.t

package info (click to toggle)
libcatalyst-plugin-customerrormessage-perl 0.6-2.2
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 104 kB
  • sloc: perl: 335; makefile: 2
file content (429 lines) | stat: -rw-r--r-- 7,661 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
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
#!/usr/bin/perl

use strict;
use warnings;

#use Test::More 'no_plan';
use Test::More 'tests' => 24;

use English;

BEGIN { use_ok('Catalyst::Plugin::CustomErrorMessage') or exit };

exit main();

sub main {
	can_ok('Catalyst::Plugin::CustomErrorMessage', 'finalize_error');
	
	SKIP: {
		eval "use base 'Class::Accessor::Fast'";	
		skip 'no "Class::Accessor::Fast" installed skipping fake Catalyst tests.', 22 if $EVAL_ERROR;
	
		my $c;
		
		diag '> in debug mode';
		$c = MyCatalyst->new(
			'debug' => 1,
			'error' => [
				'error message1',
				'error message2',
			],
		);
		$c->finalize_error();
		ok($c->finalize_error_called, 'check if finalize_error() was really called');
		ok(!$c->finalize_error_called, 'check internal finalize_error()');
		is($c->flash->{'finalize_error'}, undef, 'flash empty');
		is($c->response->body, undef, 'response body empty');
		
		diag '> no action set tests';
		$c = MyCatalyst->new(
			'error' => [
				'error message1',
				'error message2',
			],
		);
		$c->finalize_error();
		ok($c->finalize_error_called, 'check if it was really called');
		is($c->response->redirect, '/', 'default redirect is "/"');
		is($c->flash->{'finalize_error'}, 'error message1<br/> error message2', 'check error message in flash');
		
		# setting non defaults
		$c->config->{'custom-error-message'}->{'uri-for-not-found'} = '/custom';
		$c->finalize_error();
		ok($c->finalize_error_called, 'check if it was really called');
		is($c->response->redirect, '/custom', 'config redirect is "/custom"');
		
		
		
		diag '> action set tests';
		$c = MyCatalyst->new(
			'action' => MyCatalyst::Action->new(),
			'error'  => [
				'error message1',
				'error message2',
			],
		);
		$c->finalize_error();
		ok($c->finalize_error_called, 'check if it was really called');
		is($c->view_name, 'TT', 'default view is TT');
		is($c->view->template_name, 'error.tt2', 'default template is error.tt2');
		is($c->response->content_type, 'text/html; charset=utf-8', 'default content type is "text/html; charset=utf-8"');
	
		# setting non defaults
		my $view_name       = 'View';
		my $content_type    = 'text/plain; charset=utf-8';
		my $error_template  = 'my_error.tt2';
		my $response_status = 0;
		$c->config->{'custom-error-message'}->{'error-template'}    = $error_template;
		$c->config->{'custom-error-message'}->{'content-type'}      = $content_type;
		$c->config->{'custom-error-message'}->{'view-name'}         = $view_name;
		$c->config->{'custom-error-message'}->{'response-status'}   = $response_status;
	
		$c->finalize_error();
		ok($c->finalize_error_called, 'check if it was really called');
		
		is($c->view_name, $view_name, 'now view is "'.$view_name.'"');
		is($c->view->template_name, 'my_error.tt2', 'now template is my_error.tt2');
		is($c->response->content_type, $content_type, 'now content type is "'.$content_type.'"');
		is($c->response->status, $response_status, 'now response status is "'.$response_status.'"');
		
		
		# catching errors in the view
		$c->config({});
		$c->config->{'custom-error-message'}->{'view-name'} = 'BrokenView';
		$c->flash->{'finalize_error'} = undef;
		$c->response->body(undef);
		
		$c->finalize_error();
		ok($c->finalize_error_called, 'check if it was really called');
		
		is($c->flash->{'finalize_error'}, undef, 'flash empty');
		is($c->response->body, undef, 'response body empty');
		like($c->log->error, qr{non_existing_function}, 'error is logged');
	}
	
	return 0;
}


=head1 MyCatalyst

Pseudo Catalyst object for testing.

=cut

package MyCatalyst;

use strict;
use warnings;

use English;
use Carp::Clan;
use MRO::Compat;

use base 'Catalyst::Plugin::CustomErrorMessage';

BEGIN {
	eval "use base 'Class::Accessor::Fast'";
	
	if (not $EVAL_ERROR) {
		__PACKAGE__->mk_accessors(qw{
			view_name
			config
			debug
			error
			action
			response
			flash
			stash
			_save_flash
		});
	}
}

sub new {
	my $class = shift;
	my %args  = @_;
	
	my $self = $class->next::method(\%args);
	
	$self->response(MyCatalyst::Response->new());
	$self->flash({})  if not defined $self->flash;
	$self->stash({})  if not defined $self->stash;
	$self->config({}) if not defined $self->config;
	
	return $self;
}

sub finalize_error {
	my $self = shift;
	
	$self->next::method;
	
	$self->finalize_error_called(1);
}

sub finalize_error_called {
	my $self = shift;
	
	# get
	if (@_ == 0) {
		if ($self->{'finalize_error_called'}) {
			$self->{'finalize_error_called'} = 0;
			return 1;
		}
		else {
			return 0;
		}
	}
	#set
	else {
		$self->{'finalize_error_called'} = shift;
		return; 
	}
}

sub view {
	my $self      = shift;
	my $view_name = shift;

	if (defined $view_name) {
		$self->view_name($view_name);
		$view_name = 'MyCatalyst::'.$view_name;
		$self->{'last_view_object'} = $view_name->new();
	}
	
	return $self->{'last_view_object'};
}

sub uri_for {
	my $self = shift;
	my $path = shift;
	
	return $path;
}

sub log {
	my $self = shift;
	return $self->logger;
}

sub logger {
	my $self = shift;
	
	$self->{'logger'} = MyCatalyst::Logger->new()
		if (not $self->{'logger'});
	
	return $self->{'logger'};
}

1;


=head1 MyCatalyst::Logger

Simple logger for MyCatalyst.

=cut

package MyCatalyst::Logger;

use strict;
use warnings;

use English;
use Carp::Clan;

BEGIN {
	eval "use base 'Class::Accessor::Fast'";
	
	if (not $EVAL_ERROR) {
		__PACKAGE__->mk_accessors(qw{
			fatal
			error
			warn
			info
			debug
		});
	}
}

1;


=head1 MyCatalyst::View

Custom catalyst view for testing;

=cut

package MyCatalyst::View;

use strict;
use warnings;

use English;
use Carp::Clan;

BEGIN {
	eval "use base 'Class::Accessor::Fast'";
	
	if (not $EVAL_ERROR) {
		__PACKAGE__->mk_accessors(qw{
			template_name
		});
	}
}

sub render {
	my $self          = shift;
	my $c             = shift;
	my $template_name = shift;
	
	croak 'pass template name' if not defined $template_name;
	
	$self->template_name($template_name);
}

1;


=head1 MyCatalyst::TT

Custom catalyst view for testing;

=cut

package MyCatalyst::TT;

use strict;
use warnings;

use English;
use Carp::Clan;

BEGIN {
	eval "use base 'Class::Accessor::Fast'";
	
	if (not $EVAL_ERROR) {
		__PACKAGE__->mk_accessors(qw{
			template_name
		});
	}
}

sub render {
	my $self          = shift;
	my $c             = shift;
	my $template_name = shift;
	
	croak 'pass template name' if not defined $template_name;
	
	$self->template_name($template_name);
}

1;


=head1 MyCatalyst::BrokenView

Custom catalyst view for testing;

=cut

package MyCatalyst::BrokenView;

use strict;
use warnings;

use English;
use Carp::Clan;

BEGIN {
	eval "use base 'Class::Accessor::Fast'";
	
	if (not $EVAL_ERROR) {
		__PACKAGE__->mk_accessors(qw{
			template_name
		});
	}
}

sub render {
	my $self          = shift;
	my $c             = shift;
	my $template_name = shift;
	
	croak 'pass template name' if not defined $template_name;
	
	$self->non_existing_function;
}

1;


=head1 MyCatalyst::Response

Custom catalyst response for testing;

=cut

package MyCatalyst::Response;

use strict;
use warnings;

use English;
use Carp::Clan;

BEGIN {
	eval "use base 'Class::Accessor::Fast'";
	
	if (not $EVAL_ERROR) {
		__PACKAGE__->mk_accessors(qw{
			content_type
			body
			redirect
			status
		});
	}
}

1;


=head1 MyCatalyst::action

Custom catalyst action for testing;

=cut

package MyCatalyst::Action;

use strict;
use warnings;

use English;
use Carp::Clan;

BEGIN {
	eval "use base 'Class::Accessor::Fast'";
	
	if (not $EVAL_ERROR) {
		__PACKAGE__->mk_accessors(qw{
			reverse
		});
	}
}

sub new {
	my $class = shift;
	
	my $self = $class->SUPER::new(@_);
	
	$self->reverse('MyReverse') if not defined $self->reverse;
	
	return $self;
}

1;