/[Frey]/trunk/t/02-frey-web.t
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/t/02-frey-web.t

Parent Directory Parent Directory | Revision Log Revision Log


Revision 532 - (show annotations)
Wed Nov 26 07:57:12 2008 UTC (15 years, 4 months ago) by dpavlin
File MIME type: application/x-troff
File size: 1658 byte(s)
refactor Frey::Boostrap from Frey::Server to have correct warn handling

- we now use File::Tee to capture STDERR to file and display that
  (with filtering) for display
- added FREY_NO_LOG enviroment variable to disable logging (for perl -c)
- move all warnings handling into Frey::Web->warnings_html
- make Frey->debug Int (this touched a bunch of tests)
1 #!/usr/bin/perl
2 use strict;
3 use warnings;
4
5 use Test::More tests => 25;
6 use lib 'lib';
7
8 use Data::Dump qw/dump/;
9
10 my $debug = @ARGV ? 0 : 1;
11
12 BEGIN {
13 use_ok('Frey::Web');
14 use_ok('Frey');
15 use_ok('Test::HTML::Lint');
16 }
17
18 {
19 package Mock;
20 use Moose;
21 extends 'Frey';
22 with 'Frey::Web';
23 }
24
25 isa_ok( Frey::Web->meta, 'Moose::Meta::Role' );
26
27
28 ok( my $o = Mock->new( debug => $debug, inline_smaller_than => 1 ), 'new' );
29 diag $o->dump(2) if $debug;
30
31 ok( $o->add_head( '/static/lib/Joose.js' ), 'add_head js' );
32
33 ok( my @head = $o->head, 'js' );
34
35 diag dump( @head ) if $debug;
36
37 ok( $o->add_head( '/static/introspect.css' ), 'add_head css' );
38 ok( $o->add_head( "<!--\nhead html\n-->" ), 'add_head html' );
39
40 ok( my $html = $o->page( title => 'Test', body => '<!-- in-body -->' ), 'page' );
41 diag $html if $debug;
42
43 like( $html, qr{text/javascript.*\.js}, 'have js' );
44 like( $html, qr{text/css.*\.css}, 'have css' );
45 like( $html, qr{head html}, 'have html' );
46 like( $html, qr{icon}, 'have icon' );
47
48 html_ok( $html, 'html lint' );
49
50 ok( my $s = $o->add_head( 'static/frey.css' ), 'add_head css' );
51 diag $s if $debug;
52 ok( $s = $o->add_head( 'static/js/ext-2.1/ext-all.js' ), 'add_head js' );
53 diag $s if $debug;
54
55 ok( $o->title, 'has title' );
56
57 ok( my $html2 = $o->page( title => 'Test2', body => '<!-- in-body 2 -->' ), 'page' );
58 diag $html2 if $debug;
59
60 cmp_ok( length( $html ), '<', length( $html2 ), 'bigger html' );
61
62 like( $html2, qr{frey\.css}, 'have css' );
63 like( $html2, qr{ext}, 'have js' );
64
65 ok( my $error = $o->error('test,ignore'), 'error' );
66 diag $error if $debug;
67 like( $error, qr{test,ignore.*$0}s, "have $0" );
68
69 ok( $o->dump_max_bytes, 'dump_max_bytes' );

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26