-
Notifications
You must be signed in to change notification settings - Fork 1
Enable binary file copy #26
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
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
da09734
fixed build from model to align with --plugin-configs
alexandraBara 61c273f
fix for package plugin to match dumped data
alexandraBara a70fad8
added writing file
alexandraBara 0e523b5
added support for copying over binary file through read_sut_file
alexandraBara fe24893
Merge branch 'development' into alex_filemodel
alexandraBara 5f8b170
fix
alexandraBara 7bf4953
added utest
alexandraBara e765db8
merged alex_nvme
alexandraBara 65a6ebe
addressed reviews
alexandraBara a79ea7e
Merge branch 'alex_nvme' into alex_filemodel
alexandraBara 9a13d8c
split FileArtifact into Binary/Text
alexandraBara 1d64bed
docstrings
alexandraBara df0f7ce
Merge branch 'development' into alex_filemodel
alexandraBara e396cc1
addressed reviews
alexandraBara 966d389
undid issubclass -> isinstance
alexandraBara 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,48 @@ | ||
| from pathlib import Path | ||
|
|
||
| from nodescraper.connection.inband.inband import ( | ||
| BaseFileArtifact, | ||
| BinaryFileArtifact, | ||
| TextFileArtifact, | ||
| ) | ||
|
|
||
|
|
||
| def test_textfileartifact_contents_str(): | ||
| artifact = TextFileArtifact(filename="text.txt", contents="hello") | ||
| assert artifact.contents_str() == "hello" | ||
|
|
||
|
|
||
| def test_binaryfileartifact_contents_str(): | ||
| artifact = BinaryFileArtifact(filename="blob.bin", contents=b"\xff\x00\xab") | ||
| result = artifact.contents_str() | ||
| assert result.startswith("<binary data:") | ||
| assert "bytes>" in result | ||
|
|
||
|
|
||
| def test_from_bytes_text(): | ||
| artifact = BaseFileArtifact.from_bytes("test.txt", b"simple text", encoding="utf-8") | ||
| assert isinstance(artifact, TextFileArtifact) | ||
| assert artifact.contents == "simple text" | ||
|
|
||
|
|
||
| def test_from_bytes_binary(): | ||
| artifact = BaseFileArtifact.from_bytes("data.bin", b"\xff\x00\xab", encoding="utf-8") | ||
| assert isinstance(artifact, BinaryFileArtifact) | ||
| assert artifact.contents == b"\xff\x00\xab" | ||
|
|
||
|
|
||
| def test_log_model_text(tmp_path: Path): | ||
| artifact = TextFileArtifact(filename="log.txt", contents="some text") | ||
| artifact.log_model(str(tmp_path)) | ||
| output_path = tmp_path / "log.txt" | ||
| assert output_path.exists() | ||
| assert output_path.read_text(encoding="utf-8") == "some text" | ||
|
|
||
|
|
||
| def test_log_model_binary(tmp_path: Path): | ||
| binary_data = b"\x01\x02\xffDATA" | ||
| artifact = BinaryFileArtifact(filename="binary.bin", contents=binary_data) | ||
| artifact.log_model(str(tmp_path)) | ||
| output_path = tmp_path / "binary.bin" | ||
| assert output_path.exists() | ||
| assert output_path.read_bytes() == binary_data |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.