Ejemplo n.º 1
0
 def test_using_w_period(self):
     self.assertEqual(TOTP(KEY1).period, 30)
     self.assertEqual(TOTP.using(period=63)(KEY1).period, 63)
     self.assertRaises(TypeError, TOTP.using, period=1.5)
     self.assertRaises(TypeError, TOTP.using, period='abc')
     self.assertRaises(ValueError, TOTP.using, period=0)
     self.assertRaises(ValueError, TOTP.using, period=-1)
Ejemplo n.º 2
0
 def test_from_source(self):
     from otp.ai.passlib.totp import TOTP
     from_source = TOTP.from_source
     otp = from_source(
         u('otpauth://totp/Example:[email protected]?secret=JBSWY3DPEHPK3PXP&issuer=Example'
           ))
     self.assertEqual(otp.key, KEY4_RAW)
     otp = from_source(
         'otpauth://totp/Example:[email protected]?secret=JBSWY3DPEHPK3PXP&issuer=Example'
     )
     self.assertEqual(otp.key, KEY4_RAW)
     otp = from_source(dict(v=1, type='totp', key=KEY4))
     self.assertEqual(otp.key, KEY4_RAW)
     otp = from_source(
         u('{"v": 1, "type": "totp", "key": "JBSWY3DPEHPK3PXP"}'))
     self.assertEqual(otp.key, KEY4_RAW)
     otp = from_source(
         '{"v": 1, "type": "totp", "key": "JBSWY3DPEHPK3PXP"}')
     self.assertEqual(otp.key, KEY4_RAW)
     self.assertIs(from_source(otp), otp)
     wallet1 = AppWallet()
     otp1 = TOTP.using(wallet=wallet1).from_source(otp)
     self.assertIsNot(otp1, otp)
     self.assertEqual(otp1.to_dict(), otp.to_dict())
     otp2 = TOTP.using(wallet=wallet1).from_source(otp1)
     self.assertIs(otp2, otp1)
     self.assertRaises(ValueError, from_source, u('foo'))
     self.assertRaises(ValueError, from_source, 'foo')
Ejemplo n.º 3
0
 def test_ctor_w_period(self):
     self.assertEqual(TOTP(KEY1).period, 30)
     self.assertEqual(TOTP(KEY1, period=63).period, 63)
     self.assertRaises(TypeError, TOTP, KEY1, period=1.5)
     self.assertRaises(TypeError, TOTP, KEY1, period='abc')
     self.assertRaises(ValueError, TOTP, KEY1, period=0)
     self.assertRaises(ValueError, TOTP, KEY1, period=-1)
Ejemplo n.º 4
0
 def test_ctor_w_key_and_format(self):
     self.assertEqual(TOTP(KEY1).key, KEY1_RAW)
     self.assertEqual(TOTP(KEY1.lower()).key, KEY1_RAW)
     self.assertEqual(TOTP(' 4aog gdbb qsyh ntuz ').key, KEY1_RAW)
     self.assertRaises(Base32DecodeError, TOTP, 'ao!ggdbbqsyhntuz')
     self.assertEqual(TOTP('e01c630c2184b076ce99', 'hex').key, KEY1_RAW)
     self.assertRaises(Base16DecodeError, TOTP, 'X01c630c2184b076ce99',
                       'hex')
     self.assertEqual(TOTP(KEY1_RAW, 'raw').key, KEY1_RAW)
Ejemplo n.º 5
0
 def test_totp_token(self):
     from otp.ai.passlib.totp import TOTP, TotpToken
     otp = TOTP('s3jdvb7qd2r7jpxx')
     result = otp.generate(1419622739)
     self.assertIsInstance(result, TotpToken)
     self.assertEqual(result.token, '897212')
     self.assertEqual(result.counter, 47320757)
     self.assertEqual(result.expire_time, 1419622740)
     self.assertEqual(result, ('897212', 1419622740))
     self.assertEqual(len(result), 2)
     self.assertEqual(result[0], '897212')
     self.assertEqual(result[1], 1419622740)
     self.assertRaises(IndexError, result.__getitem__, -3)
     self.assertRaises(IndexError, result.__getitem__, 2)
     self.assertTrue(result)
     otp.now = lambda: 1419622739.5
     self.assertEqual(result.remaining, 0.5)
     self.assertTrue(result.valid)
     otp.now = lambda: 1419622741
     self.assertEqual(result.remaining, 0)
     self.assertFalse(result.valid)
     result2 = otp.generate(1419622739)
     self.assertIsNot(result2, result)
     self.assertEqual(result2, result)
     result3 = otp.generate(1419622711)
     self.assertIsNot(result3, result)
     self.assertEqual(result3, result)
     result4 = otp.generate(1419622999)
     self.assertNotEqual(result4, result)
