• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..24-Sep-2010-

READMEH A D13-Aug-2010724 3420

driverH A D19-Sep-20104.3 KiB241126

getpluginsH A D20-Aug-20101.5 KiB10847

getstatsH A D20-Aug-20101.5 KiB10540

test.blacklist.spamH A D13-Aug-201073 43

test.bogus-ip.spamH A D13-Aug-201054 43

test.bogus-mail.spamH A D13-Aug-201030 53

test.custom-links.okH A D13-Aug-2010118 86

test.custom-links.spamH A D13-Aug-2010117 86

test.dnsrbl.spamH A D21-Aug-201042 43

test.dronebl.okH A D13-Aug-201047 32

test.dronebl.spamH A D16-Aug-201070 43

test.example-domain.spamH A D13-Aug-201041 53

test.foo.spamH A D21-Aug-2010184 74

test.hashcash.spamH A D13-Aug-2010206 85

test.httpbl.okH A D18-Aug-201077 43

test.httpbl.spamH A D18-Aug-201079 43

test.missing-mandatory.spamH A D13-Aug-201064 64

test.multilink.spamH A D16-Aug-2010286 86

test.nine-links.okH A D13-Aug-2010203 1310

test.no-mx.spamH A D16-Aug-2010114 75

test.null-sender.spamH A D13-Aug-201028 53

test.sfs.okH A D13-Aug-201032 32

test.sfs.spamH A D13-Aug-201033 32

test.skip-plugin.okH A D13-Aug-2010251 1612

test.stopwords.spamH A D13-Aug-201020 42

test.stopwords2.spamH A D13-Aug-201073 54

test.strong.okH A D16-Aug-201072 43

test.strong.spamH A D16-Aug-201099 43

test.strong2.okH A D16-Aug-201078 54

test.strong2.spamH A D16-Aug-201073 43

test.surbl.okH A D16-Aug-2010101 64

test.surbl.spamH A D13-Aug-201037 42

test.ten-links.spamH A D19-Sep-2010224 1511

test.too-big.spamH A D16-Aug-20102.9 KiB6260

test.too-small.spamH A D16-Aug-201078 43

test.valid-mandatory.okH A D13-Aug-2010123 75

test.whitelist.okH A D13-Aug-2010251 1612

test.words.spamH A D19-Sep-201019 32

test.words2.spamH A D13-Aug-201024 32

test.words3.okH A D18-Aug-201069 43

test.words4.spamH A D21-Aug-201069 53

README

1
2About
3-----
4
5  This directory contains a simple driver program "driver" which will
6 read each file called "test.*"
7
8  Each one will be parsed in turn and submitted to the RPC server on the
9 localhost.
10
11  The result of the RPC server will be compared to the expected result,
12 which is included in the name.
13
14  For example:
15
16    test.blah.spam  ->  Should report "SPAM".
17    test.foo.ok     ->  Should result in an "OK" reply from the RPC server.
18
19
20Testing Remotely
21----------------
22
23  The driver will default to testing locally, but may be given a host
24 on the command line:
25
26skx@gold:~/hg/blogspam/tests$ ./driver www.steve.org.uk
27
28  Or a host + port
29
30skx@gold:~/hg/blogspam/tests$ ./driver www.steve.org.uk:8888
31
32
33Steve
34--