system_assignation/tests/test_usage_catalog.py

24 lines
819 B
Python
Raw Normal View History

2022-05-17 22:22:40 -04:00
"""
TestUsageCatalog
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
"""
from unittest import TestCase
2023-01-24 10:51:50 -05:00
from hub.catalog_factories.usage_catalog_factory import UsageCatalogFactory
2022-05-17 22:22:40 -04:00
class TestConstructionCatalog(TestCase):
def test_comnet_catalog(self):
catalog = UsageCatalogFactory('comnet').catalog
self.assertIsNotNone(catalog, 'catalog is none')
2022-05-19 14:24:24 -04:00
content = catalog.entries()
2022-11-21 12:46:39 -05:00
self.assertEqual(32, len(content.usages), 'Wrong number of usages')
2022-11-15 08:38:41 -05:00
def test_nrcan_catalog(self):
catalog = UsageCatalogFactory('nrcan').catalog
2022-11-21 12:46:39 -05:00
self.assertIsNotNone(catalog, 'catalog is none')
content = catalog.entries()
self.assertEqual(34, len(content.usages), 'Wrong number of usages')