3 #==============================================================================
5 # File ID: 53506c76-23d9-11e9-a4b6-4f45262dc9b5
7 # Test suite for ydid(1).
10 # ©opyleft 2019– Øyvind A. Holm <sunny@sunbase.org>
11 # License: GNU General Public License version 2 or later, see end of file for
13 #==============================================================================
19 use Test
::More
qw{no_plan
};
28 our $CMD = "../$CMDB";
42 $progname =~ s/^.*\/(.*?)$/$1/;
43 our $VERSION = '0.0.0';
46 'go1' => "google.com/url*url=*",
47 'tw1' => "twitter.com/*/status/*",
48 'yt1' => "youtube.com/watch?v=*",
49 'yt2' => "youtu.be/*",
52 my %descriptions = ();
54 Getopt
::Long
::Configure
('bundling');
57 'all|a' => \
$Opt{'all'},
58 'help|h' => \
$Opt{'help'},
59 'quiet|q+' => \
$Opt{'quiet'},
60 'todo|t' => \
$Opt{'todo'},
61 'verbose|v+' => \
$Opt{'verbose'},
62 'version' => \
$Opt{'version'},
64 ) || die("$progname: Option error. Use -h for help.\n");
66 $Opt{'verbose'} -= $Opt{'quiet'};
67 $Opt{'help'} && usage
(0);
68 if ($Opt{'version'}) {
78 diag
(sprintf('========== Executing %s v%s ==========',
79 $progname, $VERSION));
81 if ($Opt{'todo'} && !$Opt{'all'}) {
85 test_standard_options
();
87 test_create_url_option
();
92 if ($Opt{'all'} || $Opt{'todo'}) {
93 diag
('Running TODO tests...');
96 # Insert TODO tests here.
100 diag
('Testing finished.');
105 sub test_standard_options
{
106 diag
('Testing -h (--help) option...');
108 '/ Show this help/i',
111 'Option -h prints help screen');
113 diag
('Testing -v (--verbose) option...');
115 '/^\n\S+ \d+\.\d+\.\d+/s',
118 'Option -v with -h returns version number and help screen');
120 diag
('Testing --version option...');
121 likecmd
("$CMD --version",
122 '/^\S+ \d+\.\d+\.\d+/',
125 'Option --version returns version number');
129 sub test_executable
{
133 diag
("Executing test_executable()");
136 "$CMDB: No URL specified\n",
139 testcmd
("$CMD https://doesntexist.invalid",
141 "$CMDB: Unknown URL format\n",
143 'Unknown URL format');
145 test_yt_url
($id, $id, $deburl{'yt3'}, "Plain id");
146 testcmd
("$CMD " . "a" x
10,
148 "$CMDB: Unknown URL format\n",
150 'Plain id, one character too short');
151 testcmd
("$CMD " . "a" x
12,
153 "$CMDB: Unknown URL format\n",
155 'Plain id, one character too long');
156 testcmd
("$CMD aaaaa,aaaaa",
158 "$CMDB: Invalid Youtube ID\n",
160 'Plain id with invalid character');
162 for my $p ("https://", "http://", "") {
163 diag
("Use \"$p\" prefix");
164 diag
($deburl{'yt1'});
166 for my $w ("www.", "m.", "") {
167 testcmd
("$CMD $p${w}youtube.com/watch?v=",
169 "$CMDB: Invalid URL\n",
171 "v= has no id, $p$w*");
173 testcmd
("$CMD $p${w}youtube.com/watch?v=abcde,ghijk",
175 "$CMDB: Invalid URL\n",
177 "v= contains invalid character, $p$w*");
178 $url = "$p${w}youtube.com/watch?v=$id";
180 test_yt_url
($id, $url, $deburl{'yt1'}, $url);
181 test_yt_url
($id, "$url&t=0s", $deburl{'yt1'},
183 $url = "$p${w}youtube.com/watch?t=0s&v=$id";
185 test_yt_url
($id, $url, $deburl{'yt1'}, $url);
186 test_yt_url
($id, "$url&abc=def", $deburl{'yt1'},
189 diag
($deburl{'yt2'});
190 testcmd
("$CMD $p${w}youtu\.be/",
192 "$CMDB: Invalid URL\n",
194 "Missing id in $deburl{'yt2'}, $p$w*");
196 testcmd
("$CMD $p${w}youtu\.be/abcde,ghijk",
198 "$CMDB: Invalid URL\n",
200 "Invalid character in $deburl{'yt2'}, $p$w*");
202 $url = "$p${w}youtu.be/$id";
204 test_yt_url
($id, $url, $deburl{'yt2'}, $url);
205 test_yt_url
($id, "$url&t=0s", $deburl{'yt2'}, "$url&t=0s");
208 my $twid = "1234567890123456789";
209 my $twname = "example";
210 for my $w ("www.", "m.", "") {
211 $url = "$p${w}twitter.com/$twname/status/$twid";
212 test_yt_url
($twid, $url, $deburl{'tw1'}, $url);
213 test_yt_url
($twid, "$url?abc=def", $deburl{'tw1'},
215 $url = "$p${w}twitter.com/$twname/status/";
218 "$CMDB: Unknown URL format\n",
220 "Missing Twitter ID, $p$w*");
221 $url = "$p${w}twitter.com/$twname/status/abc";
224 "$CMDB: Unknown URL format\n",
226 "Non-digit in Twitter ID, $p$w*");
229 # Google URL, gzip + base64:
230 # H4sIAAAAAAACAx3OzWrCQBQF4H3fI3dXQxMFFS5l1ISogRiKbbaTyTBj1E4zv
231 # +jTmxTO6nDgfNLaP7OO4xDCTCglbnzG1D12+vZpKFrQzGIPAwI3mqEBo5xmHA
232 # NvgXX4AYx2qHsKjo7DJXjeYULl+ZiFC5sPfJEcWkFkcxn25lh8iXKzEvVjew2
233 # kUNmWnOtNDeMXyokRpSRK8jET5qGcde2/ZmqoZTJKcx+lu6fdZ0rketXPwRmB
234 # pPLfNKRs8TyUp6b67Ypd48sf8+6b6u0Fo5rSbeAAAAA=
235 my $goid = "ztIEogFr9j4";
236 for my $w ("www.", "m.", "") {
237 my $url = "$p${w}google.com/url?sa=t" .
245 "&ved=2ahUKEwic4qe52JbgAhXiqIsKHSgLB9gQyCk" .
247 "&url=https%3A%2F%2Fwww.youtube.com%2F" .
248 "watch%3Fv%3DztIEogFr9j4" .
249 "&usg=AOvVaw3c5zJLPXOndHDXvLWs-vXO";
250 testcmd
("$CMD -vv '$url'",
252 "$CMDB: url = \"$url\"\n" .
253 "$CMDB: Found $deburl{'go1'}\n" .
255 "\"https://www.youtube.com/watch?" .
257 "$CMDB: Found $deburl{'yt1'}\n",
259 "$p${w}google.com url to Youtube video");
262 $url =~ s/$goid/$egoid/;
263 testcmd
("$CMD -vv '$url'",
265 "$CMDB: url = \"$url\"\n" .
266 "$CMDB: Found $deburl{'go1'}\n" .
268 "\"https://www.youtube.com/watch?" .
270 "$CMDB: Found $deburl{'yt1'}\n" .
271 "$CMDB: Invalid URL\n",
273 "$p${w}google.com url has invalid char " .
277 $url = "$p${w}google.com/url?sa=t&rct=j&" .
278 "&url=https%3A%2F%2Ftwitter.com%2Fabc%2F" .
279 "status%2F$twid%3Flang%3Den";
280 testcmd
("$CMD -vv '$url'",
282 "$CMDB: url = \"$url\"\n" .
283 "$CMDB: Found $deburl{'go1'}\n" .
285 "\"https://twitter.com/abc/status/$twid" .
287 "$CMDB: Found $deburl{'tw1'}\n",
289 "$p${w}google.com url with twitter url");
294 sub test_create_url_option
{
295 my $id = "ztIEogFr9j4";
296 my $google_url = "https://google.com/url?sa=t" .
298 "&url=https%3A%2F%2Fwww.youtube.com%2F" .
301 my $url_yt1 = "https://www.youtube.com/watch?v=$id";
302 my $url_yt2 = "https://youtu.be/$id";
304 for my $o ("-c", "--create-url") {
305 test_c_url
($o, $url_yt1, $url_yt1, $id, $deburl{'yt1'});
306 test_c_url
($o, $url_yt2, $url_yt1, $id, $deburl{'yt2'});
307 test_c_url
($o, $id, $url_yt1, $id, $deburl{'yt3'});
308 test_c_url
($o, $google_url, $url_yt1, $id, $deburl{'go1'});
312 my $gurl = $google_url;
313 $gurl =~ s/$id/$eid/;
314 testcmd
("$CMD -vv $o '$gurl'",
316 "$CMDB: url = \"$gurl\"\n" .
317 "$CMDB: Found $deburl{'go1'}\n" .
319 "\"https://www.youtube.com/watch?" .
321 "$CMDB: Found $deburl{'yt1'}\n" .
322 "$CMDB: Invalid URL\n",
324 "Invalid char in google url, $o");
326 for my $p ("https://", "http://", "") {
327 for my $w ("www.", "m.", "") {
328 my $id = "1234567890";
329 my $user = "example";
330 my $genurl = "https://twitter.com/$user/" .
332 my $url = "$p${w}twitter.com/$user/" .
336 test_c_url
($o, $url, $genurl, $id,
338 $url .= "?abc=def&jada=masa";
346 my ($o, $arg, $url, $id, $deburl) = @_;
347 my $debtxt = "$CMDB: url = \"$arg\"\n" .
348 "$CMDB: Found $deburl\n";
350 if ($deburl eq $deburl{'go1'}) {
351 $debtxt .= "ydid: url = \"https://www.youtube.com/" .
353 "ydid: Found $deburl{'yt1'}\n";
356 testcmd
("$CMD -vv $o '$arg'", "$url\n", $debtxt, 0, "$o '$arg'");
360 my ($id, $url, $deburl, $desc) = @_;
362 testcmd
("$CMD -vv '$url'",
364 "$CMDB: url = \"$url\"\n" .
365 "$CMDB: Found $deburl\n",
371 my ($Cmd, $Exp_stdout, $Exp_stderr, $Exp_retval, $Desc) = @_;
372 defined($descriptions{$Desc}) &&
373 BAIL_OUT
("testcmd(): '$Desc' description is used twice");
374 $descriptions{$Desc} = 1;
376 my $cmd_outp_str = $Opt{'verbose'} >= 1 ?
"\"$Cmd\" - " : '';
377 my $Txt = join('', $cmd_outp_str, defined($Desc) ?
$Desc : '');
378 my $TMP_STDERR = "$CMDB-stderr.tmp";
381 if (defined($Exp_stderr)) {
382 $stderr_cmd = " 2>$TMP_STDERR";
384 $retval &= is
(`$Cmd$stderr_cmd`, $Exp_stdout, "$Txt (stdout)");
386 if (defined($Exp_stderr)) {
387 $retval &= is
(file_data
($TMP_STDERR),
388 $Exp_stderr, "$Txt (stderr)");
391 diag
("Warning: stderr not defined for '$Txt'");
393 $retval &= is
($ret_val >> 8, $Exp_retval, "$Txt (retval)");
399 my ($Cmd, $Exp_stdout, $Exp_stderr, $Exp_retval, $Desc) = @_;
400 defined($descriptions{$Desc}) &&
401 BAIL_OUT
("likecmd(): '$Desc' description is used twice");
402 $descriptions{$Desc} = 1;
404 my $cmd_outp_str = $Opt{'verbose'} >= 1 ?
"\"$Cmd\" - " : '';
405 my $Txt = join('', $cmd_outp_str, defined($Desc) ?
$Desc : '');
406 my $TMP_STDERR = "$CMDB-stderr.tmp";
409 if (defined($Exp_stderr)) {
410 $stderr_cmd = " 2>$TMP_STDERR";
412 $retval &= like
(`$Cmd$stderr_cmd`, $Exp_stdout, "$Txt (stdout)");
414 if (defined($Exp_stderr)) {
415 $retval &= like
(file_data
($TMP_STDERR),
416 $Exp_stderr, "$Txt (stderr)");
419 diag
("Warning: stderr not defined for '$Txt'");
421 $retval &= is
($ret_val >> 8, $Exp_retval, "$Txt (retval)");
427 # Return file content as a string
431 open(my $fp, '<', $File) or return undef;
439 # Create new file and fill it with data
440 my ($file, $text) = @_;
443 open(my $fp, ">$file") or return 0;
446 $retval = is
(file_data
($file), $text,
447 "$file was successfully created");
449 return $retval; # 0 if error, 1 if ok
453 # Print program version
454 print("$progname $VERSION\n");
459 # Send the help message to stdout
462 if ($Opt{'verbose'}) {
468 Usage: $progname [options]
470 Contains tests for the $CMDB(1) program.
475 Run all tests, also TODOs.
479 Be more quiet. Can be repeated to increase silence.
481 Run only the TODO tests.
483 Increase level of verbosity. Can be repeated.
485 Print version information.
492 # Print a status message to stderr based on verbosity level
493 my ($verbose_level, $Txt) = @_;
495 $verbose_level > $Opt{'verbose'} && return;
496 print(STDERR
"$progname: $Txt\n");
502 # This program is free software; you can redistribute it and/or modify it under
503 # the terms of the GNU General Public License as published by the Free Software
504 # Foundation; either version 2 of the License, or (at your option) any later
507 # This program is distributed in the hope that it will be useful, but WITHOUT
508 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
509 # FOR A PARTICULAR PURPOSE.
510 # See the GNU General Public License for more details.
512 # You should have received a copy of the GNU General Public License along with
514 # If not, see L<http://www.gnu.org/licenses/>.
516 # vim: set ts=8 sw=8 sts=8 noet fo+=w tw=79 fenc=UTF-8 :