예제 #1
0
파일: test_model.py 프로젝트: F3DS/f3ds
 def testToUrlObjectNoFilesizeNoHash(self):
     'Test that we can make a UrlObject out of this Scan object with no filesize or hash.'
     url = 'http://www.gourmetcheese.com/jackofalltrades.aspx'
     type = 'local'
     malicious = False
     scan = Scan(self.owner, type, url, malicious, self.siginfo)
     expected = UrlObject(url, -1, nonce=self.owner.name)
     actual = scan.to_UrlObject()
     self.assertEqual(expected, actual)
예제 #2
0
파일: test_model.py 프로젝트: F3DS/f3ds
 def testToUrlObject(self):
     'Test that we can make a UrlObject out of this Scan object.'
     url = 'http://www.gourmetcheese.com/jackofalltrades.aspx'
     type = 'local'
     malicious = False
     scan = Scan(self.owner, type, url, malicious, self.siginfo)
     scan.filesize = 35980
     scan.hash = 'ea46fc3db21ae'
     expected = UrlObject(url, 35980, nonce=self.owner.name, hash='ea46fc3db21ae')
     actual = scan.to_UrlObject()
     self.assertEqual(expected, actual)