The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/perl

use strict;
BEGIN {
	$|  = 1;
	$^W = 1;
}

use Test::More;
use LWP::Online ':skip_all';
BEGIN {
	unless ( $^O eq 'MSWin32' ) {
		plan( skip_all => 'Not on Win32' );
		exit(0);
	}
	unless ( $ENV{RELEASE_TESTING} ) {
		plan( skip_all => 'No RELEASE_TESTING: Skipping very long test' );
		exit(0);
	}
	plan( tests => 7 );
}

use File::Spec::Functions ':ALL';
use Perl::Dist::Strawberry ();
use URI::file              ();
use t::lib::Test           ();

my $output = rel2abs(catdir( 't', 'tmp7' ));
t::lib::Test::remake_path( $output );





#####################################################################
# Constructor Test

SCOPE: {
	my $machine = Perl::Dist::Strawberry->default_machine(
		common => [ t::lib::Test->paths(6) ],
		output => $output,
	);
	isa_ok( $machine, 'Perl::Dist::Machine' );

	# Check the generated dists
	while ( my $dist = $machine->next ) {
		unless ( $dist->zip or $dist->exe ) {
			next;
		}

		# Check that the Strawberry URLs all build
		diag( $dist->output_base_filename );
		ok( $dist->strawberry_url, '->strawberry_url ok' );
	}
}





#####################################################################
# Execution Test

SCOPE: {
	my $machine = Perl::Dist::Strawberry->default_machine(
		common => [ t::lib::Test->paths(6) ],
		output => $output,
	);
	isa_ok( $machine, 'Perl::Dist::Machine' );

	# Run the machine and generate the dists
	ok( $machine->run, '->run completed' );
}