App-Sandy

 view release on metacpan or  search on metacpan

t/lib/TestsFor/App/Sandy/Seq.pm  view on Meta::CPAN

package TestsFor::App::Sandy::Seq;
# ABSTRACT: Tests for 'App::Sandy::Seq' class

use App::Sandy::Base 'test';
use App::Sandy::RNG;
use base 'TestsFor';
use autodie;

use constant {
	SEQ_SYS       => 'poisson',
	QUALITY_SIZE  => 10,
	SEED          => 17
};

sub startup : Tests(startup) {
	my $test = shift;
	$test->SUPER::startup;
	my $class = ref $test;
	$class->mk_classdata('default_fastq');
	$class->mk_classdata('default_attr');
	$class->mk_classdata('seq');
	$class->mk_classdata('seq_len');
	$class->mk_classdata('rng');
}

sub setup : Tests(setup) {
	my $test = shift;
	my %child_arg = @_;
	$test->SUPER::setup;

	my %default_attr = (
		quality_profile  => SEQ_SYS,
		read_mean        => QUALITY_SIZE,
		read_stdd        => 0,
		sequencing_error => 0.1,
		template_id      => 'ponga_header',
		format           => 'fastq',
		%child_arg
	);

	$test->default_attr(\%default_attr);
	$test->default_fastq($test->class_to_test->new(%default_attr));

	my $seq = 'TGACCCGCTAACCTCAGTTCTGCAGCAGTAACAACTGCCGTATCTGGACTTTCCTAATACCTCGCATAGTCCGTCCCCTCGCGCGGCAAGAGGTGCGGCG';
	$test->seq($seq);
	$test->seq_len(length $seq);
	$test->rng(App::Sandy::RNG->new(SEED));
}

sub constructor : Tests(12) {
	my $test = shift;

	my $class = $test->class_to_test;
	my $fastq = $test->default_fastq;
	my %default_attr = %{ $test->default_attr };

	while (my ($attr, $value) = each %default_attr) {
		can_ok $fastq, $attr;
		is $fastq->$attr, lc $value, "The value for $attr shold be correct";
	}
}

sub fastq_template : Tests(1) {
	my $test = shift;

	my $class = $test->class_to_test;
	my $fastq = $test->default_fastq;

	my $header = "ponga_header";
	my $seq = "ATCGATCGAT";
	my $qual = '!!!!!!!!!!';

	my $quality_size = QUALITY_SIZE;
	my $rg = "\@${header}\n${seq}\n\+\n${qual}\n";
	my $entry_ref = $fastq->_gen_seq(\$header, \$seq, \$qual);
	ok $$entry_ref eq $rg,
		"'fastq' should return an entry in fastq format";
}



( run in 0.816 second using v1.01-cache-2.11-cpan-5a3173703d6 )