|
|
|
|
|
|
|
|
""" |
|
|
VCell API |
|
|
|
|
|
VCell API |
|
|
|
|
|
The version of the OpenAPI document: 1.0.1 |
|
|
Contact: vcell_support@uchc.com |
|
|
Generated by OpenAPI Generator (https://openapi-generator.tech) |
|
|
|
|
|
Do not edit the class manually. |
|
|
""" |
|
|
|
|
|
|
|
|
import unittest |
|
|
|
|
|
from vcell_client.api.field_data_resource_api import FieldDataResourceApi |
|
|
|
|
|
|
|
|
class TestFieldDataResourceApi(unittest.TestCase): |
|
|
"""FieldDataResourceApi unit test stubs""" |
|
|
|
|
|
def setUp(self) -> None: |
|
|
self.api = FieldDataResourceApi() |
|
|
|
|
|
def tearDown(self) -> None: |
|
|
pass |
|
|
|
|
|
def test_advanced_create(self) -> None: |
|
|
"""Test case for advanced_create |
|
|
|
|
|
Create Field Data with granular detail in one request.The following files are accepted: .tif and .zip. |
|
|
""" |
|
|
pass |
|
|
|
|
|
def test_analyze_file(self) -> None: |
|
|
"""Test case for analyze_file |
|
|
|
|
|
Analyze uploaded image file (Tiff, Zip, and Non-GPL BioFormats) and return field data. Color mapped images not supported (the colors in those images will be interpreted as separate channels). Filenames must be lowercase alphanumeric, and can contain underscores. |
|
|
""" |
|
|
pass |
|
|
|
|
|
def test_copy_models_field_data(self) -> None: |
|
|
"""Test case for copy_models_field_data |
|
|
|
|
|
Copy all existing field data from a BioModel/MathModel that you have access to, but don't own. |
|
|
""" |
|
|
pass |
|
|
|
|
|
def test_create_from_file(self) -> None: |
|
|
"""Test case for create_from_file |
|
|
|
|
|
Submit a .zip or .tif file that converts into field data, with all defaults derived from the file submitted. |
|
|
""" |
|
|
pass |
|
|
|
|
|
def test_create_from_simulation(self) -> None: |
|
|
"""Test case for create_from_simulation |
|
|
|
|
|
Create new field data from existing simulation results. |
|
|
""" |
|
|
pass |
|
|
|
|
|
def test_delete(self) -> None: |
|
|
"""Test case for delete |
|
|
|
|
|
Delete the selected field data. |
|
|
""" |
|
|
pass |
|
|
|
|
|
def test_get_all_ids(self) -> None: |
|
|
"""Test case for get_all_ids |
|
|
|
|
|
Get all of the ids used to identify, and retrieve field data. |
|
|
""" |
|
|
pass |
|
|
|
|
|
def test_get_shape_from_id(self) -> None: |
|
|
"""Test case for get_shape_from_id |
|
|
|
|
|
Get the shape of the field data. That is it's size, origin, extent, times, and data identifiers. |
|
|
""" |
|
|
pass |
|
|
|
|
|
def test_save(self) -> None: |
|
|
"""Test case for save |
|
|
|
|
|
Take the generated field data, and save it to the server. User may adjust the analyzed file before uploading to edit defaults. |
|
|
""" |
|
|
pass |
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
unittest.main() |
|
|
|