This repository was archived by the owner on Jan 12, 2024. It is now read-only.
Add mock Azure classes, improve qsharp.azure Python API, implement end-to-end C# and Python tests #167
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.
This PR contains end-to-end integration tests in C# and Python for IQ# Azure functionality. To avoid a dependency on the Azure service, mock classes
MockAzureWorkspace,MockCloudJob, andMockQuantumMachineare added, which provide a fake implementation of all of the Azure-related functionality. When the environment variableAZURE_QUANTUM_ENVis set tomock, IQ# will use these mock classes rather than the real implementations.The C# and Python tests set this environment variable. The C# tests validate the end-to-end functionality by making calls directly to the
AzureClientobject. The Python tests are even more comprehensive because they also include the magic command parsing code, which then in turn calls theAzureClientobject.Also as part of these changes, the Python API for Azure functionality is defined more explicitly, including specific types returned for each
qsharp.azuremethod, and theAzureClientimplementation is updated to always return the expected type.Fixes AB#13627, fixes AB#15165.