Ejemplo n.º 6
0
 def test_totp_match_w_older_token(self):
     from otp.ai.passlib.totp import TotpMatch
     time = 141230981
     token = '781501'
     otp = TOTP.using(now=lambda: time + 86400)(KEY3)
     result = otp.match(token, time - 30)
     self.assertTotpMatch(result, time=time - 30, skipped=1)
Ejemplo n.º 7
0
 def test_match_w_token_normalization(self):
     otp = TOTP('otxl2f5cctbprpzx')
     match = otp.match
     time = 1412889861
     self.assertTrue(match('    3 32-136  ', time))
     self.assertTrue(match('332136', time))
     self.assertRaises(exc.MalformedTokenError, match, '12345', time)
     self.assertRaises(exc.MalformedTokenError, match, '12345X', time)
     self.assertRaises(exc.MalformedTokenError, match, '0123456', time)
Ejemplo n.º 8
0
 def test_key_attrs(self):
     rng = self.getRandom()
     otp = TOTP(KEY1_RAW, 'raw')
     self.assertEqual(otp.key, KEY1_RAW)
     self.assertEqual(otp.hex_key, 'e01c630c2184b076ce99')
     self.assertEqual(otp.base32_key, KEY1)
     self.assertEqual(otp.pretty_key(), '4AOG-GDBB-QSYH-NTUZ')
     self.assertEqual(otp.pretty_key(sep=' '), '4AOG GDBB QSYH NTUZ')
     self.assertEqual(otp.pretty_key(sep=False), KEY1)
     self.assertEqual(otp.pretty_key(format='hex'),
                      'e01c-630c-2184-b076-ce99')
     otp = TOTP(new=True, size=rng.randint(10, 20))
     _ = otp.hex_key
     _ = otp.base32_key
     _ = otp.pretty_key()
Ejemplo n.º 9
0
 def test_generate(self):
     from otp.ai.passlib.totp import TOTP
     otp = TOTP(new=True)
     time = self.randtime()
     result = otp.generate(time)
     token = result.token
     self.assertIsInstance(token, unicode)
     start_time = result.counter * 30
     self.assertEqual(otp.generate(start_time + 29).token, token)
     self.assertNotEqual(otp.generate(start_time + 30).token, token)
     dt = datetime.datetime.utcfromtimestamp(time)
     self.assertEqual(int(otp.normalize_time(dt)), int(time))
     self.assertEqual(otp.generate(dt).token, token)
     otp2 = TOTP.using(now=lambda: time)(key=otp.base32_key)
     self.assertEqual(otp2.generate().token, token)
     self.assertRaises(ValueError, otp.generate, -1)
Ejemplo n.º 10
0
 def test_verify(self):
     from otp.ai.passlib.totp import TOTP
     time = 1412889861
     TotpFactory = TOTP.using(now=lambda: time)
     source1 = dict(v=1, type='totp', key='otxl2f5cctbprpzx')
     match = TotpFactory.verify('332136', source1)
     self.assertTotpMatch(match, time=time)
     source1 = dict(v=1, type='totp', key='otxl2f5cctbprpzx')
     self.assertRaises(exc.InvalidTokenError, TotpFactory.verify, '332155',
                       source1)
     source1 = dict(v=1, type='totp')
     self.assertRaises(ValueError, TotpFactory.verify, '332155', source1)
     source1json = '{"v": 1, "type": "totp", "key": "otxl2f5cctbprpzx"}'
     match = TotpFactory.verify('332136', source1json)
     self.assertTotpMatch(match, time=time)
     source1uri = 'otpauth://totp/Label?secret=otxl2f5cctbprpzx'
     match = TotpFactory.verify('332136', source1uri)
     self.assertTotpMatch(match, time=time)
Ejemplo n.º 11
0
    def iter_test_vectors(self):
        from otp.ai.passlib.totp import TOTP
        for row in self.vectors:
            kwds = self.vector_defaults.copy()
            kwds.update(row[0])
            for entry in row[1:]:
                if len(entry) == 3:
                    time, token, expires = entry
                else:
                    time, token = entry
                    expires = None
                log.debug('test vector: %r time=%r token=%r expires=%r', kwds,
                          time, token, expires)
                otp = TOTP(**kwds)
                prefix = 'alg=%r time=%r token=%r: ' % (otp.alg, time, token)
                yield (otp, time, token, expires, prefix)

        return
