File Coverage

blib/lib/MVC/Neaf/Request/FakeWriter.pm
Criterion Covered Total %
statement 19 19 100.0
branch 1 2 50.0
condition 1 2 50.0
subroutine 7 7 100.0
pod 4 4 100.0
total 32 34 94.1


line stmt bran cond sub pod time code
1             package MVC::Neaf::Request::FakeWriter;
2              
3 5     5   37 use strict;
  5         16  
  5         167  
4 5     5   26 use warnings;
  5         8  
  5         1360  
5             our $VERSION = '0.2901';
6              
7             =head1 NAME
8              
9             MVC::Neaf::Request::FakeWriter - part of test suite for Not Even A Framework
10              
11             =head1 DESCRIPTION
12              
13             See L and L.
14             Unless you plan to contribute to framework itself, this module is useless.
15              
16             This module converts L asynchronous response with callback to a normal
17             straightforward response ([status, header, content]).
18              
19             =head1 SINOPSYS
20              
21             use Data::Dumper;
22             use MVC::Neaf::Request::FakeWriter;
23              
24             my $capture = MVC::Neaf::Request::FakeWriter->new;
25             my $result = $capture->respond( $psgi_app_return );
26             warn Dumper( $result ); # normal PSGI response
27             # aka [ status, [ head...], [content...] ]
28              
29             =head1 METHODS
30              
31             =head2 new
32              
33             Constructor (no args).
34              
35             =head2 respond( sub { ... } )
36              
37             Respond to provided callback in PSGI-compatible manner.
38              
39             =head2 write( $data )
40              
41             Append given data to buffer.
42              
43             =head2 close()
44              
45             Do nothing.
46              
47             =cut
48              
49             sub new {
50 5     5 1 21 return bless {}, shift;
51             };
52              
53             sub respond {
54 5     5 1 12 my ($self, $psgi_ret) = @_;
55              
56 5 50       19 return $psgi_ret if ref $psgi_ret eq 'ARRAY';
57              
58             $psgi_ret->( sub {
59 5     5   7 my $resp = shift;
60 5         29 $self->{status} = $resp->[0];
61 5         11 $self->{header} = $resp->[1];
62 5   50     32 $self->{content} = $resp->[2] || [];
63              
64 5         21 return $self;
65 5         32 } );
66              
67 5         39 return [ $self->{status}, $self->{header}, $self->{content} ];
68             };
69              
70             sub write {
71 49     49 1 72 my ($self, $data) = @_;
72 49         66 push @{ $self->{content} }, $data;
  49         116  
73             };
74              
75       7 1   sub close {
76             };
77              
78             =head1 LICENSE AND COPYRIGHT
79              
80             This module is part of L suite.
81              
82             Copyright 2016-2023 Konstantin S. Uvarin C.
83              
84             This program is free software; you can redistribute it and/or modify it
85             under the terms of either: the GNU General Public License as published
86             by the Free Software Foundation; or the Artistic License.
87              
88             See L for more information.
89              
90             =cut
91              
92             1;