Refact: change method to access to schema an tables
This commit is contained in:
parent
c2813e5adb
commit
fe780b96ef
@ -1,18 +1,31 @@
|
|||||||
import abc
|
import abc
|
||||||
|
|
||||||
|
from plesna.models.storage import Schema, Table
|
||||||
|
|
||||||
|
|
||||||
class DataCatalogue:
|
class DataCatalogue:
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
@property
|
||||||
@abc.abstractmethod
|
@abc.abstractmethod
|
||||||
def schemas(self) -> dict[str:str]:
|
def schemas(self) -> list[str]:
|
||||||
"""List schemas"""
|
"""List schema's names"""
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
|
|
||||||
@abc.abstractmethod
|
@abc.abstractmethod
|
||||||
def tables(self, schema) -> dict[str:str]:
|
def schema(self, name: str) -> Schema:
|
||||||
"""List table in schema"""
|
"""Get the schema properties"""
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
@abc.abstractmethod
|
||||||
|
def tables(self, schema:str) -> list[str]:
|
||||||
|
"""List table's name in schema"""
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
@abc.abstractmethod
|
||||||
|
def table(self, schema:str, table:str) -> Table:
|
||||||
|
"""Get the table properties"""
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
|
|
||||||
@abc.abstractmethod
|
@abc.abstractmethod
|
||||||
|
@ -7,18 +7,6 @@ from plesna.models.storage import Schema, Table
|
|||||||
from .datacatalogue import DataCatalogue
|
from .datacatalogue import DataCatalogue
|
||||||
|
|
||||||
|
|
||||||
class FSSchema(BaseModel):
|
|
||||||
path: Path
|
|
||||||
|
|
||||||
@computed_field
|
|
||||||
@property
|
|
||||||
def ref(self) -> Schema:
|
|
||||||
return Schema(
|
|
||||||
id=str(self.path),
|
|
||||||
value=str(self.path),
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
class FSTable(BaseModel):
|
class FSTable(BaseModel):
|
||||||
path: Path
|
path: Path
|
||||||
|
|
||||||
@ -31,6 +19,20 @@ class FSTable(BaseModel):
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class FSSchema(BaseModel):
|
||||||
|
path: Path
|
||||||
|
tables: list[str]
|
||||||
|
|
||||||
|
@computed_field
|
||||||
|
@property
|
||||||
|
def ref(self) -> Schema:
|
||||||
|
return Schema(
|
||||||
|
id=str(self.path),
|
||||||
|
value=str(self.path),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class FSDataCatalogue(DataCatalogue):
|
class FSDataCatalogue(DataCatalogue):
|
||||||
"""DataCatalogue based on files tree structure"""
|
"""DataCatalogue based on files tree structure"""
|
||||||
|
|
||||||
@ -72,12 +74,18 @@ class FSDataCatalogue(DataCatalogue):
|
|||||||
if not str(f).startswith(".")
|
if not str(f).startswith(".")
|
||||||
]
|
]
|
||||||
|
|
||||||
def schemas(self) -> dict[str, FSSchema]:
|
@property
|
||||||
|
def schemas(self) -> list[str]:
|
||||||
"""List schemas (sub directories within basepath)"""
|
"""List schemas (sub directories within basepath)"""
|
||||||
subdirectories = self.ls("", only_directories=True, recursive=True)
|
subdirectories = self.ls("", only_directories=True, recursive=True)
|
||||||
return {str(path): FSSchema(path=path) for path in subdirectories}
|
return [str(d) for d in subdirectories]
|
||||||
|
|
||||||
def tables(self, schema_id=".") -> dict[str, FSTable]:
|
def schema(self, schema: str) -> FSSchema:
|
||||||
|
"""List schemas (sub directories within basepath)"""
|
||||||
|
tables = self.ls(schema, only_files=True)
|
||||||
|
return FSSchema(path=Path(schema), tables=tables)
|
||||||
|
|
||||||
|
def table(self, schema: str, table:str) -> FSTable:
|
||||||
"""List table in schema (which are files in the directory)"""
|
"""List table in schema (which are files in the directory)"""
|
||||||
schema_path = schema_id
|
schema_path = schema_id
|
||||||
return {path: FSTable(path=path) for path in self.ls(schema_path, only_files=True)}
|
return {path: FSTable(path=path) for path in self.ls(schema_path, only_files=True)}
|
||||||
|
@ -4,6 +4,7 @@ from pathlib import Path
|
|||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from plesna.datastore.fs_datacatalogue import FSDataCatalogue
|
from plesna.datastore.fs_datacatalogue import FSDataCatalogue
|
||||||
|
from plesna.models.storage import Schema
|
||||||
|
|
||||||
FIXTURE_DIR = Path(__file__).parent.parent / Path("./raw_datas/")
|
FIXTURE_DIR = Path(__file__).parent.parent / Path("./raw_datas/")
|
||||||
|
|
||||||
@ -42,31 +43,19 @@ def test_init(location):
|
|||||||
|
|
||||||
def test_list_schema(location):
|
def test_list_schema(location):
|
||||||
repo = FSDataCatalogue("example", location)
|
repo = FSDataCatalogue("example", location)
|
||||||
assert {id: s.model_dump()["ref"]["id"] for id, s in repo.schemas().items()} == {
|
|
||||||
".": ".",
|
|
||||||
"username": "username",
|
|
||||||
"salary": "salary",
|
|
||||||
}
|
|
||||||
assert {id: s.model_dump()["ref"]["value"] for id, s in repo.schemas().items()} == {
|
|
||||||
".": ".",
|
|
||||||
"username": "username",
|
|
||||||
"salary": "salary",
|
|
||||||
}
|
|
||||||
assert {id: s.model_dump()["path"] for id, s in repo.schemas().items()} == {
|
|
||||||
".": Path("."),
|
|
||||||
"username": Path("username"),
|
|
||||||
"salary": Path("salary"),
|
|
||||||
}
|
|
||||||
|
|
||||||
|
assert repo.schemas == [".", "username", "salary"]
|
||||||
|
assert repo.schema(".").ref == Schema(id=".", value=".")
|
||||||
|
assert repo.schema("username").ref == Schema(id="username", value="username")
|
||||||
|
|
||||||
def test_list_tables(location):
|
def test_list_tables_schema(location):
|
||||||
repo = FSDataCatalogue("example", location)
|
repo = FSDataCatalogue("example", location)
|
||||||
assert repo.tables() == {}
|
|
||||||
assert {id: t.model_dump()["ref"]["value"] for id,t in repo.tables("username").items()} == {
|
assert repo.schema(".").tables == []
|
||||||
"username.csv": "username.csv",
|
assert repo.schema("username").tables == [
|
||||||
"username-password-recovery-code.xlsx": "username-password-recovery-code.xlsx",
|
'username.csv',
|
||||||
"username-password-recovery-code.xls": "username-password-recovery-code.xls",
|
'username-password-recovery-code.xlsx',
|
||||||
}
|
'username-password-recovery-code.xls',
|
||||||
assert {id: t.model_dump()["ref"]["value"] for id,t in repo.tables("salary").items()} == {
|
]
|
||||||
"salary.pdf": "salary.pdf",
|
assert repo.schema("salary").tables == ["salary.pdf"]
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user