-
Notifications
You must be signed in to change notification settings - Fork 10
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
sites with model, test, doco, and additions to classic_api.py #25
Open
Honestpuck
wants to merge
2
commits into
macadmins:main
Choose a base branch
from
Honestpuck:sites
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
from typing import Optional | ||
|
||
from pydantic import Extra | ||
|
||
from .. import BaseModel | ||
from . import ClassicApiModel | ||
|
||
_XML_ARRAY_ITEM_NAMES = {} | ||
|
||
|
||
class ClassicSiteItem(BaseModel, extra=Extra.allow): | ||
"""Represents a site record returned by the | ||
:meth:`~jamf_pro_sdk.clients.classic_api.ClassicApi.list_sites` operation. | ||
""" | ||
|
||
id: Optional[int] | ||
name: Optional[str] | ||
|
||
|
||
class ClassicSite(ClassicApiModel): | ||
"""Represents a site record returned by the | ||
:meth:`~jamf_pro_sdk.clients.classic_api.ClassicApi.get_site_by_id` operation. | ||
Note that due to the simplicity of the model this information is available in the list. | ||
""" | ||
|
||
_xml_root_name = "site" | ||
_xml_array_item_names = _XML_ARRAY_ITEM_NAMES | ||
_xml_write_fields = {"name"} | ||
|
||
id: Optional[int] | ||
name: Optional[str] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import json | ||
|
||
from deepdiff import DeepDiff | ||
from src.jamf_pro_sdk.models.classic.sites import ClassicSite | ||
|
||
SITE_JSON = {"site": {"id": 1, "name": "Test Site"}} | ||
|
||
|
||
def test_site_model_parsings(): | ||
"""Verify select attributes across the Site model.""" | ||
site = ClassicSite(**SITE_JSON["site"]) | ||
|
||
assert site is not None # mypy | ||
assert site.name == "Test Site" | ||
assert site.id == 1 | ||
|
||
|
||
def test_site_model_json_output_matches_input(): | ||
site = ClassicSite(**SITE_JSON["site"]) | ||
serialized_output = json.loads(site.json(exclude_none=True)) | ||
|
||
diff = DeepDiff(SITE_JSON["site"], serialized_output, ignore_order=True) | ||
|
||
assert not diff |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This class already exists at
jamf_pro_sdk.models.classic.__init__.ClassicSite
. The site object is used across numerous models in the API (same for Pro). This duplicate model name will cause errors during doc builds. Refactor your PR.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.
OK. I will have a look.