1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
use Test::More tests => 16;
use Dpkg::IPC;
my $pwd = `pwd`;
chdir "t/workspaces";
# Configure step
spawn(
exec => [ 'dh_auto_configure', '--buildsystem=nodejs_no_lerna' ],
wait_child => 1
);
ok( !-l 'node_modules/comp_one', 'No cmp 1 link' );
ok( !-l 'node_modules/comp_two', 'No cmp 2 link' );
ok( !-l 'node_modules/comp-three', 'No cmp 3 link' );
# Build step
spawn(
exec => [ 'dh_auto_build', '--buildsystem=nodejs_no_lerna' ],
wait_child => 1
);
ok( -e 'comp-one/a', 'build creates comp-one/a' );
unlink 'comp-one/a';
# Test step
spawn(
exec => [ 'dh_auto_test', '--buildsystem=nodejs_no_lerna' ],
wait_child => 1
);
ok( -e 'foo', 'File "foo" created' ) or diag `ls -l`;
unlink('foo');
# Install step
spawn(
exec => [ 'dh_auto_install', '--buildsystem=nodejs_no_lerna' ],
wait_child => 1
);
unlink('comp-one/bar');
foreach (
qw(
debian/foo/usr/share/nodejs/foo/package.json
debian/foo/usr/share/nodejs/foo/index.js
debian/foo/usr/share/nodejs/comp-one/package.json
debian/foo/usr/share/nodejs/comp-one/index.js
)
)
{
ok( -f $_, "$_ installed" );
}
foreach (
qw(
debian/foo/usr/share/nodejs/comp-one/test.js
debian/foo/usr/share/nodejs/comp_two/tests.js
debian/foo/usr/share/nodejs/comp_two/package.json
debian/foo/usr/share/nodejs/comp_two/index.js
debian/foo/usr/share/nodejs/comp-three/index.js
debian/foo/usr/share/nodejs/comp-three/package.json
debian/foo/usr/share/nodejs/comp-three/test.js
)
)
{
ok( !-f $_, "$_ not installed" );
}
spawn(
exec => [ 'dh_auto_clean', '--buildsystem=nodejs_no_lerna' ],
wait_child => 1
);
spawn( exec => ['dh_clean'], wait_child => 1 );
chdir $pwd;
|