/[Frey]/trunk/lib/Frey/Test/Runner.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/lib/Frey/Test/Runner.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 489 - (show annotations)
Mon Nov 24 17:26:47 2008 UTC (15 years, 5 months ago) by dpavlin
File size: 1292 byte(s)
Frey::Test::Runner will now run tests if all classes which are modified on disk
1 package Frey::Test::Runner;
2 use Moose;
3
4 extends 'Frey';
5 with 'Frey::Web';
6 with 'Frey::Storage';
7
8 use TAP::Harness;
9 use TAP::Formatter::HTML;
10 use Data::Dump qw/dump/;
11
12 use Frey::SVK;
13 use Frey::PPI;
14
15 has tests => (
16 is => 'rw',
17 isa => 'ArrayRef[Str]',
18 required => 1,
19 lazy => 1, # FIXME ask users which tests to run
20 default => sub {
21 # [ glob('t/*.t') ] # all tests
22 [ Frey::SVK->modified ]
23 },
24 );
25
26 sub as_markup {
27 my ($self) = @_;
28
29 my $f = TAP::Formatter::HTML->new({
30 silent => 1,
31
32 inline_css => 1,
33 inline_js => 1,
34 });
35 my $h = TAP::Harness->new({
36 merge => 1,
37 formatter => $f,
38 });
39
40 my @tests =
41 grep { ! m{$0} } # FIXME privitive way to break recursion
42 grep { m{\.t$} } # take just tests
43 map {
44 if ( m{(.+)\.pm$} ) {
45 my $class = $1;
46 $class =~ s{^lib/}{};
47 $class =~ s{/}{::}g;
48 warn "extract $_ tests $class";
49 Frey::PPI->new( class => $class )->has_tests;
50 } else {
51 $_
52 }
53 }
54 @{ $self->tests };
55
56 die "no tests for files ", dump( $self->tests ) unless @tests;
57
58 warn "testing ",dump( @tests );
59 $h->runtests( @tests );
60
61 $self->store( 'var/test.yaml', $h );
62
63 my $html = ${ $f->html };
64 # warn $html;
65 warn "got ",length($html), " bytes";
66 # $html =~ s{^.*<body>}{}s;
67 # $html =~ s{</body>.*$}{}s;
68 return $self->editor_links( $html );
69 }
70
71 1;

  ViewVC Help
Powered by ViewVC 1.1.26