zeroclickinfo-goodies/t/MD5.t

184 lines
5.8 KiB
Perl

#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use DDG::Test::Goodie;
zci answer_type => 'md5';
zci is_cached => 1;
ddg_goodie_test(
[qw( DDG::Goodie::MD5)],
'md5 digest this!' => test_zci(
'3838c8fb10a114e6d21203359ef147ad',
structured_answer => {
input => ['digest this!'],
operation => 'MD5 hex hash',
result => '3838c8fb10a114e6d21203359ef147ad'
}
),
'duckduckgo md5' => test_zci(
'96898bb8544fa56b03c08cdc09886c6c',
structured_answer => {
input => ['duckduckgo'],
operation => 'MD5 hex hash',
result => '96898bb8544fa56b03c08cdc09886c6c'
}
),
'md5sum the sum of a string' => test_zci(
'a704c8833f9850cd342ead27207ca1a1',
structured_answer => {
input => ['the sum of a string'],
operation => 'MD5 hex hash',
result => 'a704c8833f9850cd342ead27207ca1a1'
}
),
'md5 of password' => test_zci(
'5f4dcc3b5aa765d61d8327deb882cf99',
structured_answer => {
input => ['password'],
operation => 'MD5 hex hash',
result => '5f4dcc3b5aa765d61d8327deb882cf99'
}
),
'md5sum of "this"' => test_zci(
'9e925e9341b490bfd3b4c4ca3b0c1ef2',
structured_answer => {
input => ['this'],
operation => 'MD5 hex hash',
result => '9e925e9341b490bfd3b4c4ca3b0c1ef2'
}
),
'md5 of "this' => test_zci(
'53d3e72f097a74f6d439fa88b91d5a71',
structured_answer => {
input => ['"this'],
operation => 'MD5 hex hash',
result => '53d3e72f097a74f6d439fa88b91d5a71'
}
),
'md5 hash' => test_zci(
'0800fc577294c34e0b28ad2839435945',
structured_answer => {
input => ['hash'],
operation => 'MD5 hex hash',
result => '0800fc577294c34e0b28ad2839435945'
}
),
'md5 hash ' => test_zci(
'0800fc577294c34e0b28ad2839435945',
structured_answer => {
input => ['hash'],
operation => 'MD5 hex hash',
result => '0800fc577294c34e0b28ad2839435945'
}
),
'md5 hash of' => test_zci(
'8bf8854bebe108183caeb845c7676ae4',
structured_answer => {
input => ['of'],
operation => 'MD5 hex hash',
result => '8bf8854bebe108183caeb845c7676ae4'
}
),
'md5 hash of password ' => test_zci(
'5f4dcc3b5aa765d61d8327deb882cf99',
structured_answer => {
input => ['password'],
operation => 'MD5 hex hash',
result => '5f4dcc3b5aa765d61d8327deb882cf99'
}
),
'md5 base64 hash of duckduckgo' => test_zci(
'lomLuFRPpWsDwIzcCYhsbA==',
structured_answer => {
input => ['duckduckgo'],
operation => 'MD5 base64 hash',
result => 'lomLuFRPpWsDwIzcCYhsbA=='
}
),
'md5 base64 duckduckgo' => test_zci(
'lomLuFRPpWsDwIzcCYhsbA==',
structured_answer => {
input => ['duckduckgo'],
operation => 'MD5 base64 hash',
result => 'lomLuFRPpWsDwIzcCYhsbA=='
}
),
'md5 base64 "duckduckgo"' => test_zci(
'lomLuFRPpWsDwIzcCYhsbA==',
structured_answer => {
input => ['duckduckgo'],
operation => 'MD5 base64 hash',
result => 'lomLuFRPpWsDwIzcCYhsbA=='
}
),
'md5 base64 hex' => test_zci(
'uNG0Pq5zWHula671dHCeyw==',
structured_answer => {
input => ['hex'],
operation => 'MD5 base64 hash',
result => 'uNG0Pq5zWHula671dHCeyw=='
}
),
'md5 hex duckduckgo' => test_zci(
'96898bb8544fa56b03c08cdc09886c6c',
structured_answer => {
input => ['duckduckgo'],
operation => 'MD5 hex hash',
result => '96898bb8544fa56b03c08cdc09886c6c'
}
),
'md5 hex "duckduckgo"' => test_zci(
'96898bb8544fa56b03c08cdc09886c6c',
structured_answer => {
input => ['duckduckgo'],
operation => 'MD5 hex hash',
result => '96898bb8544fa56b03c08cdc09886c6c'
}
),
'md5 hex base64' => test_zci(
'95a1446a7120e4af5c0c8878abb7e6d2',
structured_answer => {
input => ['base64'],
operation => 'MD5 hex hash',
result => '95a1446a7120e4af5c0c8878abb7e6d2'
}
),
'md5 base64 this string' => test_zci(
'xzix7ki/mKlygQ8V94J05Q==',
structured_answer => {
input => ['this string'],
operation => 'MD5 base64 hash',
result => 'xzix7ki/mKlygQ8V94J05Q=='
}
),
'md5sum <script>alert( "hello" )<script>' => test_zci(
'57757f49c3ceb9d1b65c3b5ca0b5bd2d',
structured_answer => {
input => ['&lt;script&gt;alert( &quot;hello&quot; )&lt;script&gt;'],
operation => 'MD5 hex hash',
result => '57757f49c3ceb9d1b65c3b5ca0b5bd2d'
}
),
'md5sum script>ALERT hello script>' => test_zci(
'a5e4903040077d90e9dd32da99d01b91',
structured_answer => {
input => ['script&gt;ALERT hello script&gt;'],
operation => 'MD5 hex hash',
result => 'a5e4903040077d90e9dd32da99d01b91'
}
),
'md5sum & / " \' ; < > ' => test_zci(
'48ff1acf53de360edc32cabd5b30e7b4',
structured_answer => {
input => ['&amp; / &quot; &#39; ; &lt; &gt;'],
operation => 'MD5 hex hash',
result => '48ff1acf53de360edc32cabd5b30e7b4'
}
),
);
done_testing;