Ejemplo n.º 12
0
 def test_ctor_w_size(self):
     self.assertEqual(len(TOTP(new=True, alg='sha1').key), 20)
     self.assertEqual(len(TOTP(new=True, alg='sha256').key), 32)
     self.assertEqual(len(TOTP(new=True, alg='sha512').key), 64)
     self.assertEqual(len(TOTP(new=True, size=10).key), 10)
     self.assertEqual(len(TOTP(new=True, size=16).key), 16)
     self.assertRaises(ValueError, TOTP, new=True, size=21, alg='sha1')
     self.assertRaises(ValueError, TOTP, new=True, size=9)
     with self.assertWarningList([
             dict(
                 category=exc.PasslibSecurityWarning,
                 message_re='.*for security purposes, secret key must be.*')
     ]):
         _ = TOTP('0A0A0A0A0A0A0A0A0A', 'hex')
Ejemplo n.º 13
0
    def test_normalize_time(self):
        TotpFactory = TOTP.using()
        otp = self.randotp(TotpFactory)
        for _ in range(10):
            time = self.randtime()
            tint = int(time)
            self.assertEqual(otp.normalize_time(time), tint)
            self.assertEqual(otp.normalize_time(tint + 0.5), tint)
            self.assertEqual(otp.normalize_time(tint), tint)
            dt = datetime.datetime.utcfromtimestamp(time)
            self.assertEqual(otp.normalize_time(dt), tint)
            orig = TotpFactory.now
            try:
                TotpFactory.now = staticmethod(lambda: time)
                self.assertEqual(otp.normalize_time(None), tint)
            finally:
                TotpFactory.now = orig

        self.assertRaises(TypeError, otp.normalize_time, '1234')
        return
Ejemplo n.º 14
0
    def test_using_w_now(self):
        otp = self.randotp()
        self.assertIs(otp.now, _time.time)
        self.assertAlmostEqual(otp.normalize_time(None), int(_time.time()))
        counter = [123.12]

        def now():
            counter[0] += 1
            return counter[0]

        otp = self.randotp(cls=TOTP.using(now=now))
        self.assertEqual(otp.normalize_time(None), 126)
        self.assertEqual(otp.normalize_time(None), 127)
        self.assertRaises(TypeError, TOTP.using, now=123)
        msg_re = 'now\\(\\) function must return non-negative'
        self.assertRaisesRegex(AssertionError,
                               msg_re,
                               TOTP.using,
                               now=lambda: 'abc')
        self.assertRaisesRegex(AssertionError,
                               msg_re,
                               TOTP.using,
                               now=lambda: -1)
        return
Ejemplo n.º 15
0
 def test_to_dict(self):
     otp = TOTP(KEY4, alg='sha1', digits=6, period=30)
     self.assertEqual(otp.to_dict(), dict(v=1, type='totp', key=KEY4))
     otp = TOTP(KEY4,
                alg='sha1',
                digits=6,
                period=30,
                label='*****@*****.**',
                issuer='Example Org')
     self.assertEqual(
         otp.to_dict(),
         dict(v=1,
              type='totp',
              key=KEY4,
              label='*****@*****.**',
              issuer='Example Org'))
     otp = TOTP(KEY4,
                alg='sha1',
                digits=6,
                period=30,
                label='*****@*****.**')
     self.assertEqual(
         otp.to_dict(),
         dict(v=1, type='totp', key=KEY4, label='*****@*****.**'))
     otp = TOTP(KEY4, alg='sha1', digits=6, period=30, issuer='Example Org')
     self.assertEqual(
         otp.to_dict(),
         dict(v=1, type='totp', key=KEY4, issuer='Example Org'))
     TotpFactory = TOTP.using(issuer='Example Org')
     otp = TotpFactory(KEY4)
     self.assertEqual(otp.to_dict(), dict(v=1, type='totp', key=KEY4))
     otp = TotpFactory(KEY4, issuer='Example Org')
     self.assertEqual(otp.to_dict(), dict(v=1, type='totp', key=KEY4))
     self.assertEqual(
         TOTP(KEY4, alg='sha256').to_dict(),
         dict(v=1, type='totp', key=KEY4, alg='sha256'))
     self.assertEqual(
         TOTP(KEY4, digits=8).to_dict(),
         dict(v=1, type='totp', key=KEY4, digits=8))
     self.assertEqual(
         TOTP(KEY4, period=63).to_dict(),
         dict(v=1, type='totp', key=KEY4, period=63))
