-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add infrahubctl object
command
#328
base: develop
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
@@ Coverage Diff @@
## develop #328 +/- ##
===========================================
+ Coverage 71.32% 72.27% +0.94%
===========================================
Files 87 87
Lines 7871 7970 +99
Branches 1517 1544 +27
===========================================
+ Hits 5614 5760 +146
+ Misses 1865 1808 -57
- Partials 392 402 +10
Flags with carried forward coverage won't be shown. Click here to find out more.
... and 2 files with indirect coverage changes 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One thing around this that isn't part of this PR the code already looked like this before but if we look at the example from the PR description:
---
apiVersion: infrahub.app/v1
kind: Object
spec:
kind: TestingPerson
data:
- name: Mike Johnson
height: 175
best_friends: # Relationship of cardinality many that referenced existing nodes based on their HFID
- [Jane Smith, Max]
- [Sarah Williams, Charlie]
If TestPerson "Mike Johnson" existed going into this and had other best_friends relationships defined I think that those earlier relationships would be replaced with the ones defined here instead of just ensuring that the ones above also exist.
I'm not certain how I'd want it to work here, just highlighting to raise the issue. I think there are merits to both approaches, just not sure what users would expect to happen. Any thoughts?
|
||
@property | ||
def is_bidirectional(self) -> bool: | ||
return bool(self.peer_rel) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What does is_bidirectional
mean in this context?
Is it tied to this relationship direction in any way? If so it seems like something else would be required here. If not I don't quite know what the property should return.
class RelationshipDirection(InfrahubStringEnum):
BIDIR = "bidirectional"
OUTBOUND = "outbound"
INBOUND = "inbound"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is_bidirectional
here means that a relationship with the same identifier exist on the remote peer, it's different than RelationshipDirection
but I understand it's confusing.
I'll try to find a better name
d1ff928
to
b74995b
Compare
@@ -40,8 +40,28 @@ async def load( | |||
client = initialize_client() | |||
|
|||
for file in files: | |||
file.validate_content() | |||
schema = await client.schema.get(kind=file.spec.kind, branch=branch) | |||
await file.validate_format(client=client, branch=branch) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not sure if this fits with how code is organized in the SDK, but in terms of SOLID, the validate_format
method of InfrahubObjectFileData
should be its own component: ObjectFileDataValidator
or something
Something like this
class ObjectFileDataValidator:
def __init__(self, client):...
async def validate(self, branch, file): ...
for item in file.spec.data: | ||
await file.spec.create_node(client=client, schema=schema, data=item, branch=branch) | ||
for file in files: | ||
await file.process(client=client, branch=branch) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same SOLID comment here as for validate_format
a couple lines above
also, process
seems more like a create
method to me
|
||
|
||
async def get_relationship_info( | ||
client: InfrahubClient, schema: MainSchemaTypesAPI, key: str, value: Any, branch: str | None = None |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
key
and value
could have more descriptive names. key
seems like name
to me, but not exactly sure about value
. maybe a more accurate type-hint would help for value
too
identifier=key, message=rel_info.reason_relationship_not_valid or "Invalid relationship" | ||
) | ||
) | ||
# TODO: Validate the sub-object too |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
does this need a follow-up issue?
Add
infrahub object load
andinfrahub object validate
commands to load objects defined in Yaml format into Infrahub.These commands are meant to be used in an idempotent way and as such they would work better for models with a Human Friendly ID (hfid) defined.
File format
All object files must start with the following format, all other format will be automatically ignored
Each file is intended for one specific top level kind, but one file can include multiple nested objects of any kind.
The kind of the top level object must be defined in
spec/kind
Below is a more detailed example with nested objects and with related objects referenced by their HFIDs