#!/usr/bin/perl
use_ok
'OPM::Maker::Command::sopm'
;
my
$dir
= File::Spec->rel2abs( dirname __FILE__ );
my
$json
= File::Spec->catfile(
$dir
,
'Intro.json'
);
my
$sopm
= File::Spec->catfile(
$dir
,
'Intro.sopm'
);
my
@files
= <
$dir
/*.sopm>;
unlink
@files
;
my
@files_check
= <
$dir
/*.sopm>;
ok !
@files_check
;
OPM::Maker::Command::sopm::execute(
undef
, {
config
=>
$json
}, [
$dir
] );
ok -e
$sopm
;
my
$version
=
$OPM::Maker::Command::sopm::VERSION
;
my
$content
=
do
{
local
(
@ARGV
, $/) =
$sopm
; <> };
my
$check
=
qq~<?xml version="1.0" encoding="utf-8" ?>
<otrs_package version="1.0">
<!-- GENERATED WITH OPM::Maker::Command::sopm ($version) -->
<Name>Intro</Name>
<Version>0.0.3</Version>
<Framework>3.0.x</Framework>
<Framework Minimum="3.1.12">3.1.x</Framework>
<Framework Maximum="3.2.12">3.2.x</Framework>
<Framework Minimum="3.3.12" Maximum="3.3.18">3.3.x</Framework>
<Vendor>Perl-Services.de</Vendor>
<Description Lang="en">Test sopm command</Description>
<License>GNU AFFERO GENERAL PUBLIC LICENSE Version 3, November 2007</License>
<Filelist>
<File Permission="644" Location="01_framework.t" />
<File Permission="644" Location="Intro.json" />
</Filelist>
</otrs_package>
~
;
is_string
$content
,
$check
;
done_testing();