Ejemplo n.º 16
0
 def test_to_uri(self):
     otp = TOTP(KEY4, alg='sha1', digits=6, period=30)
     self.assertEqual(
         otp.to_uri('*****@*****.**', 'Example Org'),
         'otpauth://totp/[email protected]?secret=JBSWY3DPEHPK3PXP&issuer=Example%20Org'
     )
     self.assertRaises(ValueError, otp.to_uri, None, 'Example Org')
     self.assertEqual(
         otp.to_uri('*****@*****.**'),
         'otpauth://totp/[email protected]?secret=JBSWY3DPEHPK3PXP')
     otp.label = '*****@*****.**'
     self.assertEqual(
         otp.to_uri(),
         'otpauth://totp/[email protected]?secret=JBSWY3DPEHPK3PXP')
     otp.issuer = 'Example Org'
     self.assertEqual(
         otp.to_uri(),
         'otpauth://totp/[email protected]?secret=JBSWY3DPEHPK3PXP&issuer=Example%20Org'
     )
     self.assertRaises(ValueError, otp.to_uri, 'label:with:semicolons')
     self.assertRaises(ValueError, otp.to_uri, '*****@*****.**',
                       'issuer:with:semicolons')
     self.assertEqual(
         TOTP(KEY4, alg='sha256').to_uri('*****@*****.**'),
         'otpauth://totp/[email protected]?secret=JBSWY3DPEHPK3PXP&algorithm=SHA256'
     )
     self.assertEqual(
         TOTP(KEY4, digits=8).to_uri('*****@*****.**'),
         'otpauth://totp/[email protected]?secret=JBSWY3DPEHPK3PXP&digits=8')
     self.assertEqual(
         TOTP(KEY4, period=63).to_uri('*****@*****.**'),
         'otpauth://totp/[email protected]?secret=JBSWY3DPEHPK3PXP&period=63'
     )
     return
Ejemplo n.º 17
0
 def test_ctor_w_alg(self):
     self.assertEqual(TOTP(KEY1, alg='SHA-256').alg, 'sha256')
     self.assertEqual(TOTP(KEY1, alg='SHA256').alg, 'sha256')
     self.assertRaises(ValueError, TOTP, KEY1, alg='SHA-333')
Ejemplo n.º 18
0
 def test_ctor_w_digits(self):
     self.assertRaises(ValueError, TOTP, KEY1, digits=5)
     self.assertEqual(TOTP(KEY1, digits=6).digits, 6)
     self.assertEqual(TOTP(KEY1, digits=10).digits, 10)
     self.assertRaises(ValueError, TOTP, KEY1, digits=11)
Ejemplo n.º 19
0
 def test_ctor_w_label(self):
     self.assertEqual(TOTP(KEY1).label, None)
     self.assertEqual(TOTP(KEY1, label='foo@bar').label, 'foo@bar')
     self.assertRaises(ValueError, TOTP, KEY1, label='foo:bar')
     return
Ejemplo n.º 20
0
 def test_totp_match_w_invalid_token(self):
     time = 141230981
     token = '781501'
     otp = TOTP.using(now=lambda: time + 86400)(KEY3)
     self.assertRaises(exc.InvalidTokenError, otp.match, token, time + 60)
Ejemplo n.º 21
0
 def test_totp_match_w_new_token(self):
     time = 141230981
     token = '781501'
     otp = TOTP.using(now=lambda: time + 86400)(KEY3)
     result = otp.match(token, time + 30)
     self.assertTotpMatch(result, time=time + 30, skipped=-1)
Ejemplo n.º 22
0
 def test_ctor_w_issuer(self):
     self.assertEqual(TOTP(KEY1).issuer, None)
     self.assertEqual(TOTP(KEY1, issuer='foo.com').issuer, 'foo.com')
     self.assertRaises(ValueError, TOTP, KEY1, issuer='foo.com:bar')
     return
Ejemplo n.º 23
0
 def test_normalize_token_class(self):
     self.test_normalize_token_instance(otp=TOTP.using(digits=7))
Ejemplo n.º 24
0
 def test_ctor_w_new(self):
     self.assertRaises(TypeError, TOTP)
     self.assertRaises(TypeError, TOTP, key='4aoggdbbqsyhntuz', new=True)
     otp = TOTP(new=True)
     otp2 = TOTP(new=True)
     self.assertNotEqual(otp.key, otp2.key)