git-importer/tests/db_import_test.py

35 lines
989 B
Python
Raw Normal View History

2022-10-17 20:52:05 +02:00
import unittest
import xml.etree.ElementTree as ET
from lib.db import DB
from lib.history import History
from lib.obs import OBS
2022-10-18 12:17:43 +02:00
from lib.obs_revision import OBSRevision
2022-10-17 20:52:05 +02:00
class TestDBMethods(unittest.TestCase):
def setUp(self):
self.db = DB(section="test")
self.obs = OBS()
self.history = History(self.obs, "xz")
def test_import(self):
2022-10-18 12:17:43 +02:00
test_rev = OBSRevision(self.obs, self.history, "openSUSE:Factory", "xz")
2022-10-17 20:52:05 +02:00
test_rev.parse(
ET.fromstring(
"""<revision rev="70" vrev="1">
<srcmd5>37a33785d29ac57cdd5f2cbd7b0d6588</srcmd5>
<version>5.2.7</version>
<time>1665184962</time>
<user>RBrownFactory</user>
<comment></comment>
<requestid>1008136</requestid>
</revision>"""
)
)
self.db.import_rev(test_rev)
if __name__ == "__main__":
unittest.main()