File: 018_list_dir_advancedmatch.t

package info (click to toggle)
libfile-util-perl 4.201720-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 840 kB
  • sloc: perl: 4,353; makefile: 2
file content (251 lines) | stat: -rw-r--r-- 6,140 bytes parent folder | download | duplicates (4)
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
249
250
251

use strict;
use warnings;

use Test::More tests => 19;
use Test::NoWarnings;

use File::Temp qw( tempdir );

use lib './lib';
use File::Util qw( SL NL strip_path );

# one recognized instantiation setting
my $ftl = File::Util->new( );

my $tempdir = tempdir( CLEANUP => 1 );

setup_test_tree();

is_deeply [
   map { strip_path( $_ ) } $ftl->list_dir(
      $tempdir => {
         rpattern    => '\.sh$|\.js$',
         files_only  => 1,
         recurse     => 1,
      }
   )
], [ qw( e.sh n.js ) ], 'legacy recursive file match (rpattern="...")';

is_deeply [
   map { strip_path( $_ ) } $ftl->list_dir(
      $tempdir => {
         files_match => qr/\.sh$|\.js$/,
         files_only  => 1,
         recurse     => 1,
      }
   )
], [ qw( e.sh n.js ) ], 'recursive files_match';

is_deeply [
   map { strip_path( $_ ) } $ftl->list_dir(
      $tempdir => {
         files_match => { or => [ qr/\.sh$/, qr/\.js$/ ] },
         files_only  => 1,
         recurse     => 1,
      }
   )
], [ qw( e.sh n.js ) ], 'recursive OR files_match';

is_deeply [
   map { strip_path( $_ ) } $ftl->list_dir(
      $tempdir => {
         files_match => { and => [ qr/\.sh$/, qr/[[:alpha:]]\.\w\w/ ] },
         files_only  => 1,
         recurse     => 1,
      }
   )
], [ qw( e.sh ) ], 'recursive AND files_match';

is_deeply [
   map { strip_path( $_ ) } $ftl->list_dir(
      $tempdir => {
         dirs_match  => qr/[xyz](?:foo|bar)/,
         dirs_only   => 1,
         recurse     => 1,
      }
   )
], [ qw( xfoo zbar ) ], 'recursive dirs_match';

is_deeply [
   map { strip_path( $_ ) } $ftl->list_dir(
      $tempdir => {
         dirs_match  => qr/[xyz](?:foo|bar)/,
         files_match => qr/^[ijk]/,
         recurse     => 1,
      }
   )
], [ qw( xfoo zbar i.jpg j.xls k.ppt ) ],
   'recursive dirs_match + files_match';

is_deeply [
   map { strip_path( $_ ) } $ftl->list_dir(
      $tempdir => {
         dirs_match  => { or  => [ qr/foo$/,  qr/^zba/  ] },
         files_match => { and => [ qr/^[ab]/, qr/\.\w+/ ] },
         recurse     => 1,
      }
   )
], [ qw( xfoo zbar a.txt b.log ) ],
   'recursive OR dirs_match + AND files_match';

is_deeply [
   map { strip_path( $_ ) } $ftl->list_dir(
      $tempdir => {
         dirs_match  => { or  => [ qr/^.foo/, qr/ar$/   ] },
         files_match => { and => [ qr/^[ij]/, qr/\.\w+/ ] },
         recurse     => 1,
         files_only  => 1,
      }
   )
], [ qw( i.jpg j.xls ) ],
   'a different recursive OR dirs_match + AND files_match';

is_deeply [
   map { strip_path( $_ ) } $ftl->list_dir(
      $tempdir => {
         parent_matches => { and => [ qr/^.b/, qr/ar$/   ] },
         files_match    => { and => [ qr/^[ij]/, qr/\.\w{3}/ ] },
         recurse        => 1,
         files_only     => 1,
      }
   )
], [ qw( i.jpg j.xls ) ],
   'recursive AND parent_matches + AND files_match';

