view _test/Test/Web/View.pm @ 189:08015e2803f1

IMPL::Vew::Web - fixed memory leaks, more tests
author cin
date Wed, 04 Apr 2012 02:49:45 +0400
parents 029c9610528c
children cd1ff7029a63
line wrap: on
line source

package Test::Web::View;
use IMPL::Profiler::Memory;
use strict;
use warnings;
use utf8;

use parent qw(IMPL::Test::Unit);
__PACKAGE__->PassThroughArgs;

use File::Slurp;
use Scalar::Util qw(weaken);

use IMPL::Test qw(assert test GetCallerSourceLine);
use IMPL::Web::View::TTLoader();

use constant {
	TTLoader => typeof IMPL::Web::View::TTLoader,
	MProfiler => 'IMPL::Profiler::Memory'
};

sub AssertMemoryLeak {
	my $code = shift;
	my $dump = shift;
	
	my $data = MProfiler->Monitor($code, sub { $_ =~ m/^IMPL::/} );
	
	if ($data->isLeak and $dump) {
		write_file("dump.out", { binmode => ':utf8' }, $data->Dump() );
	}
	
	assert( not($data->isLeak), "Memory leak detected", GetCallerSourceLine()  , @{$data->{objects}} );	
}

sub templatesDir {
	$_[0]->GetResourceDir('Resources','TTView');
}

sub CreateLoader {
	my ($this) = @_;
	
	my $loader = TTLoader->new(
		{
			INCLUDE_PATH => [
				$this->templatesDir
			],
			INTERPOLATE => 1,
			POST_CHOMP => 1,
			ENCODING => 'utf-8'
		},
		ext => '.tt',
		initializer => 'global.tt'
	);
}

test TTLoaderTests => sub {
	my ($this) = @_;
	
	my $loader = $this->CreateLoader();
	
	# test the loader to be able to find a desired resource
	assert( defined($loader->template('simple') ) );
	
	# loader should be initialized on demand
	assert( not $loader->isInitialized );
	
	# loader should be able to load a document
	my $doc = $loader->document('simple');
	assert(defined $doc);
	
	assert( $loader->isInitialized );
	assert( $loader->context->stash->get('user') eq 'test_user');
	
	# document should inherit loader's context 
	assert( $doc->context->stash->get('user') eq 'test_user');
	
	# document should not have 'this' template variable
	assert( not $doc->templateVars('this') );
	
	assert( $doc->context != $loader->context); # document should have an own context
};

test TTDocumentTests => sub {
	my ($this) = @_;
	my $loader = $this->CreateLoader();
	
	my $doc = $loader->document('simple');
	
	assert(defined $doc);
	
	assert($doc->nodeName eq 'document');
	assert(not $doc->can('notexists')); # autoloaded property should be ignored
	assert(not defined $doc->notexists); # nonexisting property 
	assert($doc->template->version == 10); # static metadata
	assert($doc->templateVars('notexists') eq ''); #nonexisting template variable
	assert($doc->templateVars('user') eq 'test_user'); # global data
	assert($doc->templateVars('templateVar') eq 'initialized by the constructor'); # defined in CTOR block
	
	my $text = $doc->Render();
	my $expected = read_file($this->GetResourceFile('Resources','TTView.Output','simple.txt'), binmode => ':utf8');
	
	assert($text eq $expected, "Bad Render() output","Got: $text", "Expected: $expected");
	
};

test TTControlTests => sub {
	my ($this) = @_;
	
	my $loader = $this->CreateLoader();
	
	my $doc = $loader->document('simple');
	
	assert(defined $doc);
	
	my $factory = $doc->require('My/Org/Panel');
	
	assert(defined $factory);
	
	
	assert($factory->context->stash != $doc->context->stash);
	
	assert($factory == $doc->require('My/Org/Panel'), "Control should be loaded only once");
	
	my $ctl = $factory->new('information', { visualClass => 'simple' } );
	
	assert(defined $ctl);	
	
	assert($ctl->nodeName eq 'information', "Created control should have a name", "Got: ".$ctl->nodeName, "Expected: information");
	
	assert($ctl->nodeProperty('visualClass') eq 'simple');
	
	assert($factory->instances == 1);
	
	$doc->appendChild($ctl);
	
	my $text = $ctl->Render({ data => ['one','two','hello world']});
	my $expected = read_file($this->GetResourceFile('Resources', 'TTView.Output', 'Panel.txt'), binmode => ':utf8');
	
	assert($text eq $expected, '$ctl->Render(): Bad output', "Got:      $text", "Expected: $expected");
	
};

test TestMemoryLeaks => sub {
	my ($this) = @_;
	
	my $loader = $this->CreateLoader();
	$loader->document('simple'); # force loader initialization
	
	AssertMemoryLeak(sub {		
		my $doc = $loader->document('simple');
	});
		
	AssertMemoryLeak(sub {
		my $doc = $loader->document('simple');
		$doc->Render( { self => $doc } );
	});
	
	$loader->template('My/Org/Panel');
	$loader->template('My/Org/TextPreview');
	AssertMemoryLeak(sub {
		my $doc = $loader->document('simple');
		my $factory = $doc->require('My/Org/Panel');
		my $ctl = $doc->AppendChild($factory->new('information', { visualClass => 'complex' }) );		
	});
	
	$loader->template('complex');
	AssertMemoryLeak(sub {
		my $doc = $loader->document('complex');
		$doc->Render();
	},'dump');
	
};

1;