mirror of
https://github.com/simon987/hexlib.git
synced 2025-04-04 02:12:59 +00:00
Fix tests
This commit is contained in:
parent
5e00ddccdb
commit
ed9d148411
5
.gitignore
vendored
5
.gitignore
vendored
@ -1,4 +1,7 @@
|
|||||||
*.iml
|
*.iml
|
||||||
.idea/
|
.idea/
|
||||||
*.db
|
*.db
|
||||||
*.png
|
*.png
|
||||||
|
hexlib.egg-info
|
||||||
|
build/
|
||||||
|
dist/
|
14
hexlib/db.py
14
hexlib/db.py
@ -36,6 +36,9 @@ class VolatileState:
|
|||||||
def __getitem__(self, table):
|
def __getitem__(self, table):
|
||||||
return RedisTable(self, table, self._sep)
|
return RedisTable(self, table, self._sep)
|
||||||
|
|
||||||
|
def __delitem__(self, key):
|
||||||
|
self.rdb.delete(f"{self.prefix}{self._sep}{key}")
|
||||||
|
|
||||||
|
|
||||||
class VolatileQueue:
|
class VolatileQueue:
|
||||||
"""Quick and dirty volatile queue-like redis wrapper"""
|
"""Quick and dirty volatile queue-like redis wrapper"""
|
||||||
@ -68,6 +71,9 @@ class VolatileBooleanState:
|
|||||||
def __getitem__(self, table):
|
def __getitem__(self, table):
|
||||||
return RedisBooleanTable(self, table, self._sep)
|
return RedisBooleanTable(self, table, self._sep)
|
||||||
|
|
||||||
|
def __delitem__(self, table):
|
||||||
|
self.rdb.delete(f"{self.prefix}{self._sep}{table}")
|
||||||
|
|
||||||
|
|
||||||
class RedisTable:
|
class RedisTable:
|
||||||
def __init__(self, state, table, sep=""):
|
def __init__(self, state, table, sep=""):
|
||||||
@ -89,9 +95,9 @@ class RedisTable:
|
|||||||
self._state.rdb.hdel(self._key, str(key))
|
self._state.rdb.hdel(self._key, str(key))
|
||||||
|
|
||||||
def __iter__(self):
|
def __iter__(self):
|
||||||
val = self._state.rdb.hgetall(self._key)
|
for val in self._state.rdb.hscan(self._key):
|
||||||
if val:
|
if val:
|
||||||
return ((k, umsgpack.loads(v)) for k, v in val.items())
|
return ((k, umsgpack.loads(v)) for k, v in val.items())
|
||||||
|
|
||||||
|
|
||||||
class RedisBooleanTable:
|
class RedisBooleanTable:
|
||||||
@ -114,7 +120,7 @@ class RedisBooleanTable:
|
|||||||
self._state.rdb.srem(self._key, str(key))
|
self._state.rdb.srem(self._key, str(key))
|
||||||
|
|
||||||
def __iter__(self):
|
def __iter__(self):
|
||||||
return iter(self._state.rdb.smembers(self._key))
|
yield from self._state.rdb.sscan_iter(self._key)
|
||||||
|
|
||||||
|
|
||||||
class Table:
|
class Table:
|
||||||
|
3
setup.py
3
setup.py
@ -14,6 +14,7 @@ setup(
|
|||||||
install_requires=[
|
install_requires=[
|
||||||
"ImageHash", "influxdb", "siphash", "python-dateutil", "redis", "orjson", "zstandard",
|
"ImageHash", "influxdb", "siphash", "python-dateutil", "redis", "orjson", "zstandard",
|
||||||
"u-msgpack-python", "psycopg2-binary", "bs4", "lxml", "nltk", "numpy",
|
"u-msgpack-python", "psycopg2-binary", "bs4", "lxml", "nltk", "numpy",
|
||||||
"matplotlib", "scikit-learn", "fake-useragent @ git+git://github.com/Jordan9675/fake-useragent"
|
"matplotlib", "scikit-learn", "fake-useragent @ git+git://github.com/Jordan9675/fake-useragent",
|
||||||
|
"requests"
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
0
test/__init__.py
Normal file
0
test/__init__.py
Normal file
@ -1,10 +1,15 @@
|
|||||||
from unittest import TestCase
|
from unittest import TestCase
|
||||||
|
|
||||||
from hexlib.db import VolatileState, VolatileBooleanState, VolatileQueue
|
from hexlib.db import VolatileState, VolatileBooleanState, VolatileQueue
|
||||||
|
from hexlib.env import get_redis
|
||||||
|
|
||||||
|
|
||||||
class TestVolatileState(TestCase):
|
class TestVolatileState(TestCase):
|
||||||
|
|
||||||
|
def setUp(self) -> None:
|
||||||
|
rdb = get_redis()
|
||||||
|
rdb.delete("test1a", "test1b", "test1c", "test1:a", "test2b")
|
||||||
|
|
||||||
def test_get_set(self):
|
def test_get_set(self):
|
||||||
s = VolatileState(prefix="test1")
|
s = VolatileState(prefix="test1")
|
||||||
val = {
|
val = {
|
||||||
@ -53,6 +58,10 @@ class TestVolatileState(TestCase):
|
|||||||
|
|
||||||
class TestVolatileBoolState(TestCase):
|
class TestVolatileBoolState(TestCase):
|
||||||
|
|
||||||
|
def setUp(self) -> None:
|
||||||
|
rdb = get_redis()
|
||||||
|
rdb.delete("test1a", "test1b", "test1c", "test1:a", "test2b")
|
||||||
|
|
||||||
def test_get_set(self):
|
def test_get_set(self):
|
||||||
s = VolatileBooleanState(prefix="test1")
|
s = VolatileBooleanState(prefix="test1")
|
||||||
|
|
||||||
|
@ -2,12 +2,16 @@ import os
|
|||||||
from unittest import TestCase
|
from unittest import TestCase
|
||||||
|
|
||||||
from hexlib.web import download_file
|
from hexlib.web import download_file
|
||||||
|
import warnings
|
||||||
|
|
||||||
|
|
||||||
class TestDownloadFile(TestCase):
|
class TestDownloadFile(TestCase):
|
||||||
|
|
||||||
|
def setUp(self) -> None:
|
||||||
|
warnings.filterwarnings(action="ignore", category=ResourceWarning)
|
||||||
|
|
||||||
def test_download_file(self):
|
def test_download_file(self):
|
||||||
download_file("http://ovh.net/files/10Mb.dat", "/tmp/10Mb.dat")
|
download_file("https://github.com/simon987/hexlib/raw/master/10MB.bin", "/tmp/10Mb.dat")
|
||||||
self.assertTrue(os.path.exists("/tmp/10Mb.dat"))
|
self.assertTrue(os.path.exists("/tmp/10Mb.dat"))
|
||||||
os.remove("/tmp/10Mb.dat")
|
os.remove("/tmp/10Mb.dat")
|
||||||
|
|
||||||
@ -22,8 +26,8 @@ class TestDownloadFile(TestCase):
|
|||||||
self.assertEqual(len(exceptions), 3)
|
self.assertEqual(len(exceptions), 3)
|
||||||
|
|
||||||
def test_download_file_meta(self):
|
def test_download_file_meta(self):
|
||||||
download_file("http://ovh.net/files/10Mb.dat", "/tmp/10Mb.dat", save_meta=True)
|
download_file("https://github.com/simon987/hexlib/raw/master/10MB.bin", "/tmp/10Mb.dat", save_meta=True)
|
||||||
self.assertTrue(os.path.exists("/tmp/10Mb.dat"))
|
self.assertTrue(os.path.exists("/tmp/10Mb.dat"))
|
||||||
self.assertTrue(os.path.exists("/tmp/10Mb.dat.meta"))
|
self.assertTrue(os.path.exists("/tmp/10Mb.dat.meta"))
|
||||||
os.remove("/tmp/10Mb.dat")
|
os.remove("/tmp/10Mb.dat")
|
||||||
# os.remove("/tmp/10Mb.dat.meta")
|
os.remove("/tmp/10Mb.dat.meta")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user