Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
103 changes: 103 additions & 0 deletions infrahub_sdk/testing/schemas/file_object.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
import pytest

from infrahub_sdk import InfrahubClient, InfrahubClientSync
from infrahub_sdk.node import InfrahubNode, InfrahubNodeSync
from infrahub_sdk.schema.main import AttributeKind, NodeSchema, RelationshipKind, SchemaRoot
from infrahub_sdk.schema.main import AttributeSchema as Attr
from infrahub_sdk.schema.main import RelationshipSchema as Rel

NAMESPACE = "Testing"
TESTING_FILE_CONTRACT = f"{NAMESPACE}FileContract"
TESTING_CIRCUIT = f"{NAMESPACE}Circuit"

PDF_MAGIC_BYTES = b"%PDF-1.4 fake pdf content for testing"
PNG_MAGIC_BYTES = b"\x89PNG\r\n\x1a\n fake png content for testing"
TEXT_CONTENT = b"This is a simple text file content for testing purposes."


class SchemaFileObject:
@pytest.fixture(scope="class")
def schema_file_contract(self) -> NodeSchema:
return NodeSchema(
name="FileContract",
namespace=NAMESPACE,
include_in_menu=True,
inherit_from=["CoreFileObject"],
display_label="file_name__value",
human_friendly_id=["contract_ref__value"],
order_by=["contract_ref__value"],
attributes=[
Attr(name="contract_ref", kind=AttributeKind.TEXT, unique=True),
Attr(name="description", kind=AttributeKind.TEXT, optional=True),
Attr(name="active", kind=AttributeKind.BOOLEAN, default_value=True, optional=True),
],
relationships=[
Rel(
name="circuit",
kind=RelationshipKind.ATTRIBUTE,
optional=True,
peer=TESTING_CIRCUIT,
cardinality="one",
identifier="circuit__contracts",
),
],
)

@pytest.fixture(scope="class")
def schema_circuit(self) -> NodeSchema:
return NodeSchema(
name="Circuit",
namespace=NAMESPACE,
include_in_menu=True,
display_label="circuit_id__value",
human_friendly_id=["circuit_id__value"],
order_by=["circuit_id__value"],
attributes=[
Attr(name="circuit_id", kind=AttributeKind.TEXT, unique=True),
Attr(name="bandwidth", kind=AttributeKind.NUMBER, optional=True),
],
relationships=[
Rel(
name="contracts",
kind=RelationshipKind.GENERIC,
optional=True,
peer=TESTING_FILE_CONTRACT,
cardinality="many",
identifier="circuit__contracts",
),
],
)

@pytest.fixture(scope="class")
def schema_file_object_base(self, schema_file_contract: NodeSchema, schema_circuit: NodeSchema) -> SchemaRoot:
return SchemaRoot(version="1.0", nodes=[schema_file_contract, schema_circuit])

@pytest.fixture(scope="class")
async def load_file_object_schema(self, client: InfrahubClient, schema_file_object_base: SchemaRoot) -> None:
await client.schema.load(schemas=[schema_file_object_base.to_schema_dict()], wait_until_converged=True)

@pytest.fixture(scope="class")
def load_file_object_schema_sync(
self, client_sync: InfrahubClientSync, schema_file_object_base: SchemaRoot
) -> None:
client_sync.schema.load(schemas=[schema_file_object_base.to_schema_dict()], wait_until_converged=True)
Comment thread
gmazoyer marked this conversation as resolved.

@pytest.fixture(scope="class")
async def circuit_main(
self,
client: InfrahubClient,
load_file_object_schema: None, # noqa: ARG002
) -> InfrahubNode:
obj = await client.create(kind=TESTING_CIRCUIT, circuit_id="CIRCUIT-001", bandwidth=1000)
await obj.save()
return obj

@pytest.fixture(scope="class")
def circuit_main_sync(
self,
client_sync: InfrahubClientSync,
load_file_object_schema_sync: None, # noqa: ARG002
) -> InfrahubNodeSync:
obj = client_sync.create(kind=TESTING_CIRCUIT, circuit_id="CIRCUIT-SYNC-001", bandwidth=2000)
obj.save()
return obj
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder if it's valuable to have this included in the SDK or if it should just be a fixture within the integration tests directory. Not a bit issue for me but do you think we'll use it outside of the SDK tests?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it kinda highlight that the line I drew between SDK integration tests and backend integration tests is a bit blurry to me. I think I will remove these completely from the SDK as they don't seem very well suited here and we have something similar in the backend integration tests anyway.

Loading