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
|
# -*- coding: utf-8 -*-
# Copyright (C) 2006-2008 Vodafone España, S.A.
# Copyright (C) 2008-2009 Warp Networks, S.L.
# Author: Pablo Martí
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
"""
tests for the wader.common.utils module
"""
import os
from random import shuffle, randint
from datetime import datetime
from pytz import timezone
from twisted.trial import unittest
from wader.common.utils import (get_file_data, save_file, natsort,
convert_ip_to_int, convert_int_to_ip,
convert_int_to_uint32, convert_uint32_to_int,
rssi_to_percentage, flatten_list,
revert_dict, get_tz_aware_now,
get_tz_aware_mtime)
def ip_generator(n):
c = 0
while c < n:
yield "%d.%d.%d.%d" % (randint(0, 255), randint(0, 255),
randint(0, 255), randint(0, 255))
c += 1
class TestUtilities(unittest.TestCase):
def test_get_file_data(self):
"""
Test reading a random file with ``get_file_data``
"""
text = os.urandom(2000)
path = '/tmp/file.foo'
fobj = open(path, 'w')
fobj.write(text)
fobj.close()
self.assertEqual(text, get_file_data(path))
os.unlink(path)
def test_save_file(self):
"""
Tests that saving a random file works with ``save_file``
"""
text = os.urandom(2000)
path = '/tmp/file.foo'
save_file(path, text)
fobj = open(path, 'r')
data = fobj.read()
fobj.close()
self.assertEqual(text, data)
os.unlink(path)
def test_natsort(self):
"""
Test that the ``natsort`` function works as expected
"""
l = []
for i in range(15):
l.append("ttyUSB%d" % i)
unordered = l[:]
shuffle(unordered)
self.assertNotIdentical(l, unordered)
natsort(unordered)
self.assertEqual(l, unordered)
def test_ip_to_int_conversion(self):
for ip in ip_generator(50000):
num = convert_ip_to_int(ip)
self.failIf(num < 0)
self.assertEqual(ip, convert_int_to_ip(num))
def test_int_to_uint32_to_int_conversion(self):
c = 10000000
while c:
i = randint(0, 0xffffffff)
u32 = convert_int_to_uint32(i)
i2 = convert_uint32_to_int(u32)
self.assertEqual(i, i2)
c -= 1
def test_rssi_to_percentage(self):
self.assertEqual(rssi_to_percentage(31), 100)
self.assertEqual(rssi_to_percentage(32), 0)
self.assertEqual(rssi_to_percentage(0), 0)
def test_flatten_list(self):
self.assertEqual(flatten_list([1, 2, [5, 6]]), [1, 2, 5, 6])
self.assertEqual(flatten_list([1, 2, (5, 6)]), [1, 2, 5, 6])
self.assertEqual(flatten_list([1, iter([2, 3, 4])]), [1, 2, 3, 4])
def test_revert_dict(self):
self.assertEqual(revert_dict({'a': 'b'}), {'b': 'a'})
self.assertEqual(revert_dict(dict(foo='bar')), dict(bar='foo'))
def test_get_tz_aware_now(self):
now1 = get_tz_aware_now()
now2 = datetime.now(timezone('Europe/Paris'))
self.assertNotEqual(now1.tzinfo, None)
self.failIf(abs(now2 - now1).seconds > 5)
def test_get_tz_aware_mtime(self):
text = os.urandom(2000)
path = 'mtime.test'
fobj = open(path, 'w')
fobj.write(text)
fobj.close()
now1 = get_tz_aware_now()
now2 = get_tz_aware_mtime(path)
self.assertNotEqual(now2.tzinfo, None)
self.failIf(abs(now2 - now1).seconds > 5)
# tidy up
os.remove(path)
|