xref: /openbsd/gnu/usr.bin/perl/t/lib/cygwin.t (revision 891d7ab6)
1#!perl
2
3BEGIN {
4    chdir 't' if -d 't';
5    @INC = ('../lib');
6    unless ($^O eq "cygwin") {
7	print "1..0 # skipped: cygwin specific test\n";
8	exit 0;
9    }
10    require './test.pl';
11}
12
13plan(tests => 16);
14
15is(Cygwin::winpid_to_pid(Cygwin::pid_to_winpid($$)), $$,
16   "perl pid translates to itself");
17
18my $parent = getppid;
19SKIP: {
20    skip "test not run from cygwin process", 1 if $parent <= 1;
21    is(Cygwin::winpid_to_pid(Cygwin::pid_to_winpid($parent)), $parent,
22       "parent pid translates to itself");
23}
24
25my $catpid = open my $cat, "|cat" or die "Couldn't cat: $!";
26open my $ps, "ps|" or die "Couldn't do ps: $!";
27my ($catwinpid) = map /^.\s+$catpid\s+\d+\s+\d+\s+(\d+)/, <$ps>;
28close($ps);
29
30is(Cygwin::winpid_to_pid($catwinpid), $catpid, "winpid to pid");
31is(Cygwin::pid_to_winpid($catpid), $catwinpid, "pid to winpid");
32close($cat);
33
34is(Cygwin::win_to_posix_path("t\\lib"), "t/lib", "win to posix path: t/lib");
35is(Cygwin::posix_to_win_path("t/lib"), "t\\lib", "posix to win path: t\\lib");
36
37use Win32;
38use Cwd;
39my $pwd = getcwd();
40chdir("/");
41my $winpath = Win32::GetCwd();
42is(Cygwin::posix_to_win_path("/", 1), $winpath, "posix to absolute win path");
43chdir($pwd);
44is(Cygwin::win_to_posix_path($winpath, 1), "/", "win to absolute posix path");
45
46my $mount = join '', `/usr/bin/mount`;
47$mount =~ m|on /usr/bin type .+ \((\w+)[,\)]|m;
48my $binmode = $1 =~ /binmode|binary/;
49is(Cygwin::is_binmount("/"),  $binmode ? 1 : '', "check / for binmount");
50
51my $rootmnt = Cygwin::mount_flags("/");
52ok($binmode ? ($rootmnt =~ /,(binmode|binary)/) : ($rootmnt =~ /,textmode/), "check / mount_flags");
53is(Cygwin::mount_flags("/cygdrive") =~ /,cygdrive/,  1, "check cygdrive mount_flags");
54
55# Cygdrive mount prefix
56my @flags = split(/,/, Cygwin::mount_flags('/cygdrive'));
57my $prefix = pop(@flags);
58ok($prefix, "cygdrive mount prefix = " . (($prefix) ? $prefix : '<none>'));
59chomp(my $prefix2 = `df | grep -i '^c: ' | cut -d% -f2 | xargs`);
60$prefix2 =~ s/\/c$//i;
61if (! $prefix2) {
62    $prefix2 = '/';
63}
64is($prefix, $prefix2, 'cygdrive mount prefix');
65
66my @mnttbl = Cygwin::mount_table();
67ok(@mnttbl > 0, "non empty mount_table");
68for $i (@mnttbl) {
69  if ($i->[0] eq '/') {
70    is($i->[2].",".$i->[3], $rootmnt, "same root mount flags");
71    last;
72  }
73}
74
75ok(Cwd->cwd(), "bug#38628 legacy");
76