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 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
|
# Author: Stuart D. Gathman <stuart@bmsi.com>
# Copyright 2006 Business Management Systems, Inc.
# This module is free software, and you may redistribute it and/or modify
# it under the same terms as Python itself, so long as this copyright message
# and disclaimer are retained in their original form.
# Run SPF test cases in the YAML format specified by the SPF council.
from __future__ import print_function
import unittest
import socket
import sys
import spf
import re
try:
import yaml
except:
print("yaml can be found at http://pyyaml.org/")
print("Tested with PYYAML 3.04 up to 5.1.2")
raise
zonedata = {}
RE_IP4 = re.compile(r'\.'.join(
[r'(?:\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])']*4)+'$')
def DNSLookup(name,qtype,strict=True,timeout=None,level=0):
try:
#print name,qtype
timeout = True
# emulate pydns-2.3.0 label processing
a = []
for label in name.split('.'):
if label:
if len(label) > 63:
raise spf.TempError('DNS label too long')
a.append(label)
name = '.'.join(a)
for i in zonedata[name.lower()]:
if i == 'TIMEOUT':
if timeout:
raise spf.TempError('DNS timeout')
return
t,v,n = i
if t == qtype:
timeout = False
if v == 'TIMEOUT':
if t == qtype:
raise spf.TempError('DNS timeout')
continue
# keep test zonedata human readable, but translate to simulate pydns
if t == 'AAAA':
v = bytes(socket.inet_pton(socket.AF_INET6,v))
elif t in ('TXT','SPF'):
v = tuple([s.encode('utf-8') for s in v])
yield ((n,t),v)
# emulate CNAME additional info for 1 level
if not level and t == 'CNAME':
for j in DNSLookup(v,qtype,strict,timeout,1):
yield j
except KeyError:
if name.startswith('error.'):
raise spf.TempError('DNS timeout')
spf.DNSLookup = DNSLookup
class SPFTest(object):
def __init__(self,testid,scenario,data={}):
self.id = testid
self.scenario = scenario
self.explanation = None
self.bestguess = None
self.spec = None
self.header = None
self.strict = True
self.receiver = None
self.comment = []
if 'result' not in data:
print(testid,'missing result')
for k,v in list(data.items()):
setattr(self,k,v)
if type(self.comment) is str:
self.comment = self.comment.splitlines()
def getrdata(r,name):
"Unpack rdata given as list of maps to list of tuples."
txt = [] # generated TXT records
gen = True
for m in r:
try:
for i in list(m.items()):
t,v = i
if t in ('TXT','SPF') and type(v) == str:
v = (v,)
if t == 'TXT':
gen = False # no generated TXT records
elif t == 'SPF' and gen:
txt.append(('TXT',v,name))
if v != ('NONE',):
yield (t,v,name)
except:
yield m
if gen:
for i in txt:
yield i
def loadZone(data):
return dict([
(d.lower(), list(getrdata(r,d))) for d,r in list(data['zonedata'].items())
])
class SPFScenario(object):
def __init__(self,filename=None,data={}):
self.id = None
self.filename = filename
self.comment = []
self.zonedata = {}
self.tests = {}
if data:
self.zonedata= loadZone(data)
#print self.zonedata
for t,v in list(data['tests'].items()):
self.tests[t] = SPFTest(t,self,v)
if 'id' in data:
self.id = data['id']
if 'comment' in data:
self.comment = data['comment'].splitlines()
def addDNS(self,name,val):
self.zonedata.setdefault(name,[]).append(val)
def addTest(self,test):
self.tests[test.id] = test
def loadYAML(fname):
"Load testcases in YAML format. Return map of SPFTests by name."
fp = open(fname,'rb')
try:
tests = {}
for s in yaml.safe_load_all(fp):
scenario = SPFScenario(fname,data=s)
for k,v in list(scenario.tests.items()):
tests[k] = v
return tests
finally: fp.close()
oldresults = { 'unknown': 'permerror', 'error': 'temperror' }
verbose = 0
warnings = []
class SPFTestCase(unittest.TestCase):
def __init__(self,t):
unittest.TestCase.__init__(self)
self._spftest = t
self._testMethodName = 'runTest'
self._testMethodDoc = str(t.spec)
def id(self):
t = self._spftest
return t.id + ' in ' + t.scenario.filename
def setUp(self):
global zonedata
self.savezonedata = zonedata
def tearDown(self):
global zonedata
zonedata = self.savezonedata
def warn(self,msg):
global warnings
warnings.append(msg)
def runTest(self):
global zonedata
t = self._spftest
zonedata = t.scenario.zonedata
q = spf.query(i=t.host, s=t.mailfrom, h=t.helo, strict=t.strict)
q.verbose = verbose
q.set_default_explanation('DEFAULT')
res,code,exp = q.check()
#print q.mechanism
if res in oldresults:
res = oldresults[res]
ok = True
msg = ''
if res != t.result and res not in t.result:
if verbose: msg += ' '.join((t.result,'!=',res))+'\n'
ok = False
elif res != t.result and res != t.result[0]:
self.warn("WARN: %s in %s, %s: %s preferred to %s" % (
t.id,t.scenario.filename,t.spec,t.result[0],res))
if t.explanation is not None and t.explanation != exp:
if verbose: msg += ' '.join((t.explanation,'!=',exp))+'\n'
ok = False
if t.header:
self.assertEqual(t.header,q.get_header(res,receiver=t.receiver))
if q.perm_error and t.bestguess is not None \
and q.perm_error.ext[0] != t.bestguess:
ok = False
if not ok:
print('Session cache:',q.cache)
if verbose and not t.explanation: msg += exp+'\n'
if verbose > 1: msg += t.scenario.zonedata
self.fail(msg+"%s in %s failed, %s" % (t.id,t.scenario.filename,t.spec))
class SPFTestCases(unittest.TestCase):
def testInvalidSPF(self):
i, s, h = '1.2.3.4','sender@domain','helo'
q = spf.query(i=i, s=s, h=h, receiver='localhost', strict=False)
res,code,txt = q.check('v=spf1...')
self.assertEqual('none',res)
q = spf.query(i=i, s=s, h=h, receiver='localhost', strict=2)
res,code,txt = q.check('v=spf1...')
self.assertEqual('ambiguous',res)
def makeSuite(filename):
suite = unittest.TestSuite()
for t in loadYAML(filename).values():
suite.addTest(SPFTestCase(t))
return suite
def docsuite():
suite = unittest.defaultTestLoader.loadTestsFromTestCase(SPFTestCases)
try:
import authres
except:
print("no authres module: skipping doctests")
return suite
import doctest
suite.addTest(doctest.DocTestSuite(spf))
return suite
def suite(skipdoc=False):
suite = docsuite()
suite.addTest(makeSuite('test.yml'))
suite.addTest(makeSuite('rfc7208-tests.yml'))
suite.addTest(makeSuite('rfc4408-tests.yml'))
return suite
if __name__ == '__main__':
tc = None
doctest = False
for i in sys.argv[1:]:
if i == '-v':
verbose += 1
continue
if i == '-d':
doctest = True
continue
# a specific test selected by id from YAML files
if not tc:
tc = unittest.TestSuite()
t0 = loadYAML('rfc7208-tests.yml')
t1 = loadYAML('rfc4408-tests.yml')
t2 = loadYAML('test.yml')
if i in t0:
tc.addTest(SPFTestCase(t0[i]))
if i in t1:
tc.addTest(SPFTestCase(t1[i]))
if i in t2:
tc.addTest(SPFTestCase(t2[i]))
if not tc:
# load zonedata for doctests
with open('doctest.yml','rb') as fp:
zonedata = loadZone(next(yaml.safe_load_all(fp)))
if doctest:
tc = docsuite() # doctests only
else:
tc = suite() # all tests, including doctests
runner = unittest.TextTestRunner()
res = runner.run(tc)
for s in warnings:
print(s)
if not res.wasSuccessful():
sys.exit(1)
|