is_deeply [
   map { strip_path( $_ ) } $ftl->list_dir(
      $tempdir => {
         parent_matches => qr/^[[:alnum:]\-_\.]+$/,
         files_match    => qr/^[def]/,
         recurse        => 1,
         files_only     => 1,
      }
   )
], [ qw( d.bat e.sh f.conf ) ],
   'recursive single arg parent_matches + single arg files_match';

is_deeply [
   map { strip_path( $_ ) } $ftl->list_dir(
      $tempdir => {
         parent_matches => qr/^.bar$/,
         files_match  => qr/^[jkl]/,
         recurse        => 1,
         files_only     => 1,
      }
   )
], [ qw( j.xls k.ppt l.scr ) ],
   'a different recursive single arg parent_matches + single arg files_match';

is_deeply [
   map { strip_path( $_ ) } $ftl->list_dir(
      $tempdir => {
         parent_matches => qr/^.bar$/,
         rpattern       => '^[jk]',
         recurse        => 1,
         files_only     => 1,
      }
   )
], [ qw( j.xls k.ppt ) ],
   'recursive single arg parent_matches + legacy files match (rpattern="...")';

is_deeply [
   map { strip_path( $_ ) } $ftl->list_dir(
      $tempdir => {
         parent_matches => { or => [ qr/^[[:alnum:]\-_\.]+$/, qr/bar$/ ] },
         files_match  => qr/^[ak]/,
         recurse        => 1,
         files_only     => 1,
      }
   )
], [ qw( a.txt k.ppt ) ],
   'recursive OR parent_matches + single arg files_match';

is_deeply [
   map { strip_path( $_ ) } $ftl->list_dir(
      $tempdir => {
         path_matches => { and => [ qr/foo/, qr/bar$/ ] },
         recurse      => 1,
      }
   )
], [ qw( zbar i.jpg j.xls k.ppt l.scr m.html n.js o.css p.avi ) ],
   'recursive AND path_matches';

is_deeply [
   map { strip_path( $_ ) } $ftl->list_dir(
      $tempdir => {
         path_matches => { or => [ qr/foo$/, qr/bar$/ ] },
         recurse      => 1,
      }
   )
], [ qw( xfoo zbar i.jpg j.xls k.ppt l.scr m.html n.js o.css p.avi ) ],
   'recursive OR path_matches';

is_deeply [
   map { strip_path( $_ ) } $ftl->list_dir(
      $tempdir => {
         path_matches => { and => [ qr/foo$/, qr/bar$/ ] },
         recurse      => 1,
      }
   )
], [ ],
   'recursive AND path_matches that should return an empty list';

is_deeply [
   map { strip_path( $_ ) } $ftl->list_dir(
      $tempdir => {
         path_matches => { or => [ qr/foo$/, qr/bar$/ ] },
         dirs_only    => 1,
         recurse      => 1,
      }
   )
], [ qw( xfoo zbar ) ],
   'recursive OR path_matches returning only directories';

is_deeply [
   map { strip_path( $_ ) } $ftl->list_dir(
      $tempdir => {
         path_matches => qr/bar$/,
         dirs_only    => 1,
         recurse      => 1,
      }
   )
], [ qw( zbar ) ],
   'recursive single arg path_matches returning only directories';

exit;

sub setup_test_tree {

   my @test_files  = qw(
      a.txt   b.log
      c.ini   d.bat
      e.sh    f.conf
      g.bin   h.rc
   );

   for my $tfile ( @test_files )
   {
      $ftl->touch( $tempdir . SL . $tfile );
   }

   my $deeper = $tempdir . SL . 'xfoo' . SL . 'zbar';

   $ftl->make_dir( $deeper );

   @test_files = qw(
      i.jpg   j.xls
      k.ppt   l.scr
      m.html  n.js
      o.css   p.avi
   );

   for my $tfile ( @test_files )
   {
      $ftl->write_file( { file => $deeper . SL . $tfile, content => rand } );
   }

   return;
}