/[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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 500 by dpavlin, Mon Nov 24 21:35:34 2008 UTC revision 776 by dpavlin, Tue Dec 9 20:31:37 2008 UTC
# Line 8  with 'Frey::Storage'; Line 8  with 'Frey::Storage';
8  use TAP::Harness;  use TAP::Harness;
9  use TAP::Formatter::HTML;  use TAP::Formatter::HTML;
10  use Data::Dump qw/dump/;  use Data::Dump qw/dump/;
11    use File::Slurp;
12    
13  use Frey::SVK;  use Frey::SVK;
14  use Frey::PPI;  use Frey::PPI;
# Line 18  has tests => ( Line 19  has tests => (
19          required => 1,          required => 1,
20          lazy => 1, # FIXME ask users which tests to run          lazy => 1, # FIXME ask users which tests to run
21          default => sub {          default => sub {
 #               [ glob('t/*.t') ] # all tests  
22                  [ Frey::SVK->modified ]                  [ Frey::SVK->modified ]
23          },          },
24            documentation => 'run tests which are result of modifications or whole full tests',
25    );
26    
27    has test => (
28            is => 'rw',
29            isa => 'Str',
30            documentation => 'run only this single test',
31    );
32    
33    has test_because => (
34            documentation => 'returns classes responsable for each test run',
35            is => 'rw',
36    #       isa => 'HashRef[Hashref[Int]',
37            required => 1,
38            lazy => 1,
39            default => sub {
40                    my $self = shift;
41                    my $depends;
42    
43                    # collect real tests
44                    map {
45                            $depends->{$_}->{'test modified'}++ if m{\.t$};
46                    } @{ $self->tests };
47    
48                    # and tests which depend on modified classes supplied
49                    map {
50                            if ( m{(.+)\.pm$} ) {
51                                    my $class = $1;
52                                    $class =~ s{^lib/}{};
53                                    $class =~ s{/}{::}g;
54                                    warn "extract tests from $_ class $class";
55                                    $depends->{$_}->{$class}++ foreach Frey::PPI->new( class => $class )->has_tests;
56                            }
57                    } @{ $self->tests };
58    
59                    return $depends;
60            },
61  );  );
62    
63  sub as_markup {  sub as_markup {
64          my ($self) = @_;          my ($self) = @_;
65    
66    =for later
67    
68            my $path = 'var/test/';
69            my $running_pid = "$path/running.pid";
70    
71            my $pid = read_file $running_pid if -e $running_pid;
72            if ( $pid ) {
73                    if ( kill 0, $pid ) {
74                            warn "ABORTING: $self allready running as pid $pid";
75                            return 'abort';
76                    } else {
77                            warn "got $pid from $running_pid but no process alive, ignoring...";
78                    }
79            }
80    
81            write_file( $running_pid, $$ );
82            warn "# started $self with pid $$ -> $running_pid";
83    
84    =cut
85    
86          my $f = TAP::Formatter::HTML->new({          my $f = TAP::Formatter::HTML->new({
87  #               silent => 1,  #               silent => 1,
88    
# Line 37  sub as_markup { Line 94  sub as_markup {
94                  formatter => $f,                  formatter => $f,
95          });          });
96    
97          my $tests;          my @tests;
98    
99          map {          @tests = ( $self->test ) if $self->test;
100                  $tests->{$_}++ if m{\.t$};  
101          } @{ $self->tests };          if ( my $depends = $self->test_because ) {
102                    @tests = grep {
103          map {                          $_ ne '' &&
104                  if ( m{(.+)\.pm$} ) {                          -e $_ &&
105                          my $class = $1;                          ! m{$0} # break recursion      
106                          $class =~ s{^lib/}{};                  } sort keys %{ $depends } unless @tests;
107                          $class =~ s{/}{::}g;          }
108                          warn "extract tests from $_ class $class";  
109                          $tests->{$_}->{$class}++ foreach Frey::PPI->new( class => $class )->has_tests;          $self->add_status( { test => { depends => $self->test_because } } );
110                  }  
111          } @{ $self->tests };          if ( ! @tests ) {
112                    warn "can't find any tests ", dump( $self->tests ), " within depends ", dump( $self->test_because );
113    #               warn "running all tests instead";
114    #               @tests = glob('t/*.t');
115                    @tests = ( qw{t/00-load.t t/pod.t} ); # XXX default tests
116            }
117    
118          my @tests = grep {          $self->title( join(' ', @tests ) );
                 ! m{$0} # break recursion        
         } sort keys %$tests;  
         die "no tests for files ", dump( $self->tests ),dump( $tests ) unless @tests;  
119    
120          warn "testing ",dump( @tests );          warn "testing ",dump( @tests );
121          $h->runtests( @tests );          $h->runtests( @tests );
122    
123          $self->store( 'var/test/' . time() . '.yaml', $h );          $self->store( 'var/test/' . time() . '.yaml', $h );
124    
         push @{ $self->status }, { test => $tests };  
   
125          my $html = ${ $f->html };          my $html = ${ $f->html };
126  #       warn $html;  #       warn $html;
127          warn "got ",length($html), " bytes";          warn "got ",length($html), " bytes";
128    
129          while ( $html =~ s{(<style.+?/style>)}{}gs ) {          while ( $html =~ s{(<style.+?/style>)}{}gs ) {
130                  $self->add_head( $1 );                  my $style = $1;
131                    $style =~ s[((?:body|html)\s+{[^}]+})][/\* $1 \*/]sg; # remove some styles
132                    $self->add_head( $style );
133          }          }
134    
135          $self->add_head(qq|          $self->add_head(qq|
# Line 80  sub as_markup { Line 139  sub as_markup {
139                  td.results:hover ul.test-out { display: block; }                  td.results:hover ul.test-out { display: block; }
140                  </style>                  </style>
141          |);          |);
142            $html =~ s{<div id="menu">.+?</div>}{}sg; # remove menu which doesn't work without JavaScript
143    
144          $html =~ s{^.*<body>}{}s;          $html =~ s{^.*<body>}{}s;
145          $html =~ s{</body>.*$}{}s;          $html =~ s{</body>.*$}{}s;
146    
147          $html =~ s{(<a class="file") href="#"(.+?)>t/(.+?)</a>}{<a target="editor" href="/editor+t/$3.t+1" name="t/$3.t" $2>$3</a>}sg;          $html =~ s{(<a class="file") href="#"(.+?)>t/(.+?)</a>}{<a target="editor" href="/editor+t/$3.t+1" name="t/$3.t" $2>$3</a>}sg;
148    
149          return          $html = $self->html_links( $html );
150                  $self->editor_links( $html )  
151            if ( my $depends = $self->test_because ) {
152                    $html .= qq|Test dependencies:|
153                  . qq|<ul><li>|                  . qq|<ul><li>|
154                  . join("</li>\n<li>",                  . join("</li>\n<li>",
155                          map {                          map {
156                                  qq|<a href="#$_"><tt>$_</tt></a> &larr; |                                  my $test = $_;
157                                  .                                  my $depends =
158                                  join(' ',                                  join(' ',
159                                          map {                                          map {
160  #                                               qq|<a target="editor" href="/editor+$_+1" title="edit">$_</a>|                                                  if ( m{\s} ) {
161                                                  qq|<a target="introspect" href="/$_" title="introspect">$_</a>|                                                          $_      # human comment with space
162                                          } keys %{ $tests->{$_} }                                                  } else {
163                                  )                                                          qq|<a target="introspect" href="/$_" title="introspect">$_</a>|
164    #                                                       qq|<a target="editor" href="/editor+$_+1" title="edit">$_</a>|
165                                                    }
166                                            } keys %{ $depends->{$_} }
167                                    );
168                                    qq|<a href="?test=$test"><tt>$test</tt></a>|
169                                    . ( $depends ? qq| &larr; $depends| : '' )
170                                    ;
171                          } @tests )                          } @tests )
172                  . qq|</li></ul>|                  . qq|</li></ul>|
173                  ;                  ;
174                    } else {
175                    warn "# test_because empty";
176            }
177    
178            $self->add_icon( $1 ) if $html =~ m{class="(passed|failed)"};
179    
180    =for later
181    
182            unlink $running_pid or die "can't remove $running_pid: $!";
183    
184    =cut
185    
186            return $html;
187  }  }
188    
189  1;  1;

Legend:
Removed from v.500  
changed lines
  Added in v.776

  ViewVC Help
Powered by ViewVC 1.1.26