File: ffi_build.t

package info (click to toggle)
libffi-platypus-perl 2.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,860 kB
  • sloc: perl: 7,388; ansic: 6,862; cpp: 53; sh: 19; makefile: 14
file content (248 lines) | stat: -rw-r--r-- 5,133 bytes parent folder | download | duplicates (2)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
use Test2::V0 -no_srand => 1;
use lib 't/lib';
use Test::Cleanup;
use Test::Platypus;
use FFI::Build;
use FFI::Build::Platform;
use FFI::Temp;
use Capture::Tiny qw( capture_merged );
use File::Spec;
use File::Path qw( rmtree );
use File::Glob qw( bsd_glob );

subtest 'basic' => sub {

  my $build = FFI::Build->new('foo');
  isa_ok $build, 'FFI::Build';
  like $build->file->path, qr/foo/, 'foo is somewhere in the native name for the lib';
  note "lib.file.path = @{[ $build->file->path ]}";

  ok(-d $build->file->dirname, "dir is a dir" );
  isa_ok $build->platform, 'FFI::Build::Platform';

  $build->source('corpus/ffi_build/source/*.c');

  my($cfile) = $build->source;
  isa_ok $cfile, 'FFI::Build::File::C';

};

subtest 'file classes' => sub {
  {
    package FFI::Build::File::Foo1;
    use parent qw( FFI::Build::File::Base );
    $INC{'FFI/Build/File/Foo1.pm'} = __FILE__;
  }

  {
    package FFI::Build::File::Foo2;
    use parent qw( FFI::Build::File::Base );
  }

  my @list = FFI::Build::_file_classes();
  ok( @list > 0, "at least one" );
  note "class = $_" for @list;
};

subtest 'build' => sub {

  foreach my $type (qw( name object array ))
  {

    subtest $type => sub {

      my $tempdir = FFI::Temp->newdir;

      my $build = FFI::Build->new('foo',
        dir       => $tempdir,
        buildname => "tmpbuild.tmpbuild.$$.@{[ time ]}",
        verbose   => 2,
      );

      my @source;

      if($type eq 'name')
      {
        @source = 'corpus/ffi_build/project1/*.c';
      }
      elsif($type eq 'object')
      {
        @source = map { FFI::Build::File::C->new($_) } bsd_glob('corpus/ffi_build/project1/*.c');
      }
      elsif($type eq 'array')
      {
        @source = map { [ C => $_ ] } bsd_glob('corpus/ffi_build/project1/*.c');
      }

      $build->source(@source);
      note "$_" for $build->source;

      my($out, $dll, $error) = capture_merged {
        my $dll = eval { $build->build };
        ($dll, $@);
      };

      ok $error eq '', 'no error';

      if($error)
      {
        diag $out;
        return;
      }
      else
      {
        note $out;
      }

      platypus 2 => sub {
        my $ffi = shift;
        $ffi->lib($dll);

        is(
          $ffi->function(foo1 => [] => 'int')->call,
          42,
        );

        is(
          $ffi->function(foo2 => [] => 'string')->call,
          "42",
        );
      };

      $build->clean;

      cleanup(
        $build->file->dirname,
        File::Spec->catdir(qw( corpus ffi_build project1 ), $build->buildname)
      );
    };
  }

};

subtest 'build c++' => sub {

  skip_all 'Test requires C++ compiler'
    unless eval { FFI::Build::Platform->which(FFI::Build::Platform->cxx) };

  my $tempdir = FFI::Temp->newdir( TEMPLATE => "tmpbuild.XXXXXX" );

  my $build = FFI::Build->new('foo',
    dir       => $tempdir,
    buildname => "tmpbuild.$$.@{[ time ]}",,
    verbose   => 2,
  );

  $build->source('corpus/ffi_build/project-cxx/*.cxx');
  $build->source('corpus/ffi_build/project-cxx/*.cpp');
  note "$_" for $build->source;

  my($out, $dll, $error) = capture_merged {
    my $dll = eval { $build->build };
    ($dll, $@);
  };

  ok $error eq '', 'no error';

  if($error)
  {
    diag $out;
    return;
  }
  else
  {
    note $out;
  }

  platypus 2 => sub {
    my $ffi = shift;
    $ffi->lib($dll);

    my $foo1 = eval { $ffi->function( foo1 => [] => 'int'    ) };
    my $foo2 = eval { $ffi->function( foo2 => [] => 'string' ) };

    ok defined $foo1, "foo1 found";
    ok defined $foo2, "foo2 found";


    SKIP: {
      if(defined $foo1 && defined $foo2)
      {
        is(
          $ffi->function(foo1 => [] => 'int')->call,
          42,
        );
        is(
          $ffi->function(foo2 => [] => 'string')->call,
          "42",
        );
      }
      else
      {
        diag "[build log follows]\n";
        diag $out;
        skip "foo1 or foo2 not found", 2 unless defined $foo1 && defined $foo2;
      }
    }
  };

  $build->clean;

  cleanup(
    $build->file->dirname,
    File::Spec->catdir(qw( corpus ffi_build project-cxx ), $build->buildname)
  );

};

subtest 'alien' => sub {

  skip_all 'Test requires Acme::Alien::DontPanic 1.03'
    unless eval { require Acme::Alien::DontPanic; Acme::Alien::DontPanic->VERSION("1.03") };


  my $tempdir = FFI::Temp->newdir( TEMPLATE => "tmpbuild.XXXXXX" );
  my $build = FFI::Build->new('bar',
    dir       => $tempdir,
    buildname => "tmpbuild.$$.@{[ time ]}",
    verbose   => 2,
    alien     => ['Acme::Alien::DontPanic'],
  );

  $build->source('corpus/ffi_build/project2/*.c');
  note "$_" for $build->source;

  my($out, $dll, $error) = capture_merged {
    my $dll = eval { $build->build };
    ($dll, $@);
  };

  ok $error eq '', 'no error';

  if($error)
  {
    diag $out;
    return;
  }
  else
  {
    note $out;
  }

  platypus 1 => sub {
    my $ffi = shift;
    $ffi->lib($dll);

    is(
      $ffi->function(myanswer => [] => 'int')->call,
      42,
    );
  };

  cleanup(
    $build->file->dirname,
    File::Spec->catdir(qw( corpus ffi_build project2 ), $build->buildname)
  );
};

done_testing;