diff --git a/.travis.yml b/.travis.yml index ec2df7ad..d4aba722 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,8 +9,8 @@ install: - pip install -r requirements.txt - pip install -r test-requirements.txt script: - - flake8 storops test comptest - - "py.test -n2 --cov=storops --cov-config coverage.ini --cov-report=xml --cov-report term --junit-xml=junit-result.xml test" + - flake8 storops storops_test storops_comptest + - "py.test -n2 --cov=storops --cov-config coverage.ini --cov-report=xml --cov-report term --junit-xml=junit-result.xml storops_test" after_success: - coveralls notifications: diff --git a/MANIFEST.in b/MANIFEST.in index b8072344..7fa91f80 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,8 @@ include *.md include *.cfg include *.rst -include *.txt +recursive-include . *.txt +recursive-include storops_test *.json +recursive-include storops_test *.xml +recursive-include storops_test *.html recursive-include storops *.yaml diff --git a/README.rst b/README.rst index 22fb6742..1ff67010 100644 --- a/README.rst +++ b/README.rst @@ -13,7 +13,7 @@ StorOps: The Python Library for VNX & Unity .. image:: https://landscape.io/github/emc-openstack/storops/master/landscape.svg?style=flat :target: https://landscape.io/github/emc-openstack/storops/ -VERSION: 0.4.6 +VERSION: 0.4.7 A minimalist Python library to manage VNX/Unity systems. This document lies in the source code and go with the release. @@ -356,6 +356,29 @@ Getting Help vnx.get_pool vnx.json vnx.with_poll vnx.get_pool_feature vnx.parse +How to Run Unittests +-------------------- + +Unittests are included in the `storops_test` package. + +Use following command to install test dependencies. + +.. code-block:: bash + + $ pip install -r test-requirements.txt + +Use `pytest` to run the tests. + +.. code-block:: bash + + $ pytest storops_test + +Or you could use `tox` to run the tests. + +.. code-block:: bash + + $ tox -e py36 + How to Contribute ----------------- diff --git a/coverage.ini b/coverage.ini index ed7db48c..47a832a1 100644 --- a/coverage.ini +++ b/coverage.ini @@ -1,9 +1,10 @@ [run] branch = True +parallel = True source = storops [report] - +ignore_errors = True [xml] output = coverage.xml \ No newline at end of file diff --git a/setup.py b/setup.py index 909a377c..da12ffcf 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ import os import re -from setuptools import setup, find_packages +from setuptools import setup __author__ = 'Cedric Zhuang' @@ -72,7 +72,7 @@ def get_long_description(): license='Apache Software License', keywords='VNX Unity EMC Storage', include_package_data=True, - packages=find_packages(), + packages=['storops', 'storops_test', 'storops_comptest'], platforms=['any'], long_description=get_long_description(), classifiers=[ diff --git a/storops/__init__.py b/storops/__init__.py index 8d741a55..7b41c236 100644 --- a/storops/__init__.py +++ b/storops/__init__.py @@ -44,3 +44,4 @@ def disable_log(): logger.info('disabling logging to console.') logger.setLevel(logging.NOTSET) logger.handlers = [] + return logger diff --git a/storops/unity/resource/host.py b/storops/unity/resource/host.py index 1cbd4114..47fe41d9 100644 --- a/storops/unity/resource/host.py +++ b/storops/unity/resource/host.py @@ -183,6 +183,9 @@ def attach(self, lun_or_snap, skip_hlu_0=False): lun_or_snap.attach_to(self) self.update() hlu = self.get_hlu(lun_or_snap) + except ex.SystemAPINotSupported: + # Attaching snap to host not support before 4.1. + raise except ex.UnityAttachExceedLimitError: # The number of luns exceeds system limit raise diff --git a/storops/unity/resource/snap.py b/storops/unity/resource/snap.py index a6ef00e7..212a8f2a 100644 --- a/storops/unity/resource/snap.py +++ b/storops/unity/resource/snap.py @@ -18,6 +18,7 @@ import logging from storops.lib.common import instance_cache +from storops.lib.version import version from storops.unity import enums from storops.unity.enums import FilesystemSnapAccessTypeEnum, SnapStateEnum, \ SnapAccessLevelEnum @@ -104,6 +105,7 @@ def existed(self): return (super(UnitySnap, self).existed and self.state != SnapStateEnum.DESTROYING) + @version('>=4.1') def attach_to(self, host, access_mask=SnapAccessLevelEnum.READ_WRITE): host_access = [{'host': host, 'allowedAccess': access_mask}] # If this lun has been attached to other host, don't overwrite it. diff --git a/comptest/__init__.py b/storops_comptest/__init__.py similarity index 96% rename from comptest/__init__.py rename to storops_comptest/__init__.py index 965d8a03..7fb713af 100644 --- a/comptest/__init__.py +++ b/storops_comptest/__init__.py @@ -17,7 +17,7 @@ import logging -from comptest.utils import inter_process_locked +from storops_comptest.utils import inter_process_locked from storops import VNXSystem, UnitySystem, cache __author__ = 'Cedric Zhuang' diff --git a/comptest/unity/__init__.py b/storops_comptest/unity/__init__.py similarity index 99% rename from comptest/unity/__init__.py rename to storops_comptest/unity/__init__.py index c32e2247..0c01bb78 100644 --- a/comptest/unity/__init__.py +++ b/storops_comptest/unity/__init__.py @@ -19,8 +19,8 @@ from retryz import retry -from comptest import t_unity -from comptest.utils import ResourceManager +from storops_comptest import t_unity +from storops_comptest.utils import ResourceManager from storops import exception as ex, FSSupportedProtocolEnum, \ FileInterfaceRoleEnum from storops.exception import UnityCifsServiceNotEnabledError, \ diff --git a/comptest/unity/conftest.py b/storops_comptest/unity/conftest.py similarity index 90% rename from comptest/unity/conftest.py rename to storops_comptest/unity/conftest.py index ca22298a..5a2d7fdf 100644 --- a/comptest/unity/conftest.py +++ b/storops_comptest/unity/conftest.py @@ -19,8 +19,8 @@ import pytest -from comptest.unity import UnityGeneralFixture, UnityCifsShareFixture -from comptest.utils import is_jenkins, setup_fixture +from storops_comptest.unity import UnityGeneralFixture, UnityCifsShareFixture +from storops_comptest.utils import is_jenkins, setup_fixture __author__ = 'Cedric Zhuang' diff --git a/comptest/unity/test_fs.py b/storops_comptest/unity/test_fs.py similarity index 100% rename from comptest/unity/test_fs.py rename to storops_comptest/unity/test_fs.py diff --git a/comptest/unity/test_nas_server.py b/storops_comptest/unity/test_nas_server.py similarity index 100% rename from comptest/unity/test_nas_server.py rename to storops_comptest/unity/test_nas_server.py diff --git a/comptest/unity/test_share.py b/storops_comptest/unity/test_share.py similarity index 99% rename from comptest/unity/test_share.py rename to storops_comptest/unity/test_share.py index 85f8cebd..07ddf28a 100644 --- a/comptest/unity/test_share.py +++ b/storops_comptest/unity/test_share.py @@ -18,7 +18,7 @@ import pytest from hamcrest import assert_that, equal_to, has_items, has_item, none -from comptest.utils import is_jenkins +from storops_comptest.utils import is_jenkins from storops import HostTypeEnum, ACEAccessLevelEnum __author__ = 'Cedric Zhuang' diff --git a/comptest/utils.py b/storops_comptest/utils.py similarity index 99% rename from comptest/utils.py rename to storops_comptest/utils.py index ab4641ae..4a840fcb 100644 --- a/comptest/utils.py +++ b/storops_comptest/utils.py @@ -30,7 +30,7 @@ from storops.exception import StoropsException from storops.lib.common import get_lock_file -from test.utils import PersistedDict +from storops_test.utils import PersistedDict __author__ = 'Cedric Zhuang' diff --git a/comptest/vnx/__init__.py b/storops_comptest/vnx/__init__.py similarity index 98% rename from comptest/vnx/__init__.py rename to storops_comptest/vnx/__init__.py index 632673c9..548cd24f 100644 --- a/comptest/vnx/__init__.py +++ b/storops_comptest/vnx/__init__.py @@ -19,8 +19,8 @@ from retryz import retry -from comptest import t_vnx, vnx1, vnx2 -from comptest.utils import ResourceManager +from storops_comptest import t_vnx, vnx1, vnx2 +from storops_comptest.utils import ResourceManager from storops import exception as ex __author__ = 'Cedric Zhuang' diff --git a/comptest/vnx/conftest.py b/storops_comptest/vnx/conftest.py similarity index 93% rename from comptest/vnx/conftest.py rename to storops_comptest/vnx/conftest.py index 09383446..8aa25ff8 100644 --- a/comptest/vnx/conftest.py +++ b/storops_comptest/vnx/conftest.py @@ -19,8 +19,8 @@ import pytest -from comptest.utils import setup_fixture -from comptest.vnx import VNXGeneralFixtureManager, \ +from storops_comptest.utils import setup_fixture +from storops_comptest.vnx import VNXGeneralFixtureManager, \ MultiVNXGeneralFixtureManager __author__ = 'Cedric Zhuang' diff --git a/comptest/vnx/test_cg.py b/storops_comptest/vnx/test_cg.py similarity index 98% rename from comptest/vnx/test_cg.py rename to storops_comptest/vnx/test_cg.py index 172160b6..5a117ee3 100644 --- a/comptest/vnx/test_cg.py +++ b/storops_comptest/vnx/test_cg.py @@ -16,7 +16,7 @@ from __future__ import unicode_literals import pytest -from comptest import t_vnx +from storops_comptest import t_vnx from hamcrest import assert_that, equal_to __author__ = 'Cedric Zhuang' diff --git a/comptest/vnx/test_lun.py b/storops_comptest/vnx/test_lun.py similarity index 99% rename from comptest/vnx/test_lun.py rename to storops_comptest/vnx/test_lun.py index 0b927d39..704ecd02 100644 --- a/comptest/vnx/test_lun.py +++ b/storops_comptest/vnx/test_lun.py @@ -19,7 +19,7 @@ from hamcrest import assert_that, equal_to, raises from retryz import retry -from comptest import t_vnx +from storops_comptest import t_vnx from storops.exception import VNXLunExtendError, VNXDedupAlreadyEnabled, \ VNXLunPreparingError, VNXNotReadyExpandError from storops.vnx.enums import VNXProvisionEnum, VNXTieringEnum diff --git a/comptest/vnx/test_mirror_view.py b/storops_comptest/vnx/test_mirror_view.py similarity index 98% rename from comptest/vnx/test_mirror_view.py rename to storops_comptest/vnx/test_mirror_view.py index 562a7634..b98596d7 100644 --- a/comptest/vnx/test_mirror_view.py +++ b/storops_comptest/vnx/test_mirror_view.py @@ -22,7 +22,7 @@ from storops.exception import VNXMirrorSyncImageError, \ VNXMirrorPromotePrimaryError -from comptest import vnx1, vnx2 +from storops_comptest import vnx1, vnx2 __author__ = 'Cedric Zhuang' diff --git a/comptest/vnx/test_port.py b/storops_comptest/vnx/test_port.py similarity index 100% rename from comptest/vnx/test_port.py rename to storops_comptest/vnx/test_port.py diff --git a/comptest/vnx/test_sg.py b/storops_comptest/vnx/test_sg.py similarity index 100% rename from comptest/vnx/test_sg.py rename to storops_comptest/vnx/test_sg.py diff --git a/comptest/vnx/test_snap.py b/storops_comptest/vnx/test_snap.py similarity index 98% rename from comptest/vnx/test_snap.py rename to storops_comptest/vnx/test_snap.py index 42ae98c0..f45110a3 100644 --- a/comptest/vnx/test_snap.py +++ b/storops_comptest/vnx/test_snap.py @@ -16,7 +16,7 @@ from __future__ import unicode_literals import pytest -from comptest import t_vnx +from storops_comptest import t_vnx from hamcrest import assert_that, equal_to, only_contains, none __author__ = 'Cedric Zhuang' diff --git a/comptest/vnx/test_system.py b/storops_comptest/vnx/test_system.py similarity index 97% rename from comptest/vnx/test_system.py rename to storops_comptest/vnx/test_system.py index 3b0cfb67..b777b241 100644 --- a/comptest/vnx/test_system.py +++ b/storops_comptest/vnx/test_system.py @@ -19,7 +19,7 @@ from hamcrest import assert_that, not_none, greater_than, equal_to -from comptest import t_vnx +from storops_comptest import t_vnx __author__ = 'Cedric Zhuang' diff --git a/test/__init__.py b/storops_test/__init__.py similarity index 91% rename from test/__init__.py rename to storops_test/__init__.py index 07239ccb..73617086 100644 --- a/test/__init__.py +++ b/storops_test/__init__.py @@ -31,7 +31,7 @@ class StoropsTest(unittest.TestCase): def test_vnx_availability(self): - vnx = storops.VNXSystem('10.244.211.30') + vnx = storops.VNXSystem('10.244.211.30', heartbeat_interval=0) assert_that(vnx, not_none()) def test_unity_availability(self): @@ -63,7 +63,5 @@ def test_enable_log_called_twice(self): def test_disable_log(self): storops.enable_log() - storops.disable_log() - log = logging.getLogger('storops') + log = storops.disable_log() assert_that(len(log.handlers), equal_to(0)) - assert_that(log.getEffectiveLevel(), equal_to(logging.NOTSET)) diff --git a/test/connection/__init__.py b/storops_test/connection/__init__.py similarity index 100% rename from test/connection/__init__.py rename to storops_test/connection/__init__.py diff --git a/test/connection/test_client.py b/storops_test/connection/test_client.py similarity index 100% rename from test/connection/test_client.py rename to storops_test/connection/test_client.py diff --git a/test/connection/test_connector.py b/storops_test/connection/test_connector.py similarity index 100% rename from test/connection/test_connector.py rename to storops_test/connection/test_connector.py diff --git a/test/lib/__init__.py b/storops_test/lib/__init__.py similarity index 100% rename from test/lib/__init__.py rename to storops_test/lib/__init__.py diff --git a/test/lib/test_common.py b/storops_test/lib/test_common.py similarity index 100% rename from test/lib/test_common.py rename to storops_test/lib/test_common.py diff --git a/test/lib/test_converter.py b/storops_test/lib/test_converter.py similarity index 100% rename from test/lib/test_converter.py rename to storops_test/lib/test_converter.py diff --git a/test/lib/test_metric.py b/storops_test/lib/test_metric.py similarity index 100% rename from test/lib/test_metric.py rename to storops_test/lib/test_metric.py diff --git a/test/lib/test_parser.py b/storops_test/lib/test_parser.py similarity index 100% rename from test/lib/test_parser.py rename to storops_test/lib/test_parser.py diff --git a/test/lib/test_resource.py b/storops_test/lib/test_resource.py old mode 100755 new mode 100644 similarity index 97% rename from test/lib/test_resource.py rename to storops_test/lib/test_resource.py index 51ad664f..3169fdd8 --- a/test/lib/test_resource.py +++ b/storops_test/lib/test_resource.py @@ -25,7 +25,7 @@ from storops.unity.resource.lun import UnityLun from storops.unity.resource.sp import UnityStorageProcessor, \ UnityStorageProcessorList -from test.unity.rest_mock import t_unity, patch_rest +from storops_test.unity.rest_mock import t_unity, patch_rest __author__ = 'Cedric Zhuang' diff --git a/test/lib/test_tasks.py b/storops_test/lib/test_tasks.py similarity index 98% rename from test/lib/test_tasks.py rename to storops_test/lib/test_tasks.py index a5b83c5d..cac10ada 100644 --- a/test/lib/test_tasks.py +++ b/storops_test/lib/test_tasks.py @@ -23,7 +23,7 @@ from persistqueue import Empty from storops.lib import tasks -from test.vnx.cli_mock import patch_cli, t_vnx +from storops_test.vnx.cli_mock import patch_cli, t_vnx import time diff --git a/test/lib/test_version.py b/storops_test/lib/test_version.py old mode 100755 new mode 100644 similarity index 98% rename from test/lib/test_version.py rename to storops_test/lib/test_version.py index 025bc39f..2feff27c --- a/test/lib/test_version.py +++ b/storops_test/lib/test_version.py @@ -7,8 +7,8 @@ from storops.exception import SystemAPINotSupported from storops.lib.resource import Resource from storops.lib.version import version, Criteria -from test.unity.rest_mock import t_rest, patch_rest -from test.vnx.cli_mock import patch_cli, t_cli +from storops_test.unity.rest_mock import t_rest, patch_rest +from storops_test.vnx.cli_mock import patch_cli, t_cli class ParentResource(Resource): diff --git a/test/test_exception.py b/storops_test/test_exception.py similarity index 100% rename from test/test_exception.py rename to storops_test/test_exception.py diff --git a/test/test_utils.py b/storops_test/test_utils.py similarity index 96% rename from test/test_utils.py rename to storops_test/test_utils.py index 2baf2cdc..9cbfe0ce 100644 --- a/test/test_utils.py +++ b/storops_test/test_utils.py @@ -20,8 +20,8 @@ from hamcrest import assert_that, equal_to, only_contains -from comptest.utils import ResourceManager -from test.utils import PersistedDict +from storops_comptest.utils import ResourceManager +from storops_test.utils import PersistedDict __author__ = 'Cedric Zhuang' diff --git a/test/unity/__init__.py b/storops_test/unity/__init__.py similarity index 100% rename from test/unity/__init__.py rename to storops_test/unity/__init__.py diff --git a/test/unity/resource/__init__.py b/storops_test/unity/resource/__init__.py similarity index 100% rename from test/unity/resource/__init__.py rename to storops_test/unity/resource/__init__.py diff --git a/test/unity/resource/test_cifs_server.py b/storops_test/unity/resource/test_cifs_server.py similarity index 99% rename from test/unity/resource/test_cifs_server.py rename to storops_test/unity/resource/test_cifs_server.py index e4b54f2d..d5207a36 100644 --- a/test/unity/resource/test_cifs_server.py +++ b/storops_test/unity/resource/test_cifs_server.py @@ -28,7 +28,7 @@ from storops.unity.resource.health import UnityHealth from storops.unity.resource.interface import UnityFileInterfaceList from storops.unity.resource.nas_server import UnityNasServer -from test.unity.rest_mock import t_rest, patch_rest +from storops_test.unity.rest_mock import t_rest, patch_rest __author__ = 'Cedric Zhuang' diff --git a/test/unity/resource/test_cifs_share.py b/storops_test/unity/resource/test_cifs_share.py similarity index 99% rename from test/unity/resource/test_cifs_share.py rename to storops_test/unity/resource/test_cifs_share.py index 5fd230ae..43f59b16 100644 --- a/test/unity/resource/test_cifs_share.py +++ b/storops_test/unity/resource/test_cifs_share.py @@ -27,7 +27,7 @@ from storops.unity.resource.cifs_share import UnityCifsShare, \ UnityCifsShareList, UnityAclUser, UnityAclUserList -from test.unity.rest_mock import t_rest, patch_rest +from storops_test.unity.rest_mock import t_rest, patch_rest __author__ = 'Cedric Zhuang' diff --git a/test/unity/resource/test_disk.py b/storops_test/unity/resource/test_disk.py similarity index 98% rename from test/unity/resource/test_disk.py rename to storops_test/unity/resource/test_disk.py index c4a15f67..a76f2108 100644 --- a/test/unity/resource/test_disk.py +++ b/storops_test/unity/resource/test_disk.py @@ -22,7 +22,7 @@ from storops import DiskTechnologyEnum, TierTypeEnum from storops.unity.resource.disk import UnityDiskList, UnityDisk -from test.unity.rest_mock import t_rest, patch_rest, t_unity +from storops_test.unity.rest_mock import t_rest, patch_rest, t_unity __author__ = 'Cedric Zhuang' diff --git a/test/unity/resource/test_dns_server.py b/storops_test/unity/resource/test_dns_server.py similarity index 97% rename from test/unity/resource/test_dns_server.py rename to storops_test/unity/resource/test_dns_server.py index c75cea44..56e3ec6d 100644 --- a/test/unity/resource/test_dns_server.py +++ b/storops_test/unity/resource/test_dns_server.py @@ -24,7 +24,7 @@ from storops.unity.resource.dns_server import UnityFileDnsServerList, \ UnityFileDnsServer from storops.unity.resource.nas_server import UnityNasServer -from test.unity.rest_mock import t_rest, patch_rest +from storops_test.unity.rest_mock import t_rest, patch_rest __author__ = 'Cedric Zhuang' diff --git a/test/unity/resource/test_filesystem.py b/storops_test/unity/resource/test_filesystem.py similarity index 99% rename from test/unity/resource/test_filesystem.py rename to storops_test/unity/resource/test_filesystem.py index c2d41db7..cef0a4eb 100644 --- a/test/unity/resource/test_filesystem.py +++ b/storops_test/unity/resource/test_filesystem.py @@ -34,7 +34,7 @@ from storops.unity.resource.pool import UnityPool from storops.unity.resource.storage_resource import UnityStorageResource from storops.unity.resource.health import UnityHealth -from test.unity.rest_mock import t_rest, patch_rest +from storops_test.unity.rest_mock import t_rest, patch_rest __author__ = 'Cedric Zhuang' diff --git a/test/unity/resource/test_host.py b/storops_test/unity/resource/test_host.py similarity index 99% rename from test/unity/resource/test_host.py rename to storops_test/unity/resource/test_host.py index 7698ab91..042e4ce4 100644 --- a/test/unity/resource/test_host.py +++ b/storops_test/unity/resource/test_host.py @@ -39,7 +39,7 @@ from storops.unity.resource.snap import UnitySnap from storops.unity.resource.tenant import UnityTenant from storops.unity.resource.vmware import UnityDataStoreList, UnityVmList -from test.unity.rest_mock import t_rest, patch_rest +from storops_test.unity.rest_mock import t_rest, patch_rest __author__ = 'Cedric Zhuang' diff --git a/test/unity/resource/test_interface.py b/storops_test/unity/resource/test_interface.py similarity index 98% rename from test/unity/resource/test_interface.py rename to storops_test/unity/resource/test_interface.py index 20e2f6c0..d2db8a15 100644 --- a/test/unity/resource/test_interface.py +++ b/storops_test/unity/resource/test_interface.py @@ -28,7 +28,7 @@ UnityPreferredInterfaceSettingsList from storops.unity.resource.nas_server import UnityNasServer from storops.unity.resource.port import UnityIpPort -from test.unity.rest_mock import t_rest, patch_rest +from storops_test.unity.rest_mock import t_rest, patch_rest __author__ = 'Cedric Zhuang' diff --git a/test/unity/resource/test_job.py b/storops_test/unity/resource/test_job.py similarity index 98% rename from test/unity/resource/test_job.py rename to storops_test/unity/resource/test_job.py index 2c4bb3cd..727c06d6 100644 --- a/test/unity/resource/test_job.py +++ b/storops_test/unity/resource/test_job.py @@ -29,7 +29,7 @@ from storops.unity.resource.nas_server import UnityNasServer from storops import exception as ex -from test.unity.rest_mock import t_rest, patch_rest +from storops_test.unity.rest_mock import t_rest, patch_rest __author__ = 'Cedric Zhuang' diff --git a/test/unity/resource/test_lun.py b/storops_test/unity/resource/test_lun.py similarity index 99% rename from test/unity/resource/test_lun.py rename to storops_test/unity/resource/test_lun.py index 16520795..03e62ae1 100644 --- a/test/unity/resource/test_lun.py +++ b/storops_test/unity/resource/test_lun.py @@ -35,8 +35,8 @@ from storops.unity.resource.snap import UnitySnap from storops.unity.resource.sp import UnityStorageProcessor from storops.unity.resource.storage_resource import UnityStorageResource -from test.unity.rest_mock import t_rest, patch_rest, t_unity -from test.utils import is_nan +from storops_test.unity.rest_mock import t_rest, patch_rest, t_unity +from storops_test.utils import is_nan __author__ = 'Cedric Zhuang' diff --git a/test/unity/resource/test_metric.py b/storops_test/unity/resource/test_metric.py similarity index 99% rename from test/unity/resource/test_metric.py rename to storops_test/unity/resource/test_metric.py index 3d3c8103..d69889bd 100644 --- a/test/unity/resource/test_metric.py +++ b/storops_test/unity/resource/test_metric.py @@ -24,7 +24,7 @@ from storops.unity.calculator import IdValues from storops.unity.resource.metric import UnityMetric, UnityMetricList, \ UnityMetricRealTimeQuery, UnityMetricRealTimeQueryList -from test.unity.rest_mock import t_rest, patch_rest +from storops_test.unity.rest_mock import t_rest, patch_rest __author__ = 'Cedric Zhuang' diff --git a/test/unity/resource/test_nas_server.py b/storops_test/unity/resource/test_nas_server.py similarity index 99% rename from test/unity/resource/test_nas_server.py rename to storops_test/unity/resource/test_nas_server.py index f29c0445..54dbd013 100644 --- a/test/unity/resource/test_nas_server.py +++ b/storops_test/unity/resource/test_nas_server.py @@ -36,7 +36,7 @@ from storops.unity.resource.pool import UnityPool from storops.unity.resource.sp import UnityStorageProcessor from storops.unity.resource.system import UnityVirusChecker -from test.unity.rest_mock import t_rest, patch_rest +from storops_test.unity.rest_mock import t_rest, patch_rest __author__ = 'Cedric Zhuang' diff --git a/test/unity/resource/test_nfs_server.py b/storops_test/unity/resource/test_nfs_server.py similarity index 97% rename from test/unity/resource/test_nfs_server.py rename to storops_test/unity/resource/test_nfs_server.py index d97db2d6..10ad078b 100644 --- a/test/unity/resource/test_nfs_server.py +++ b/storops_test/unity/resource/test_nfs_server.py @@ -25,7 +25,7 @@ from storops.unity.resource.nas_server import UnityNasServer from storops.unity.resource.nfs_server import UnityNfsServer, \ UnityNfsServerList -from test.unity.rest_mock import t_rest, patch_rest +from storops_test.unity.rest_mock import t_rest, patch_rest __author__ = 'Cedric Zhuang' diff --git a/test/unity/resource/test_nfs_share.py b/storops_test/unity/resource/test_nfs_share.py similarity index 99% rename from test/unity/resource/test_nfs_share.py rename to storops_test/unity/resource/test_nfs_share.py index 9ecba780..0b86aabc 100644 --- a/test/unity/resource/test_nfs_share.py +++ b/storops_test/unity/resource/test_nfs_share.py @@ -29,7 +29,7 @@ from storops.unity.resource.host import UnityHostList, UnityHost from storops.unity.resource.nfs_share import UnityNfsShare, \ UnityNfsShareList, UnityNfsHostConfig -from test.unity.rest_mock import patch_rest, t_rest +from storops_test.unity.rest_mock import patch_rest, t_rest __author__ = 'Cedric Zhuang' diff --git a/test/unity/resource/test_pool.py b/storops_test/unity/resource/test_pool.py similarity index 99% rename from test/unity/resource/test_pool.py rename to storops_test/unity/resource/test_pool.py index 75a0347d..74523190 100644 --- a/test/unity/resource/test_pool.py +++ b/storops_test/unity/resource/test_pool.py @@ -29,7 +29,7 @@ from storops.unity.resource.sp import UnityStorageProcessor from storops.unity.resource.nas_server import UnityNasServer -from test.unity.rest_mock import t_rest, patch_rest +from storops_test.unity.rest_mock import t_rest, patch_rest __author__ = 'Cedric Zhuang' diff --git a/test/unity/resource/test_port.py b/storops_test/unity/resource/test_port.py old mode 100755 new mode 100644 similarity index 99% rename from test/unity/resource/test_port.py rename to storops_test/unity/resource/test_port.py index 71c2a39c..3635e0d0 --- a/test/unity/resource/test_port.py +++ b/storops_test/unity/resource/test_port.py @@ -33,7 +33,7 @@ UnityIoLimitRule, UnityIoLimitPolicy, UnityIoLimitPolicyList, \ UnityLinkAggregation from storops.unity.resource.sp import UnityStorageProcessor -from test.unity.rest_mock import t_rest, patch_rest +from storops_test.unity.rest_mock import t_rest, patch_rest __author__ = 'Cedric Zhuang' diff --git a/test/unity/resource/test_snap.py b/storops_test/unity/resource/test_snap.py similarity index 99% rename from test/unity/resource/test_snap.py rename to storops_test/unity/resource/test_snap.py index a76929b7..e507f4fd 100644 --- a/test/unity/resource/test_snap.py +++ b/storops_test/unity/resource/test_snap.py @@ -29,7 +29,7 @@ from storops.unity.resource.lun import UnityLun from storops.unity.resource.snap import UnitySnap, UnitySnapList from storops.unity.resource.storage_resource import UnityStorageResource -from test.unity.rest_mock import t_rest, patch_rest +from storops_test.unity.rest_mock import t_rest, patch_rest __author__ = 'Cedric Zhuang' diff --git a/test/unity/resource/test_sp.py b/storops_test/unity/resource/test_sp.py similarity index 99% rename from test/unity/resource/test_sp.py rename to storops_test/unity/resource/test_sp.py index 1f2717b8..300a6e19 100644 --- a/test/unity/resource/test_sp.py +++ b/storops_test/unity/resource/test_sp.py @@ -28,7 +28,7 @@ from storops.unity.resource.sp import UnityStorageProcessor, \ UnityStorageProcessorList from storops.unity.resource.system import UnityDpe, UnitySystem -from test.unity.rest_mock import t_rest, patch_rest, t_unity +from storops_test.unity.rest_mock import t_rest, patch_rest, t_unity __author__ = 'Cedric Zhuang' diff --git a/test/unity/resource/test_storage_resource.py b/storops_test/unity/resource/test_storage_resource.py similarity index 99% rename from test/unity/resource/test_storage_resource.py rename to storops_test/unity/resource/test_storage_resource.py index c239016d..8e12f070 100644 --- a/test/unity/resource/test_storage_resource.py +++ b/storops_test/unity/resource/test_storage_resource.py @@ -33,7 +33,7 @@ from storops.unity.resource.snap import UnitySnap from storops.unity.resource.storage_resource import UnityStorageResource, \ UnityStorageResourceList, UnityConsistencyGroup, UnityConsistencyGroupList -from test.unity.rest_mock import t_rest, patch_rest +from storops_test.unity.rest_mock import t_rest, patch_rest __author__ = 'Cedric Zhuang' diff --git a/test/unity/resource/test_system.py b/storops_test/unity/resource/test_system.py old mode 100755 new mode 100644 similarity index 99% rename from test/unity/resource/test_system.py rename to storops_test/unity/resource/test_system.py index 471b3494..2d865056 --- a/test/unity/resource/test_system.py +++ b/storops_test/unity/resource/test_system.py @@ -60,7 +60,7 @@ UnityBasicSystemInfo, UnityBasicSystemInfoList, UnitySystemTime, \ UnityNtpServer from storops.unity.resource.vmware import UnityCapabilityProfileList -from test.unity.rest_mock import t_rest, patch_rest, t_unity +from storops_test.unity.rest_mock import t_rest, patch_rest, t_unity __author__ = 'Cedric Zhuang' diff --git a/test/unity/resource/test_tenant.py b/storops_test/unity/resource/test_tenant.py old mode 100755 new mode 100644 similarity index 98% rename from test/unity/resource/test_tenant.py rename to storops_test/unity/resource/test_tenant.py index 320e8a86..94ac33a4 --- a/test/unity/resource/test_tenant.py +++ b/storops_test/unity/resource/test_tenant.py @@ -23,7 +23,7 @@ from storops.unity.resource.host import UnityHostList from storops.unity.resource.nas_server import UnityNasServerList from storops.exception import UnityTenantNameInUseError, SystemAPINotSupported -from test.unity.rest_mock import t_rest, patch_rest +from storops_test.unity.rest_mock import t_rest, patch_rest __author__ = 'Tina Tang' diff --git a/test/unity/resource/test_type_resource.py b/storops_test/unity/resource/test_type_resource.py similarity index 96% rename from test/unity/resource/test_type_resource.py rename to storops_test/unity/resource/test_type_resource.py index 5bd02b40..beccba19 100644 --- a/test/unity/resource/test_type_resource.py +++ b/storops_test/unity/resource/test_type_resource.py @@ -20,7 +20,7 @@ from hamcrest import assert_that, equal_to, has_items, starts_with from storops.unity.resource.type_resource import UnityType -from test.unity.rest_mock import patch_rest, t_rest +from storops_test.unity.rest_mock import patch_rest, t_rest __author__ = 'Cedric Zhuang' diff --git a/test/unity/rest_data/HealthEnum/index.json b/storops_test/unity/rest_data/HealthEnum/index.json similarity index 100% rename from test/unity/rest_data/HealthEnum/index.json rename to storops_test/unity/rest_data/HealthEnum/index.json diff --git a/test/unity/rest_data/HealthEnum/type.json b/storops_test/unity/rest_data/HealthEnum/type.json similarity index 100% rename from test/unity/rest_data/HealthEnum/type.json rename to storops_test/unity/rest_data/HealthEnum/type.json diff --git a/test/unity/rest_data/RaidTypeEnum/index.json b/storops_test/unity/rest_data/RaidTypeEnum/index.json similarity index 100% rename from test/unity/rest_data/RaidTypeEnum/index.json rename to storops_test/unity/rest_data/RaidTypeEnum/index.json diff --git a/test/unity/rest_data/RaidTypeEnum/type.json b/storops_test/unity/rest_data/RaidTypeEnum/type.json similarity index 100% rename from test/unity/rest_data/RaidTypeEnum/type.json rename to storops_test/unity/rest_data/RaidTypeEnum/type.json diff --git a/test/unity/rest_data/aclUser/S-1-5-15-be80fa7-8ddad211-d49ba5f9-452.json b/storops_test/unity/rest_data/aclUser/S-1-5-15-be80fa7-8ddad211-d49ba5f9-452.json similarity index 100% rename from test/unity/rest_data/aclUser/S-1-5-15-be80fa7-8ddad211-d49ba5f9-452.json rename to storops_test/unity/rest_data/aclUser/S-1-5-15-be80fa7-8ddad211-d49ba5f9-452.json diff --git a/test/unity/rest_data/aclUser/all.json b/storops_test/unity/rest_data/aclUser/all.json similarity index 100% rename from test/unity/rest_data/aclUser/all.json rename to storops_test/unity/rest_data/aclUser/all.json diff --git a/test/unity/rest_data/aclUser/index.json b/storops_test/unity/rest_data/aclUser/index.json similarity index 100% rename from test/unity/rest_data/aclUser/index.json rename to storops_test/unity/rest_data/aclUser/index.json diff --git a/test/unity/rest_data/aclUser/not_found.json b/storops_test/unity/rest_data/aclUser/not_found.json similarity index 100% rename from test/unity/rest_data/aclUser/not_found.json rename to storops_test/unity/rest_data/aclUser/not_found.json diff --git a/test/unity/rest_data/aclUser/search_by_name.json b/storops_test/unity/rest_data/aclUser/search_by_name.json similarity index 100% rename from test/unity/rest_data/aclUser/search_by_name.json rename to storops_test/unity/rest_data/aclUser/search_by_name.json diff --git a/test/unity/rest_data/aclUser/smis_user_2.json b/storops_test/unity/rest_data/aclUser/smis_user_2.json similarity index 100% rename from test/unity/rest_data/aclUser/smis_user_2.json rename to storops_test/unity/rest_data/aclUser/smis_user_2.json diff --git a/test/unity/rest_data/aclUser/type.json b/storops_test/unity/rest_data/aclUser/type.json similarity index 100% rename from test/unity/rest_data/aclUser/type.json rename to storops_test/unity/rest_data/aclUser/type.json diff --git a/test/unity/rest_data/basicSystemInfo/0.json b/storops_test/unity/rest_data/basicSystemInfo/0.json similarity index 100% rename from test/unity/rest_data/basicSystemInfo/0.json rename to storops_test/unity/rest_data/basicSystemInfo/0.json diff --git a/test/unity/rest_data/basicSystemInfo/all.json b/storops_test/unity/rest_data/basicSystemInfo/all.json similarity index 100% rename from test/unity/rest_data/basicSystemInfo/all.json rename to storops_test/unity/rest_data/basicSystemInfo/all.json diff --git a/test/unity/rest_data/basicSystemInfo/index.json b/storops_test/unity/rest_data/basicSystemInfo/index.json similarity index 100% rename from test/unity/rest_data/basicSystemInfo/index.json rename to storops_test/unity/rest_data/basicSystemInfo/index.json diff --git a/test/unity/rest_data/basicSystemInfo/type.json b/storops_test/unity/rest_data/basicSystemInfo/type.json similarity index 100% rename from test/unity/rest_data/basicSystemInfo/type.json rename to storops_test/unity/rest_data/basicSystemInfo/type.json diff --git a/test/unity/rest_data/capabilityProfile/all.json b/storops_test/unity/rest_data/capabilityProfile/all.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/capabilityProfile/all.json rename to storops_test/unity/rest_data/capabilityProfile/all.json diff --git a/test/unity/rest_data/capabilityProfile/filter_profile_1.json b/storops_test/unity/rest_data/capabilityProfile/filter_profile_1.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/capabilityProfile/filter_profile_1.json rename to storops_test/unity/rest_data/capabilityProfile/filter_profile_1.json diff --git a/test/unity/rest_data/capabilityProfile/index.json b/storops_test/unity/rest_data/capabilityProfile/index.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/capabilityProfile/index.json rename to storops_test/unity/rest_data/capabilityProfile/index.json diff --git a/test/unity/rest_data/capabilityProfile/not_found.json b/storops_test/unity/rest_data/capabilityProfile/not_found.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/capabilityProfile/not_found.json rename to storops_test/unity/rest_data/capabilityProfile/not_found.json diff --git a/test/unity/rest_data/capabilityProfile/profile_1.json b/storops_test/unity/rest_data/capabilityProfile/profile_1.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/capabilityProfile/profile_1.json rename to storops_test/unity/rest_data/capabilityProfile/profile_1.json diff --git a/test/unity/rest_data/capabilityProfile/profile_2.json b/storops_test/unity/rest_data/capabilityProfile/profile_2.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/capabilityProfile/profile_2.json rename to storops_test/unity/rest_data/capabilityProfile/profile_2.json diff --git a/test/unity/rest_data/capabilityProfile/type.json b/storops_test/unity/rest_data/capabilityProfile/type.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/capabilityProfile/type.json rename to storops_test/unity/rest_data/capabilityProfile/type.json diff --git a/test/unity/rest_data/cifsServer/all.json b/storops_test/unity/rest_data/cifsServer/all.json similarity index 100% rename from test/unity/rest_data/cifsServer/all.json rename to storops_test/unity/rest_data/cifsServer/all.json diff --git a/test/unity/rest_data/cifsServer/cifs_2.json b/storops_test/unity/rest_data/cifsServer/cifs_2.json similarity index 100% rename from test/unity/rest_data/cifsServer/cifs_2.json rename to storops_test/unity/rest_data/cifsServer/cifs_2.json diff --git a/test/unity/rest_data/cifsServer/cifs_3.json b/storops_test/unity/rest_data/cifsServer/cifs_3.json similarity index 100% rename from test/unity/rest_data/cifsServer/cifs_3.json rename to storops_test/unity/rest_data/cifsServer/cifs_3.json diff --git a/test/unity/rest_data/cifsServer/cifs_7.json b/storops_test/unity/rest_data/cifsServer/cifs_7.json similarity index 100% rename from test/unity/rest_data/cifsServer/cifs_7.json rename to storops_test/unity/rest_data/cifsServer/cifs_7.json diff --git a/test/unity/rest_data/cifsServer/create_cifs_3.json b/storops_test/unity/rest_data/cifsServer/create_cifs_3.json similarity index 100% rename from test/unity/rest_data/cifsServer/create_cifs_3.json rename to storops_test/unity/rest_data/cifsServer/create_cifs_3.json diff --git a/test/unity/rest_data/cifsServer/domain_not_specified.json b/storops_test/unity/rest_data/cifsServer/domain_not_specified.json similarity index 100% rename from test/unity/rest_data/cifsServer/domain_not_specified.json rename to storops_test/unity/rest_data/cifsServer/domain_not_specified.json diff --git a/test/unity/rest_data/cifsServer/index.json b/storops_test/unity/rest_data/cifsServer/index.json similarity index 100% rename from test/unity/rest_data/cifsServer/index.json rename to storops_test/unity/rest_data/cifsServer/index.json diff --git a/test/unity/rest_data/cifsServer/name_existed.json b/storops_test/unity/rest_data/cifsServer/name_existed.json similarity index 100% rename from test/unity/rest_data/cifsServer/name_existed.json rename to storops_test/unity/rest_data/cifsServer/name_existed.json diff --git a/test/unity/rest_data/cifsServer/netbios_name_existed.json b/storops_test/unity/rest_data/cifsServer/netbios_name_existed.json similarity index 100% rename from test/unity/rest_data/cifsServer/netbios_name_existed.json rename to storops_test/unity/rest_data/cifsServer/netbios_name_existed.json diff --git a/test/unity/rest_data/cifsServer/not_found.json b/storops_test/unity/rest_data/cifsServer/not_found.json similarity index 100% rename from test/unity/rest_data/cifsServer/not_found.json rename to storops_test/unity/rest_data/cifsServer/not_found.json diff --git a/test/unity/rest_data/cifsServer/one_smb_server_only.json b/storops_test/unity/rest_data/cifsServer/one_smb_server_only.json similarity index 100% rename from test/unity/rest_data/cifsServer/one_smb_server_only.json rename to storops_test/unity/rest_data/cifsServer/one_smb_server_only.json diff --git a/test/unity/rest_data/cifsServer/password_criteria.json b/storops_test/unity/rest_data/cifsServer/password_criteria.json similarity index 100% rename from test/unity/rest_data/cifsServer/password_criteria.json rename to storops_test/unity/rest_data/cifsServer/password_criteria.json diff --git a/test/unity/rest_data/cifsServer/remove_cifs_3.json b/storops_test/unity/rest_data/cifsServer/remove_cifs_3.json similarity index 100% rename from test/unity/rest_data/cifsServer/remove_cifs_3.json rename to storops_test/unity/rest_data/cifsServer/remove_cifs_3.json diff --git a/test/unity/rest_data/cifsServer/type.json b/storops_test/unity/rest_data/cifsServer/type.json similarity index 100% rename from test/unity/rest_data/cifsServer/type.json rename to storops_test/unity/rest_data/cifsServer/type.json diff --git a/test/unity/rest_data/cifsShare/SMBShare_1.json b/storops_test/unity/rest_data/cifsShare/SMBShare_1.json similarity index 100% rename from test/unity/rest_data/cifsShare/SMBShare_1.json rename to storops_test/unity/rest_data/cifsShare/SMBShare_1.json diff --git a/test/unity/rest_data/cifsShare/SMBShare_15.json b/storops_test/unity/rest_data/cifsShare/SMBShare_15.json similarity index 100% rename from test/unity/rest_data/cifsShare/SMBShare_15.json rename to storops_test/unity/rest_data/cifsShare/SMBShare_15.json diff --git a/test/unity/rest_data/cifsShare/SMBShare_5.json b/storops_test/unity/rest_data/cifsShare/SMBShare_5.json similarity index 100% rename from test/unity/rest_data/cifsShare/SMBShare_5.json rename to storops_test/unity/rest_data/cifsShare/SMBShare_5.json diff --git a/test/unity/rest_data/cifsShare/SMBShare_7.json b/storops_test/unity/rest_data/cifsShare/SMBShare_7.json similarity index 100% rename from test/unity/rest_data/cifsShare/SMBShare_7.json rename to storops_test/unity/rest_data/cifsShare/SMBShare_7.json diff --git a/test/unity/rest_data/cifsShare/SMBShare_8.json b/storops_test/unity/rest_data/cifsShare/SMBShare_8.json similarity index 100% rename from test/unity/rest_data/cifsShare/SMBShare_8.json rename to storops_test/unity/rest_data/cifsShare/SMBShare_8.json diff --git a/test/unity/rest_data/cifsShare/ace_list_2_entries.json b/storops_test/unity/rest_data/cifsShare/ace_list_2_entries.json similarity index 100% rename from test/unity/rest_data/cifsShare/ace_list_2_entries.json rename to storops_test/unity/rest_data/cifsShare/ace_list_2_entries.json diff --git a/test/unity/rest_data/cifsShare/all.json b/storops_test/unity/rest_data/cifsShare/all.json similarity index 100% rename from test/unity/rest_data/cifsShare/all.json rename to storops_test/unity/rest_data/cifsShare/all.json diff --git a/test/unity/rest_data/cifsShare/create_SMBShare_15.json b/storops_test/unity/rest_data/cifsShare/create_SMBShare_15.json similarity index 100% rename from test/unity/rest_data/cifsShare/create_SMBShare_15.json rename to storops_test/unity/rest_data/cifsShare/create_SMBShare_15.json diff --git a/test/unity/rest_data/cifsShare/index.json b/storops_test/unity/rest_data/cifsShare/index.json similarity index 100% rename from test/unity/rest_data/cifsShare/index.json rename to storops_test/unity/rest_data/cifsShare/index.json diff --git a/test/unity/rest_data/cifsShare/name_cs1.json b/storops_test/unity/rest_data/cifsShare/name_cs1.json similarity index 100% rename from test/unity/rest_data/cifsShare/name_cs1.json rename to storops_test/unity/rest_data/cifsShare/name_cs1.json diff --git a/test/unity/rest_data/cifsShare/success.json b/storops_test/unity/rest_data/cifsShare/success.json similarity index 100% rename from test/unity/rest_data/cifsShare/success.json rename to storops_test/unity/rest_data/cifsShare/success.json diff --git a/test/unity/rest_data/cifsShare/type.json b/storops_test/unity/rest_data/cifsShare/type.json similarity index 100% rename from test/unity/rest_data/cifsShare/type.json rename to storops_test/unity/rest_data/cifsShare/type.json diff --git a/test/unity/rest_data/disk/all.json b/storops_test/unity/rest_data/disk/all.json similarity index 100% rename from test/unity/rest_data/disk/all.json rename to storops_test/unity/rest_data/disk/all.json diff --git a/test/unity/rest_data/disk/dae_0_1_disk_0.json b/storops_test/unity/rest_data/disk/dae_0_1_disk_0.json similarity index 100% rename from test/unity/rest_data/disk/dae_0_1_disk_0.json rename to storops_test/unity/rest_data/disk/dae_0_1_disk_0.json diff --git a/test/unity/rest_data/disk/dae_0_1_disk_2.json b/storops_test/unity/rest_data/disk/dae_0_1_disk_2.json similarity index 100% rename from test/unity/rest_data/disk/dae_0_1_disk_2.json rename to storops_test/unity/rest_data/disk/dae_0_1_disk_2.json diff --git a/test/unity/rest_data/disk/dpe_disk_23.json b/storops_test/unity/rest_data/disk/dpe_disk_23.json similarity index 100% rename from test/unity/rest_data/disk/dpe_disk_23.json rename to storops_test/unity/rest_data/disk/dpe_disk_23.json diff --git a/test/unity/rest_data/disk/flash_disks.json b/storops_test/unity/rest_data/disk/flash_disks.json similarity index 100% rename from test/unity/rest_data/disk/flash_disks.json rename to storops_test/unity/rest_data/disk/flash_disks.json diff --git a/test/unity/rest_data/disk/index.json b/storops_test/unity/rest_data/disk/index.json similarity index 100% rename from test/unity/rest_data/disk/index.json rename to storops_test/unity/rest_data/disk/index.json diff --git a/test/unity/rest_data/disk/type.json b/storops_test/unity/rest_data/disk/type.json similarity index 100% rename from test/unity/rest_data/disk/type.json rename to storops_test/unity/rest_data/disk/type.json diff --git a/test/unity/rest_data/dnsServer/0.json b/storops_test/unity/rest_data/dnsServer/0.json similarity index 100% rename from test/unity/rest_data/dnsServer/0.json rename to storops_test/unity/rest_data/dnsServer/0.json diff --git a/test/unity/rest_data/dnsServer/empty.json b/storops_test/unity/rest_data/dnsServer/empty.json similarity index 100% rename from test/unity/rest_data/dnsServer/empty.json rename to storops_test/unity/rest_data/dnsServer/empty.json diff --git a/test/unity/rest_data/dnsServer/index.json b/storops_test/unity/rest_data/dnsServer/index.json similarity index 100% rename from test/unity/rest_data/dnsServer/index.json rename to storops_test/unity/rest_data/dnsServer/index.json diff --git a/test/unity/rest_data/dnsServer/type.json b/storops_test/unity/rest_data/dnsServer/type.json similarity index 100% rename from test/unity/rest_data/dnsServer/type.json rename to storops_test/unity/rest_data/dnsServer/type.json diff --git a/test/unity/rest_data/dpe/all.json b/storops_test/unity/rest_data/dpe/all.json similarity index 100% rename from test/unity/rest_data/dpe/all.json rename to storops_test/unity/rest_data/dpe/all.json diff --git a/test/unity/rest_data/dpe/dpe.json b/storops_test/unity/rest_data/dpe/dpe.json similarity index 100% rename from test/unity/rest_data/dpe/dpe.json rename to storops_test/unity/rest_data/dpe/dpe.json diff --git a/test/unity/rest_data/dpe/index.json b/storops_test/unity/rest_data/dpe/index.json similarity index 100% rename from test/unity/rest_data/dpe/index.json rename to storops_test/unity/rest_data/dpe/index.json diff --git a/test/unity/rest_data/dpe/type.json b/storops_test/unity/rest_data/dpe/type.json similarity index 100% rename from test/unity/rest_data/dpe/type.json rename to storops_test/unity/rest_data/dpe/type.json diff --git a/test/unity/rest_data/error/200.json b/storops_test/unity/rest_data/error/200.json similarity index 100% rename from test/unity/rest_data/error/200.json rename to storops_test/unity/rest_data/error/200.json diff --git a/test/unity/rest_data/error/404.json b/storops_test/unity/rest_data/error/404.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/error/404.json rename to storops_test/unity/rest_data/error/404.json diff --git a/test/unity/rest_data/error/409.json b/storops_test/unity/rest_data/error/409.json similarity index 100% rename from test/unity/rest_data/error/409.json rename to storops_test/unity/rest_data/error/409.json diff --git a/test/unity/rest_data/ethernetPort/all.json b/storops_test/unity/rest_data/ethernetPort/all.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/ethernetPort/all.json rename to storops_test/unity/rest_data/ethernetPort/all.json diff --git a/test/unity/rest_data/ethernetPort/index.json b/storops_test/unity/rest_data/ethernetPort/index.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/ethernetPort/index.json rename to storops_test/unity/rest_data/ethernetPort/index.json diff --git a/test/unity/rest_data/ethernetPort/not_found.json b/storops_test/unity/rest_data/ethernetPort/not_found.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/ethernetPort/not_found.json rename to storops_test/unity/rest_data/ethernetPort/not_found.json diff --git a/test/unity/rest_data/ethernetPort/spa_eth3.json b/storops_test/unity/rest_data/ethernetPort/spa_eth3.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/ethernetPort/spa_eth3.json rename to storops_test/unity/rest_data/ethernetPort/spa_eth3.json diff --git a/test/unity/rest_data/ethernetPort/spa_eth4.json b/storops_test/unity/rest_data/ethernetPort/spa_eth4.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/ethernetPort/spa_eth4.json rename to storops_test/unity/rest_data/ethernetPort/spa_eth4.json diff --git a/test/unity/rest_data/ethernetPort/spb_eth3.json b/storops_test/unity/rest_data/ethernetPort/spb_eth3.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/ethernetPort/spb_eth3.json rename to storops_test/unity/rest_data/ethernetPort/spb_eth3.json diff --git a/test/unity/rest_data/ethernetPort/success.json b/storops_test/unity/rest_data/ethernetPort/success.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/ethernetPort/success.json rename to storops_test/unity/rest_data/ethernetPort/success.json diff --git a/test/unity/rest_data/ethernetPort/type.json b/storops_test/unity/rest_data/ethernetPort/type.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/ethernetPort/type.json rename to storops_test/unity/rest_data/ethernetPort/type.json diff --git a/test/unity/rest_data/fcPort/all.json b/storops_test/unity/rest_data/fcPort/all.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/fcPort/all.json rename to storops_test/unity/rest_data/fcPort/all.json diff --git a/test/unity/rest_data/fcPort/index.json b/storops_test/unity/rest_data/fcPort/index.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/fcPort/index.json rename to storops_test/unity/rest_data/fcPort/index.json diff --git a/test/unity/rest_data/fcPort/spa_fc4.json b/storops_test/unity/rest_data/fcPort/spa_fc4.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/fcPort/spa_fc4.json rename to storops_test/unity/rest_data/fcPort/spa_fc4.json diff --git a/test/unity/rest_data/fcPort/type.json b/storops_test/unity/rest_data/fcPort/type.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/fcPort/type.json rename to storops_test/unity/rest_data/fcPort/type.json diff --git a/test/unity/rest_data/fileDNSServer/all.json b/storops_test/unity/rest_data/fileDNSServer/all.json similarity index 100% rename from test/unity/rest_data/fileDNSServer/all.json rename to storops_test/unity/rest_data/fileDNSServer/all.json diff --git a/test/unity/rest_data/fileDNSServer/create_dns_3.json b/storops_test/unity/rest_data/fileDNSServer/create_dns_3.json similarity index 100% rename from test/unity/rest_data/fileDNSServer/create_dns_3.json rename to storops_test/unity/rest_data/fileDNSServer/create_dns_3.json diff --git a/test/unity/rest_data/fileDNSServer/create_dns_4.json b/storops_test/unity/rest_data/fileDNSServer/create_dns_4.json similarity index 100% rename from test/unity/rest_data/fileDNSServer/create_dns_4.json rename to storops_test/unity/rest_data/fileDNSServer/create_dns_4.json diff --git a/test/unity/rest_data/fileDNSServer/create_one_dns_per_nas.json b/storops_test/unity/rest_data/fileDNSServer/create_one_dns_per_nas.json similarity index 100% rename from test/unity/rest_data/fileDNSServer/create_one_dns_per_nas.json rename to storops_test/unity/rest_data/fileDNSServer/create_one_dns_per_nas.json diff --git a/test/unity/rest_data/fileDNSServer/dns_2.json b/storops_test/unity/rest_data/fileDNSServer/dns_2.json similarity index 100% rename from test/unity/rest_data/fileDNSServer/dns_2.json rename to storops_test/unity/rest_data/fileDNSServer/dns_2.json diff --git a/test/unity/rest_data/fileDNSServer/dns_3.json b/storops_test/unity/rest_data/fileDNSServer/dns_3.json similarity index 100% rename from test/unity/rest_data/fileDNSServer/dns_3.json rename to storops_test/unity/rest_data/fileDNSServer/dns_3.json diff --git a/test/unity/rest_data/fileDNSServer/dns_4.json b/storops_test/unity/rest_data/fileDNSServer/dns_4.json similarity index 100% rename from test/unity/rest_data/fileDNSServer/dns_4.json rename to storops_test/unity/rest_data/fileDNSServer/dns_4.json diff --git a/test/unity/rest_data/fileDNSServer/index.json b/storops_test/unity/rest_data/fileDNSServer/index.json similarity index 100% rename from test/unity/rest_data/fileDNSServer/index.json rename to storops_test/unity/rest_data/fileDNSServer/index.json diff --git a/test/unity/rest_data/fileDNSServer/remove_not_found.json b/storops_test/unity/rest_data/fileDNSServer/remove_not_found.json similarity index 100% rename from test/unity/rest_data/fileDNSServer/remove_not_found.json rename to storops_test/unity/rest_data/fileDNSServer/remove_not_found.json diff --git a/test/unity/rest_data/fileDNSServer/type.json b/storops_test/unity/rest_data/fileDNSServer/type.json similarity index 100% rename from test/unity/rest_data/fileDNSServer/type.json rename to storops_test/unity/rest_data/fileDNSServer/type.json diff --git a/test/unity/rest_data/fileInterface/all.json b/storops_test/unity/rest_data/fileInterface/all.json similarity index 100% rename from test/unity/rest_data/fileInterface/all.json rename to storops_test/unity/rest_data/fileInterface/all.json diff --git a/test/unity/rest_data/fileInterface/create_if_20.json b/storops_test/unity/rest_data/fileInterface/create_if_20.json similarity index 100% rename from test/unity/rest_data/fileInterface/create_if_20.json rename to storops_test/unity/rest_data/fileInterface/create_if_20.json diff --git a/test/unity/rest_data/fileInterface/create_ip_in_use.json b/storops_test/unity/rest_data/fileInterface/create_ip_in_use.json similarity index 100% rename from test/unity/rest_data/fileInterface/create_ip_in_use.json rename to storops_test/unity/rest_data/fileInterface/create_ip_in_use.json diff --git a/test/unity/rest_data/fileInterface/create_nas_server_not_found.json b/storops_test/unity/rest_data/fileInterface/create_nas_server_not_found.json similarity index 100% rename from test/unity/rest_data/fileInterface/create_nas_server_not_found.json rename to storops_test/unity/rest_data/fileInterface/create_nas_server_not_found.json diff --git a/test/unity/rest_data/fileInterface/if_16.json b/storops_test/unity/rest_data/fileInterface/if_16.json similarity index 100% rename from test/unity/rest_data/fileInterface/if_16.json rename to storops_test/unity/rest_data/fileInterface/if_16.json diff --git a/test/unity/rest_data/fileInterface/if_20.json b/storops_test/unity/rest_data/fileInterface/if_20.json similarity index 100% rename from test/unity/rest_data/fileInterface/if_20.json rename to storops_test/unity/rest_data/fileInterface/if_20.json diff --git a/test/unity/rest_data/fileInterface/index.json b/storops_test/unity/rest_data/fileInterface/index.json similarity index 100% rename from test/unity/rest_data/fileInterface/index.json rename to storops_test/unity/rest_data/fileInterface/index.json diff --git a/test/unity/rest_data/fileInterface/remove_if_20.json b/storops_test/unity/rest_data/fileInterface/remove_if_20.json similarity index 100% rename from test/unity/rest_data/fileInterface/remove_if_20.json rename to storops_test/unity/rest_data/fileInterface/remove_if_20.json diff --git a/test/unity/rest_data/fileInterface/remove_not_found.json b/storops_test/unity/rest_data/fileInterface/remove_not_found.json similarity index 100% rename from test/unity/rest_data/fileInterface/remove_not_found.json rename to storops_test/unity/rest_data/fileInterface/remove_not_found.json diff --git a/test/unity/rest_data/fileInterface/type.json b/storops_test/unity/rest_data/fileInterface/type.json similarity index 100% rename from test/unity/rest_data/fileInterface/type.json rename to storops_test/unity/rest_data/fileInterface/type.json diff --git a/test/unity/rest_data/filesystem/all.json b/storops_test/unity/rest_data/filesystem/all.json similarity index 100% rename from test/unity/rest_data/filesystem/all.json rename to storops_test/unity/rest_data/filesystem/all.json diff --git a/test/unity/rest_data/filesystem/by_name_not_found.json b/storops_test/unity/rest_data/filesystem/by_name_not_found.json similarity index 100% rename from test/unity/rest_data/filesystem/by_name_not_found.json rename to storops_test/unity/rest_data/filesystem/by_name_not_found.json diff --git a/test/unity/rest_data/filesystem/fs_1.json b/storops_test/unity/rest_data/filesystem/fs_1.json similarity index 100% rename from test/unity/rest_data/filesystem/fs_1.json rename to storops_test/unity/rest_data/filesystem/fs_1.json diff --git a/test/unity/rest_data/filesystem/fs_10.json b/storops_test/unity/rest_data/filesystem/fs_10.json similarity index 100% rename from test/unity/rest_data/filesystem/fs_10.json rename to storops_test/unity/rest_data/filesystem/fs_10.json diff --git a/test/unity/rest_data/filesystem/fs_11.json b/storops_test/unity/rest_data/filesystem/fs_11.json similarity index 100% rename from test/unity/rest_data/filesystem/fs_11.json rename to storops_test/unity/rest_data/filesystem/fs_11.json diff --git a/test/unity/rest_data/filesystem/fs_14.json b/storops_test/unity/rest_data/filesystem/fs_14.json similarity index 100% rename from test/unity/rest_data/filesystem/fs_14.json rename to storops_test/unity/rest_data/filesystem/fs_14.json diff --git a/test/unity/rest_data/filesystem/fs_16.json b/storops_test/unity/rest_data/filesystem/fs_16.json similarity index 100% rename from test/unity/rest_data/filesystem/fs_16.json rename to storops_test/unity/rest_data/filesystem/fs_16.json diff --git a/test/unity/rest_data/filesystem/fs_17.json b/storops_test/unity/rest_data/filesystem/fs_17.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/filesystem/fs_17.json rename to storops_test/unity/rest_data/filesystem/fs_17.json diff --git a/test/unity/rest_data/filesystem/fs_2.json b/storops_test/unity/rest_data/filesystem/fs_2.json similarity index 100% rename from test/unity/rest_data/filesystem/fs_2.json rename to storops_test/unity/rest_data/filesystem/fs_2.json diff --git a/test/unity/rest_data/filesystem/fs_399.json b/storops_test/unity/rest_data/filesystem/fs_399.json similarity index 100% rename from test/unity/rest_data/filesystem/fs_399.json rename to storops_test/unity/rest_data/filesystem/fs_399.json diff --git a/test/unity/rest_data/filesystem/fs_5.json b/storops_test/unity/rest_data/filesystem/fs_5.json similarity index 100% rename from test/unity/rest_data/filesystem/fs_5.json rename to storops_test/unity/rest_data/filesystem/fs_5.json diff --git a/test/unity/rest_data/filesystem/fs_8.json b/storops_test/unity/rest_data/filesystem/fs_8.json similarity index 100% rename from test/unity/rest_data/filesystem/fs_8.json rename to storops_test/unity/rest_data/filesystem/fs_8.json diff --git a/test/unity/rest_data/filesystem/fs_9.json b/storops_test/unity/rest_data/filesystem/fs_9.json similarity index 100% rename from test/unity/rest_data/filesystem/fs_9.json rename to storops_test/unity/rest_data/filesystem/fs_9.json diff --git a/test/unity/rest_data/filesystem/index.json b/storops_test/unity/rest_data/filesystem/index.json similarity index 100% rename from test/unity/rest_data/filesystem/index.json rename to storops_test/unity/rest_data/filesystem/index.json diff --git a/test/unity/rest_data/filesystem/not_found.json b/storops_test/unity/rest_data/filesystem/not_found.json similarity index 100% rename from test/unity/rest_data/filesystem/not_found.json rename to storops_test/unity/rest_data/filesystem/not_found.json diff --git a/test/unity/rest_data/filesystem/type.json b/storops_test/unity/rest_data/filesystem/type.json similarity index 100% rename from test/unity/rest_data/filesystem/type.json rename to storops_test/unity/rest_data/filesystem/type.json diff --git a/test/unity/rest_data/host/all.json b/storops_test/unity/rest_data/host/all.json similarity index 100% rename from test/unity/rest_data/host/all.json rename to storops_test/unity/rest_data/host/all.json diff --git a/test/unity/rest_data/host/all_with_tenant.json b/storops_test/unity/rest_data/host/all_with_tenant.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/host/all_with_tenant.json rename to storops_test/unity/rest_data/host/all_with_tenant.json diff --git a/test/unity/rest_data/host/create_host_11.json b/storops_test/unity/rest_data/host/create_host_11.json similarity index 100% rename from test/unity/rest_data/host/create_host_11.json rename to storops_test/unity/rest_data/host/create_host_11.json diff --git a/test/unity/rest_data/host/create_host_15.json b/storops_test/unity/rest_data/host/create_host_15.json similarity index 100% rename from test/unity/rest_data/host/create_host_15.json rename to storops_test/unity/rest_data/host/create_host_15.json diff --git a/test/unity/rest_data/host/create_host_19.json b/storops_test/unity/rest_data/host/create_host_19.json similarity index 100% rename from test/unity/rest_data/host/create_host_19.json rename to storops_test/unity/rest_data/host/create_host_19.json diff --git a/test/unity/rest_data/host/create_subnet_8.json b/storops_test/unity/rest_data/host/create_subnet_8.json similarity index 100% rename from test/unity/rest_data/host/create_subnet_8.json rename to storops_test/unity/rest_data/host/create_subnet_8.json diff --git a/test/unity/rest_data/host/empty.json b/storops_test/unity/rest_data/host/empty.json similarity index 100% rename from test/unity/rest_data/host/empty.json rename to storops_test/unity/rest_data/host/empty.json diff --git a/test/unity/rest_data/host/host_1.json b/storops_test/unity/rest_data/host/host_1.json similarity index 100% rename from test/unity/rest_data/host/host_1.json rename to storops_test/unity/rest_data/host/host_1.json diff --git a/test/unity/rest_data/host/host_10.json b/storops_test/unity/rest_data/host/host_10.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/host/host_10.json rename to storops_test/unity/rest_data/host/host_10.json diff --git a/test/unity/rest_data/host/host_11.json b/storops_test/unity/rest_data/host/host_11.json similarity index 100% rename from test/unity/rest_data/host/host_11.json rename to storops_test/unity/rest_data/host/host_11.json diff --git a/test/unity/rest_data/host/host_12.json b/storops_test/unity/rest_data/host/host_12.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/host/host_12.json rename to storops_test/unity/rest_data/host/host_12.json diff --git a/test/unity/rest_data/host/host_13.json b/storops_test/unity/rest_data/host/host_13.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/host/host_13.json rename to storops_test/unity/rest_data/host/host_13.json diff --git a/test/unity/rest_data/host/host_15.json b/storops_test/unity/rest_data/host/host_15.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/host/host_15.json rename to storops_test/unity/rest_data/host/host_15.json diff --git a/test/unity/rest_data/host/host_16.json b/storops_test/unity/rest_data/host/host_16.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/host/host_16.json rename to storops_test/unity/rest_data/host/host_16.json diff --git a/test/unity/rest_data/host/host_22.json b/storops_test/unity/rest_data/host/host_22.json similarity index 100% rename from test/unity/rest_data/host/host_22.json rename to storops_test/unity/rest_data/host/host_22.json diff --git a/test/unity/rest_data/host/host_9.json b/storops_test/unity/rest_data/host/host_9.json similarity index 100% rename from test/unity/rest_data/host/host_9.json rename to storops_test/unity/rest_data/host/host_9.json diff --git a/test/unity/rest_data/host/index.json b/storops_test/unity/rest_data/host/index.json similarity index 100% rename from test/unity/rest_data/host/index.json rename to storops_test/unity/rest_data/host/index.json diff --git a/test/unity/rest_data/host/not_found.json b/storops_test/unity/rest_data/host/not_found.json similarity index 100% rename from test/unity/rest_data/host/not_found.json rename to storops_test/unity/rest_data/host/not_found.json diff --git a/test/unity/rest_data/host/subnet_8.json b/storops_test/unity/rest_data/host/subnet_8.json similarity index 100% rename from test/unity/rest_data/host/subnet_8.json rename to storops_test/unity/rest_data/host/subnet_8.json diff --git a/test/unity/rest_data/host/subnet_9.json b/storops_test/unity/rest_data/host/subnet_9.json similarity index 100% rename from test/unity/rest_data/host/subnet_9.json rename to storops_test/unity/rest_data/host/subnet_9.json diff --git a/test/unity/rest_data/host/type.json b/storops_test/unity/rest_data/host/type.json similarity index 100% rename from test/unity/rest_data/host/type.json rename to storops_test/unity/rest_data/host/type.json diff --git a/test/unity/rest_data/hostIPPort/HostNetworkAddress_1.json b/storops_test/unity/rest_data/hostIPPort/HostNetworkAddress_1.json similarity index 100% rename from test/unity/rest_data/hostIPPort/HostNetworkAddress_1.json rename to storops_test/unity/rest_data/hostIPPort/HostNetworkAddress_1.json diff --git a/test/unity/rest_data/hostIPPort/HostNetworkAddress_10.json b/storops_test/unity/rest_data/hostIPPort/HostNetworkAddress_10.json similarity index 100% rename from test/unity/rest_data/hostIPPort/HostNetworkAddress_10.json rename to storops_test/unity/rest_data/hostIPPort/HostNetworkAddress_10.json diff --git a/test/unity/rest_data/hostIPPort/HostNetworkAddress_11.json b/storops_test/unity/rest_data/hostIPPort/HostNetworkAddress_11.json similarity index 100% rename from test/unity/rest_data/hostIPPort/HostNetworkAddress_11.json rename to storops_test/unity/rest_data/hostIPPort/HostNetworkAddress_11.json diff --git a/test/unity/rest_data/hostIPPort/HostNetworkAddress_12.json b/storops_test/unity/rest_data/hostIPPort/HostNetworkAddress_12.json similarity index 100% rename from test/unity/rest_data/hostIPPort/HostNetworkAddress_12.json rename to storops_test/unity/rest_data/hostIPPort/HostNetworkAddress_12.json diff --git a/test/unity/rest_data/hostIPPort/all.json b/storops_test/unity/rest_data/hostIPPort/all.json similarity index 100% rename from test/unity/rest_data/hostIPPort/all.json rename to storops_test/unity/rest_data/hostIPPort/all.json diff --git a/test/unity/rest_data/hostIPPort/create_HostNetworkAddress_10.json b/storops_test/unity/rest_data/hostIPPort/create_HostNetworkAddress_10.json similarity index 100% rename from test/unity/rest_data/hostIPPort/create_HostNetworkAddress_10.json rename to storops_test/unity/rest_data/hostIPPort/create_HostNetworkAddress_10.json diff --git a/test/unity/rest_data/hostIPPort/create_HostNetworkAddress_12.json b/storops_test/unity/rest_data/hostIPPort/create_HostNetworkAddress_12.json similarity index 100% rename from test/unity/rest_data/hostIPPort/create_HostNetworkAddress_12.json rename to storops_test/unity/rest_data/hostIPPort/create_HostNetworkAddress_12.json diff --git a/test/unity/rest_data/hostIPPort/create_HostNetworkAddress_14.json b/storops_test/unity/rest_data/hostIPPort/create_HostNetworkAddress_14.json similarity index 100% rename from test/unity/rest_data/hostIPPort/create_HostNetworkAddress_14.json rename to storops_test/unity/rest_data/hostIPPort/create_HostNetworkAddress_14.json diff --git a/test/unity/rest_data/hostIPPort/create_HostNetworkAddress_18.json b/storops_test/unity/rest_data/hostIPPort/create_HostNetworkAddress_18.json similarity index 100% rename from test/unity/rest_data/hostIPPort/create_HostNetworkAddress_18.json rename to storops_test/unity/rest_data/hostIPPort/create_HostNetworkAddress_18.json diff --git a/test/unity/rest_data/hostIPPort/empty.json b/storops_test/unity/rest_data/hostIPPort/empty.json similarity index 100% rename from test/unity/rest_data/hostIPPort/empty.json rename to storops_test/unity/rest_data/hostIPPort/empty.json diff --git a/test/unity/rest_data/hostIPPort/filter_1.1.1.1.json b/storops_test/unity/rest_data/hostIPPort/filter_1.1.1.1.json similarity index 100% rename from test/unity/rest_data/hostIPPort/filter_1.1.1.1.json rename to storops_test/unity/rest_data/hostIPPort/filter_1.1.1.1.json diff --git a/test/unity/rest_data/hostIPPort/filter_1.1.1.2.json b/storops_test/unity/rest_data/hostIPPort/filter_1.1.1.2.json similarity index 100% rename from test/unity/rest_data/hostIPPort/filter_1.1.1.2.json rename to storops_test/unity/rest_data/hostIPPort/filter_1.1.1.2.json diff --git a/test/unity/rest_data/hostIPPort/filter_1.1.1.3.json b/storops_test/unity/rest_data/hostIPPort/filter_1.1.1.3.json similarity index 100% rename from test/unity/rest_data/hostIPPort/filter_1.1.1.3.json rename to storops_test/unity/rest_data/hostIPPort/filter_1.1.1.3.json diff --git a/test/unity/rest_data/hostIPPort/filter_10.244.209.90.json b/storops_test/unity/rest_data/hostIPPort/filter_10.244.209.90.json similarity index 100% rename from test/unity/rest_data/hostIPPort/filter_10.244.209.90.json rename to storops_test/unity/rest_data/hostIPPort/filter_10.244.209.90.json diff --git a/test/unity/rest_data/hostIPPort/filter_192.168.112.23.json b/storops_test/unity/rest_data/hostIPPort/filter_192.168.112.23.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/hostIPPort/filter_192.168.112.23.json rename to storops_test/unity/rest_data/hostIPPort/filter_192.168.112.23.json diff --git a/test/unity/rest_data/hostIPPort/filter_2.2.2.2.json b/storops_test/unity/rest_data/hostIPPort/filter_2.2.2.2.json similarity index 100% rename from test/unity/rest_data/hostIPPort/filter_2.2.2.2.json rename to storops_test/unity/rest_data/hostIPPort/filter_2.2.2.2.json diff --git a/test/unity/rest_data/hostIPPort/filter_8.8.8.8.json b/storops_test/unity/rest_data/hostIPPort/filter_8.8.8.8.json similarity index 100% rename from test/unity/rest_data/hostIPPort/filter_8.8.8.8.json rename to storops_test/unity/rest_data/hostIPPort/filter_8.8.8.8.json diff --git a/test/unity/rest_data/hostIPPort/host_not_found.json b/storops_test/unity/rest_data/hostIPPort/host_not_found.json similarity index 100% rename from test/unity/rest_data/hostIPPort/host_not_found.json rename to storops_test/unity/rest_data/hostIPPort/host_not_found.json diff --git a/test/unity/rest_data/hostIPPort/index.json b/storops_test/unity/rest_data/hostIPPort/index.json similarity index 100% rename from test/unity/rest_data/hostIPPort/index.json rename to storops_test/unity/rest_data/hostIPPort/index.json diff --git a/test/unity/rest_data/hostIPPort/ip_in_use.json b/storops_test/unity/rest_data/hostIPPort/ip_in_use.json similarity index 100% rename from test/unity/rest_data/hostIPPort/ip_in_use.json rename to storops_test/unity/rest_data/hostIPPort/ip_in_use.json diff --git a/test/unity/rest_data/hostIPPort/not_found.json b/storops_test/unity/rest_data/hostIPPort/not_found.json similarity index 100% rename from test/unity/rest_data/hostIPPort/not_found.json rename to storops_test/unity/rest_data/hostIPPort/not_found.json diff --git a/test/unity/rest_data/hostIPPort/type.json b/storops_test/unity/rest_data/hostIPPort/type.json similarity index 100% rename from test/unity/rest_data/hostIPPort/type.json rename to storops_test/unity/rest_data/hostIPPort/type.json diff --git a/test/unity/rest_data/hostInitiator/all.json b/storops_test/unity/rest_data/hostInitiator/all.json similarity index 100% rename from test/unity/rest_data/hostInitiator/all.json rename to storops_test/unity/rest_data/hostInitiator/all.json diff --git a/test/unity/rest_data/hostInitiator/create_fc_initiator.json b/storops_test/unity/rest_data/hostInitiator/create_fc_initiator.json similarity index 100% rename from test/unity/rest_data/hostInitiator/create_fc_initiator.json rename to storops_test/unity/rest_data/hostInitiator/create_fc_initiator.json diff --git a/test/unity/rest_data/hostInitiator/create_iscsi_initiator.json b/storops_test/unity/rest_data/hostInitiator/create_iscsi_initiator.json similarity index 100% rename from test/unity/rest_data/hostInitiator/create_iscsi_initiator.json rename to storops_test/unity/rest_data/hostInitiator/create_iscsi_initiator.json diff --git a/test/unity/rest_data/hostInitiator/empty.json b/storops_test/unity/rest_data/hostInitiator/empty.json similarity index 100% rename from test/unity/rest_data/hostInitiator/empty.json rename to storops_test/unity/rest_data/hostInitiator/empty.json diff --git a/test/unity/rest_data/hostInitiator/index.json b/storops_test/unity/rest_data/hostInitiator/index.json similarity index 100% rename from test/unity/rest_data/hostInitiator/index.json rename to storops_test/unity/rest_data/hostInitiator/index.json diff --git a/test/unity/rest_data/hostInitiator/initiator_1.json b/storops_test/unity/rest_data/hostInitiator/initiator_1.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/hostInitiator/initiator_1.json rename to storops_test/unity/rest_data/hostInitiator/initiator_1.json diff --git a/test/unity/rest_data/hostInitiator/initiator_2.json b/storops_test/unity/rest_data/hostInitiator/initiator_2.json similarity index 100% rename from test/unity/rest_data/hostInitiator/initiator_2.json rename to storops_test/unity/rest_data/hostInitiator/initiator_2.json diff --git a/test/unity/rest_data/hostInitiator/initiator_3.json b/storops_test/unity/rest_data/hostInitiator/initiator_3.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/hostInitiator/initiator_3.json rename to storops_test/unity/rest_data/hostInitiator/initiator_3.json diff --git a/test/unity/rest_data/hostInitiator/not_found.json b/storops_test/unity/rest_data/hostInitiator/not_found.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/hostInitiator/not_found.json rename to storops_test/unity/rest_data/hostInitiator/not_found.json diff --git a/test/unity/rest_data/hostInitiator/type.json b/storops_test/unity/rest_data/hostInitiator/type.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/hostInitiator/type.json rename to storops_test/unity/rest_data/hostInitiator/type.json diff --git a/test/unity/rest_data/hostInitiatorPath/all.json b/storops_test/unity/rest_data/hostInitiatorPath/all.json similarity index 100% rename from test/unity/rest_data/hostInitiatorPath/all.json rename to storops_test/unity/rest_data/hostInitiatorPath/all.json diff --git a/test/unity/rest_data/hostInitiatorPath/index.json b/storops_test/unity/rest_data/hostInitiatorPath/index.json similarity index 100% rename from test/unity/rest_data/hostInitiatorPath/index.json rename to storops_test/unity/rest_data/hostInitiatorPath/index.json diff --git a/test/unity/rest_data/hostInitiatorPath/type.json b/storops_test/unity/rest_data/hostInitiatorPath/type.json similarity index 100% rename from test/unity/rest_data/hostInitiatorPath/type.json rename to storops_test/unity/rest_data/hostInitiatorPath/type.json diff --git a/test/unity/rest_data/hostLUN/all.json b/storops_test/unity/rest_data/hostLUN/all.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/hostLUN/all.json rename to storops_test/unity/rest_data/hostLUN/all.json diff --git a/test/unity/rest_data/hostLUN/filter_hostlun_1.json b/storops_test/unity/rest_data/hostLUN/filter_hostlun_1.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/hostLUN/filter_hostlun_1.json rename to storops_test/unity/rest_data/hostLUN/filter_hostlun_1.json diff --git a/test/unity/rest_data/hostLUN/filter_hostlun_2.json b/storops_test/unity/rest_data/hostLUN/filter_hostlun_2.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/hostLUN/filter_hostlun_2.json rename to storops_test/unity/rest_data/hostLUN/filter_hostlun_2.json diff --git a/test/unity/rest_data/hostLUN/filter_sv2.json b/storops_test/unity/rest_data/hostLUN/filter_sv2.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/hostLUN/filter_sv2.json rename to storops_test/unity/rest_data/hostLUN/filter_sv2.json diff --git a/test/unity/rest_data/hostLUN/filter_sv4.json b/storops_test/unity/rest_data/hostLUN/filter_sv4.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/hostLUN/filter_sv4.json rename to storops_test/unity/rest_data/hostLUN/filter_sv4.json diff --git a/test/unity/rest_data/hostLUN/host_22_sv_3338.json b/storops_test/unity/rest_data/hostLUN/host_22_sv_3338.json similarity index 100% rename from test/unity/rest_data/hostLUN/host_22_sv_3338.json rename to storops_test/unity/rest_data/hostLUN/host_22_sv_3338.json diff --git a/test/unity/rest_data/hostLUN/host_22_sv_3338_38654709071.json b/storops_test/unity/rest_data/hostLUN/host_22_sv_3338_38654709071.json similarity index 100% rename from test/unity/rest_data/hostLUN/host_22_sv_3338_38654709071.json rename to storops_test/unity/rest_data/hostLUN/host_22_sv_3338_38654709071.json diff --git a/test/unity/rest_data/hostLUN/hostlun_1.json b/storops_test/unity/rest_data/hostLUN/hostlun_1.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/hostLUN/hostlun_1.json rename to storops_test/unity/rest_data/hostLUN/hostlun_1.json diff --git a/test/unity/rest_data/hostLUN/hostlun_2.json b/storops_test/unity/rest_data/hostLUN/hostlun_2.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/hostLUN/hostlun_2.json rename to storops_test/unity/rest_data/hostLUN/hostlun_2.json diff --git a/test/unity/rest_data/hostLUN/index.json b/storops_test/unity/rest_data/hostLUN/index.json similarity index 100% rename from test/unity/rest_data/hostLUN/index.json rename to storops_test/unity/rest_data/hostLUN/index.json diff --git a/test/unity/rest_data/hostLUN/not_found.json b/storops_test/unity/rest_data/hostLUN/not_found.json similarity index 100% rename from test/unity/rest_data/hostLUN/not_found.json rename to storops_test/unity/rest_data/hostLUN/not_found.json diff --git a/test/unity/rest_data/hostLUN/null_host11_luns.json b/storops_test/unity/rest_data/hostLUN/null_host11_luns.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/hostLUN/null_host11_luns.json rename to storops_test/unity/rest_data/hostLUN/null_host11_luns.json diff --git a/test/unity/rest_data/hostLUN/type.json b/storops_test/unity/rest_data/hostLUN/type.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/hostLUN/type.json rename to storops_test/unity/rest_data/hostLUN/type.json diff --git a/test/unity/rest_data/ioLimitPolicy/all.json b/storops_test/unity/rest_data/ioLimitPolicy/all.json similarity index 100% rename from test/unity/rest_data/ioLimitPolicy/all.json rename to storops_test/unity/rest_data/ioLimitPolicy/all.json diff --git a/test/unity/rest_data/ioLimitPolicy/create_qp_8.json b/storops_test/unity/rest_data/ioLimitPolicy/create_qp_8.json similarity index 100% rename from test/unity/rest_data/ioLimitPolicy/create_qp_8.json rename to storops_test/unity/rest_data/ioLimitPolicy/create_qp_8.json diff --git a/test/unity/rest_data/ioLimitPolicy/create_qp_9.json b/storops_test/unity/rest_data/ioLimitPolicy/create_qp_9.json similarity index 100% rename from test/unity/rest_data/ioLimitPolicy/create_qp_9.json rename to storops_test/unity/rest_data/ioLimitPolicy/create_qp_9.json diff --git a/test/unity/rest_data/ioLimitPolicy/empty.json b/storops_test/unity/rest_data/ioLimitPolicy/empty.json similarity index 100% rename from test/unity/rest_data/ioLimitPolicy/empty.json rename to storops_test/unity/rest_data/ioLimitPolicy/empty.json diff --git a/test/unity/rest_data/ioLimitPolicy/index.json b/storops_test/unity/rest_data/ioLimitPolicy/index.json similarity index 100% rename from test/unity/rest_data/ioLimitPolicy/index.json rename to storops_test/unity/rest_data/ioLimitPolicy/index.json diff --git a/test/unity/rest_data/ioLimitPolicy/not_exist.json b/storops_test/unity/rest_data/ioLimitPolicy/not_exist.json similarity index 100% rename from test/unity/rest_data/ioLimitPolicy/not_exist.json rename to storops_test/unity/rest_data/ioLimitPolicy/not_exist.json diff --git a/test/unity/rest_data/ioLimitPolicy/policy_name_used.json b/storops_test/unity/rest_data/ioLimitPolicy/policy_name_used.json similarity index 100% rename from test/unity/rest_data/ioLimitPolicy/policy_name_used.json rename to storops_test/unity/rest_data/ioLimitPolicy/policy_name_used.json diff --git a/test/unity/rest_data/ioLimitPolicy/qp_2.json b/storops_test/unity/rest_data/ioLimitPolicy/qp_2.json similarity index 100% rename from test/unity/rest_data/ioLimitPolicy/qp_2.json rename to storops_test/unity/rest_data/ioLimitPolicy/qp_2.json diff --git a/test/unity/rest_data/ioLimitPolicy/qp_4.json b/storops_test/unity/rest_data/ioLimitPolicy/qp_4.json similarity index 100% rename from test/unity/rest_data/ioLimitPolicy/qp_4.json rename to storops_test/unity/rest_data/ioLimitPolicy/qp_4.json diff --git a/test/unity/rest_data/ioLimitPolicy/qp_8.json b/storops_test/unity/rest_data/ioLimitPolicy/qp_8.json similarity index 100% rename from test/unity/rest_data/ioLimitPolicy/qp_8.json rename to storops_test/unity/rest_data/ioLimitPolicy/qp_8.json diff --git a/test/unity/rest_data/ioLimitPolicy/qp_9.json b/storops_test/unity/rest_data/ioLimitPolicy/qp_9.json similarity index 100% rename from test/unity/rest_data/ioLimitPolicy/qp_9.json rename to storops_test/unity/rest_data/ioLimitPolicy/qp_9.json diff --git a/test/unity/rest_data/ioLimitPolicy/type.json b/storops_test/unity/rest_data/ioLimitPolicy/type.json similarity index 100% rename from test/unity/rest_data/ioLimitPolicy/type.json rename to storops_test/unity/rest_data/ioLimitPolicy/type.json diff --git a/test/unity/rest_data/ioLimitRule/index.json b/storops_test/unity/rest_data/ioLimitRule/index.json similarity index 100% rename from test/unity/rest_data/ioLimitRule/index.json rename to storops_test/unity/rest_data/ioLimitRule/index.json diff --git a/test/unity/rest_data/ioLimitRule/qr_1.json b/storops_test/unity/rest_data/ioLimitRule/qr_1.json similarity index 100% rename from test/unity/rest_data/ioLimitRule/qr_1.json rename to storops_test/unity/rest_data/ioLimitRule/qr_1.json diff --git a/test/unity/rest_data/ioLimitRule/type.json b/storops_test/unity/rest_data/ioLimitRule/type.json similarity index 100% rename from test/unity/rest_data/ioLimitRule/type.json rename to storops_test/unity/rest_data/ioLimitRule/type.json diff --git a/test/unity/rest_data/ipPort/all.json b/storops_test/unity/rest_data/ipPort/all.json similarity index 100% rename from test/unity/rest_data/ipPort/all.json rename to storops_test/unity/rest_data/ipPort/all.json diff --git a/test/unity/rest_data/ipPort/index.json b/storops_test/unity/rest_data/ipPort/index.json similarity index 100% rename from test/unity/rest_data/ipPort/index.json rename to storops_test/unity/rest_data/ipPort/index.json diff --git a/test/unity/rest_data/ipPort/spa_eth2.json b/storops_test/unity/rest_data/ipPort/spa_eth2.json similarity index 100% rename from test/unity/rest_data/ipPort/spa_eth2.json rename to storops_test/unity/rest_data/ipPort/spa_eth2.json diff --git a/test/unity/rest_data/ipPort/spa_la_2.json b/storops_test/unity/rest_data/ipPort/spa_la_2.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/ipPort/spa_la_2.json rename to storops_test/unity/rest_data/ipPort/spa_la_2.json diff --git a/test/unity/rest_data/ipPort/type.json b/storops_test/unity/rest_data/ipPort/type.json similarity index 100% rename from test/unity/rest_data/ipPort/type.json rename to storops_test/unity/rest_data/ipPort/type.json diff --git a/test/unity/rest_data/iscsiPortal/all.json b/storops_test/unity/rest_data/iscsiPortal/all.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/iscsiPortal/all.json rename to storops_test/unity/rest_data/iscsiPortal/all.json diff --git a/test/unity/rest_data/iscsiPortal/if_4.json b/storops_test/unity/rest_data/iscsiPortal/if_4.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/iscsiPortal/if_4.json rename to storops_test/unity/rest_data/iscsiPortal/if_4.json diff --git a/test/unity/rest_data/iscsiPortal/index.json b/storops_test/unity/rest_data/iscsiPortal/index.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/iscsiPortal/index.json rename to storops_test/unity/rest_data/iscsiPortal/index.json diff --git a/test/unity/rest_data/iscsiPortal/type.json b/storops_test/unity/rest_data/iscsiPortal/type.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/iscsiPortal/type.json rename to storops_test/unity/rest_data/iscsiPortal/type.json diff --git a/test/unity/rest_data/job/B-3-id.json b/storops_test/unity/rest_data/job/B-3-id.json similarity index 100% rename from test/unity/rest_data/job/B-3-id.json rename to storops_test/unity/rest_data/job/B-3-id.json diff --git a/test/unity/rest_data/job/B-3.json b/storops_test/unity/rest_data/job/B-3.json similarity index 100% rename from test/unity/rest_data/job/B-3.json rename to storops_test/unity/rest_data/job/B-3.json diff --git a/test/unity/rest_data/job/B-693-id.json b/storops_test/unity/rest_data/job/B-693-id.json similarity index 100% rename from test/unity/rest_data/job/B-693-id.json rename to storops_test/unity/rest_data/job/B-693-id.json diff --git a/test/unity/rest_data/job/B-693.json b/storops_test/unity/rest_data/job/B-693.json similarity index 100% rename from test/unity/rest_data/job/B-693.json rename to storops_test/unity/rest_data/job/B-693.json diff --git a/test/unity/rest_data/job/B-694-id.json b/storops_test/unity/rest_data/job/B-694-id.json similarity index 100% rename from test/unity/rest_data/job/B-694-id.json rename to storops_test/unity/rest_data/job/B-694-id.json diff --git a/test/unity/rest_data/job/B-694.json b/storops_test/unity/rest_data/job/B-694.json similarity index 100% rename from test/unity/rest_data/job/B-694.json rename to storops_test/unity/rest_data/job/B-694.json diff --git a/test/unity/rest_data/job/N-345.json b/storops_test/unity/rest_data/job/N-345.json similarity index 100% rename from test/unity/rest_data/job/N-345.json rename to storops_test/unity/rest_data/job/N-345.json diff --git a/test/unity/rest_data/job/all.json b/storops_test/unity/rest_data/job/all.json similarity index 100% rename from test/unity/rest_data/job/all.json rename to storops_test/unity/rest_data/job/all.json diff --git a/test/unity/rest_data/job/index.json b/storops_test/unity/rest_data/job/index.json similarity index 100% rename from test/unity/rest_data/job/index.json rename to storops_test/unity/rest_data/job/index.json diff --git a/test/unity/rest_data/job/type.json b/storops_test/unity/rest_data/job/type.json similarity index 100% rename from test/unity/rest_data/job/type.json rename to storops_test/unity/rest_data/job/type.json diff --git a/test/unity/rest_data/linkAggregation/all.json b/storops_test/unity/rest_data/linkAggregation/all.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/linkAggregation/all.json rename to storops_test/unity/rest_data/linkAggregation/all.json diff --git a/test/unity/rest_data/linkAggregation/create_spa_la_2.json b/storops_test/unity/rest_data/linkAggregation/create_spa_la_2.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/linkAggregation/create_spa_la_2.json rename to storops_test/unity/rest_data/linkAggregation/create_spa_la_2.json diff --git a/test/unity/rest_data/linkAggregation/index.json b/storops_test/unity/rest_data/linkAggregation/index.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/linkAggregation/index.json rename to storops_test/unity/rest_data/linkAggregation/index.json diff --git a/test/unity/rest_data/linkAggregation/modify.json b/storops_test/unity/rest_data/linkAggregation/modify.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/linkAggregation/modify.json rename to storops_test/unity/rest_data/linkAggregation/modify.json diff --git a/test/unity/rest_data/linkAggregation/not_found.json b/storops_test/unity/rest_data/linkAggregation/not_found.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/linkAggregation/not_found.json rename to storops_test/unity/rest_data/linkAggregation/not_found.json diff --git a/test/unity/rest_data/linkAggregation/port_aggregated_error.json b/storops_test/unity/rest_data/linkAggregation/port_aggregated_error.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/linkAggregation/port_aggregated_error.json rename to storops_test/unity/rest_data/linkAggregation/port_aggregated_error.json diff --git a/test/unity/rest_data/linkAggregation/spa_la_2.json b/storops_test/unity/rest_data/linkAggregation/spa_la_2.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/linkAggregation/spa_la_2.json rename to storops_test/unity/rest_data/linkAggregation/spa_la_2.json diff --git a/test/unity/rest_data/linkAggregation/type.json b/storops_test/unity/rest_data/linkAggregation/type.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/linkAggregation/type.json rename to storops_test/unity/rest_data/linkAggregation/type.json diff --git a/test/unity/rest_data/lun/all.json b/storops_test/unity/rest_data/lun/all.json similarity index 100% rename from test/unity/rest_data/lun/all.json rename to storops_test/unity/rest_data/lun/all.json diff --git a/test/unity/rest_data/lun/index.json b/storops_test/unity/rest_data/lun/index.json similarity index 100% rename from test/unity/rest_data/lun/index.json rename to storops_test/unity/rest_data/lun/index.json diff --git a/test/unity/rest_data/lun/not_found.json b/storops_test/unity/rest_data/lun/not_found.json similarity index 100% rename from test/unity/rest_data/lun/not_found.json rename to storops_test/unity/rest_data/lun/not_found.json diff --git a/test/unity/rest_data/lun/search_fail.json b/storops_test/unity/rest_data/lun/search_fail.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/lun/search_fail.json rename to storops_test/unity/rest_data/lun/search_fail.json diff --git a/test/unity/rest_data/lun/sv_10.json b/storops_test/unity/rest_data/lun/sv_10.json similarity index 100% rename from test/unity/rest_data/lun/sv_10.json rename to storops_test/unity/rest_data/lun/sv_10.json diff --git a/test/unity/rest_data/lun/sv_11.json b/storops_test/unity/rest_data/lun/sv_11.json similarity index 100% rename from test/unity/rest_data/lun/sv_11.json rename to storops_test/unity/rest_data/lun/sv_11.json diff --git a/test/unity/rest_data/lun/sv_2.json b/storops_test/unity/rest_data/lun/sv_2.json similarity index 100% rename from test/unity/rest_data/lun/sv_2.json rename to storops_test/unity/rest_data/lun/sv_2.json diff --git a/test/unity/rest_data/lun/sv_2019.json b/storops_test/unity/rest_data/lun/sv_2019.json similarity index 100% rename from test/unity/rest_data/lun/sv_2019.json rename to storops_test/unity/rest_data/lun/sv_2019.json diff --git a/test/unity/rest_data/lun/sv_2026.json b/storops_test/unity/rest_data/lun/sv_2026.json similarity index 100% rename from test/unity/rest_data/lun/sv_2026.json rename to storops_test/unity/rest_data/lun/sv_2026.json diff --git a/test/unity/rest_data/lun/sv_3.json b/storops_test/unity/rest_data/lun/sv_3.json similarity index 100% rename from test/unity/rest_data/lun/sv_3.json rename to storops_test/unity/rest_data/lun/sv_3.json diff --git a/test/unity/rest_data/lun/sv_3338.json b/storops_test/unity/rest_data/lun/sv_3338.json similarity index 100% rename from test/unity/rest_data/lun/sv_3338.json rename to storops_test/unity/rest_data/lun/sv_3338.json diff --git a/test/unity/rest_data/lun/sv_4.json b/storops_test/unity/rest_data/lun/sv_4.json similarity index 100% rename from test/unity/rest_data/lun/sv_4.json rename to storops_test/unity/rest_data/lun/sv_4.json diff --git a/test/unity/rest_data/lun/sv_567.json b/storops_test/unity/rest_data/lun/sv_567.json similarity index 100% rename from test/unity/rest_data/lun/sv_567.json rename to storops_test/unity/rest_data/lun/sv_567.json diff --git a/test/unity/rest_data/lun/sv_8.json b/storops_test/unity/rest_data/lun/sv_8.json similarity index 100% rename from test/unity/rest_data/lun/sv_8.json rename to storops_test/unity/rest_data/lun/sv_8.json diff --git a/test/unity/rest_data/lun/sv_9.json b/storops_test/unity/rest_data/lun/sv_9.json similarity index 100% rename from test/unity/rest_data/lun/sv_9.json rename to storops_test/unity/rest_data/lun/sv_9.json diff --git a/test/unity/rest_data/lun/type.json b/storops_test/unity/rest_data/lun/type.json similarity index 100% rename from test/unity/rest_data/lun/type.json rename to storops_test/unity/rest_data/lun/type.json diff --git a/test/unity/rest_data/metric/10234.json b/storops_test/unity/rest_data/metric/10234.json similarity index 100% rename from test/unity/rest_data/metric/10234.json rename to storops_test/unity/rest_data/metric/10234.json diff --git a/test/unity/rest_data/metric/index.json b/storops_test/unity/rest_data/metric/index.json similarity index 100% rename from test/unity/rest_data/metric/index.json rename to storops_test/unity/rest_data/metric/index.json diff --git a/test/unity/rest_data/metric/metrics_page_1.json b/storops_test/unity/rest_data/metric/metrics_page_1.json similarity index 100% rename from test/unity/rest_data/metric/metrics_page_1.json rename to storops_test/unity/rest_data/metric/metrics_page_1.json diff --git a/test/unity/rest_data/metric/metrics_page_2.json b/storops_test/unity/rest_data/metric/metrics_page_2.json similarity index 100% rename from test/unity/rest_data/metric/metrics_page_2.json rename to storops_test/unity/rest_data/metric/metrics_page_2.json diff --git a/test/unity/rest_data/metric/type.json b/storops_test/unity/rest_data/metric/type.json similarity index 100% rename from test/unity/rest_data/metric/type.json rename to storops_test/unity/rest_data/metric/type.json diff --git a/test/unity/rest_data/metricQueryResult/index.json b/storops_test/unity/rest_data/metricQueryResult/index.json similarity index 100% rename from test/unity/rest_data/metricQueryResult/index.json rename to storops_test/unity/rest_data/metricQueryResult/index.json diff --git a/test/unity/rest_data/metricQueryResult/query_id_14.json b/storops_test/unity/rest_data/metricQueryResult/query_id_14.json similarity index 100% rename from test/unity/rest_data/metricQueryResult/query_id_14.json rename to storops_test/unity/rest_data/metricQueryResult/query_id_14.json diff --git a/test/unity/rest_data/metricQueryResult/query_id_17.json b/storops_test/unity/rest_data/metricQueryResult/query_id_17.json similarity index 100% rename from test/unity/rest_data/metricQueryResult/query_id_17.json rename to storops_test/unity/rest_data/metricQueryResult/query_id_17.json diff --git a/test/unity/rest_data/metricQueryResult/query_id_18.json b/storops_test/unity/rest_data/metricQueryResult/query_id_18.json similarity index 100% rename from test/unity/rest_data/metricQueryResult/query_id_18.json rename to storops_test/unity/rest_data/metricQueryResult/query_id_18.json diff --git a/test/unity/rest_data/metricQueryResult/query_id_19.json b/storops_test/unity/rest_data/metricQueryResult/query_id_19.json similarity index 100% rename from test/unity/rest_data/metricQueryResult/query_id_19.json rename to storops_test/unity/rest_data/metricQueryResult/query_id_19.json diff --git a/test/unity/rest_data/metricQueryResult/query_id_2.json b/storops_test/unity/rest_data/metricQueryResult/query_id_2.json similarity index 100% rename from test/unity/rest_data/metricQueryResult/query_id_2.json rename to storops_test/unity/rest_data/metricQueryResult/query_id_2.json diff --git a/test/unity/rest_data/metricQueryResult/query_id_22.json b/storops_test/unity/rest_data/metricQueryResult/query_id_22.json similarity index 100% rename from test/unity/rest_data/metricQueryResult/query_id_22.json rename to storops_test/unity/rest_data/metricQueryResult/query_id_22.json diff --git a/test/unity/rest_data/metricQueryResult/query_id_3.json b/storops_test/unity/rest_data/metricQueryResult/query_id_3.json similarity index 100% rename from test/unity/rest_data/metricQueryResult/query_id_3.json rename to storops_test/unity/rest_data/metricQueryResult/query_id_3.json diff --git a/test/unity/rest_data/metricQueryResult/query_id_34.json b/storops_test/unity/rest_data/metricQueryResult/query_id_34.json similarity index 100% rename from test/unity/rest_data/metricQueryResult/query_id_34.json rename to storops_test/unity/rest_data/metricQueryResult/query_id_34.json diff --git a/test/unity/rest_data/metricQueryResult/query_id_6.json b/storops_test/unity/rest_data/metricQueryResult/query_id_6.json similarity index 100% rename from test/unity/rest_data/metricQueryResult/query_id_6.json rename to storops_test/unity/rest_data/metricQueryResult/query_id_6.json diff --git a/test/unity/rest_data/metricQueryResult/type.json b/storops_test/unity/rest_data/metricQueryResult/type.json similarity index 100% rename from test/unity/rest_data/metricQueryResult/type.json rename to storops_test/unity/rest_data/metricQueryResult/type.json diff --git a/test/unity/rest_data/metricRealTimeQuery/2.json b/storops_test/unity/rest_data/metricRealTimeQuery/2.json similarity index 100% rename from test/unity/rest_data/metricRealTimeQuery/2.json rename to storops_test/unity/rest_data/metricRealTimeQuery/2.json diff --git a/test/unity/rest_data/metricRealTimeQuery/4.json b/storops_test/unity/rest_data/metricRealTimeQuery/4.json similarity index 100% rename from test/unity/rest_data/metricRealTimeQuery/4.json rename to storops_test/unity/rest_data/metricRealTimeQuery/4.json diff --git a/test/unity/rest_data/metricRealTimeQuery/all.json b/storops_test/unity/rest_data/metricRealTimeQuery/all.json similarity index 100% rename from test/unity/rest_data/metricRealTimeQuery/all.json rename to storops_test/unity/rest_data/metricRealTimeQuery/all.json diff --git a/test/unity/rest_data/metricRealTimeQuery/create_id_15.json b/storops_test/unity/rest_data/metricRealTimeQuery/create_id_15.json similarity index 100% rename from test/unity/rest_data/metricRealTimeQuery/create_id_15.json rename to storops_test/unity/rest_data/metricRealTimeQuery/create_id_15.json diff --git a/test/unity/rest_data/metricRealTimeQuery/create_id_4.json b/storops_test/unity/rest_data/metricRealTimeQuery/create_id_4.json similarity index 100% rename from test/unity/rest_data/metricRealTimeQuery/create_id_4.json rename to storops_test/unity/rest_data/metricRealTimeQuery/create_id_4.json diff --git a/test/unity/rest_data/metricRealTimeQuery/index.json b/storops_test/unity/rest_data/metricRealTimeQuery/index.json similarity index 100% rename from test/unity/rest_data/metricRealTimeQuery/index.json rename to storops_test/unity/rest_data/metricRealTimeQuery/index.json diff --git a/test/unity/rest_data/metricRealTimeQuery/interval_300.json b/storops_test/unity/rest_data/metricRealTimeQuery/interval_300.json similarity index 100% rename from test/unity/rest_data/metricRealTimeQuery/interval_300.json rename to storops_test/unity/rest_data/metricRealTimeQuery/interval_300.json diff --git a/test/unity/rest_data/metricRealTimeQuery/query_id_not_found.json b/storops_test/unity/rest_data/metricRealTimeQuery/query_id_not_found.json similarity index 100% rename from test/unity/rest_data/metricRealTimeQuery/query_id_not_found.json rename to storops_test/unity/rest_data/metricRealTimeQuery/query_id_not_found.json diff --git a/test/unity/rest_data/metricRealTimeQuery/type.json b/storops_test/unity/rest_data/metricRealTimeQuery/type.json similarity index 100% rename from test/unity/rest_data/metricRealTimeQuery/type.json rename to storops_test/unity/rest_data/metricRealTimeQuery/type.json diff --git a/test/unity/rest_data/nasServer/all.json b/storops_test/unity/rest_data/nasServer/all.json similarity index 100% rename from test/unity/rest_data/nasServer/all.json rename to storops_test/unity/rest_data/nasServer/all.json diff --git a/test/unity/rest_data/nasServer/auto_balance_sp_one_sp.json b/storops_test/unity/rest_data/nasServer/auto_balance_sp_one_sp.json similarity index 100% rename from test/unity/rest_data/nasServer/auto_balance_sp_one_sp.json rename to storops_test/unity/rest_data/nasServer/auto_balance_sp_one_sp.json diff --git a/test/unity/rest_data/nasServer/auto_balance_sp_to_spa.json b/storops_test/unity/rest_data/nasServer/auto_balance_sp_to_spa.json similarity index 100% rename from test/unity/rest_data/nasServer/auto_balance_sp_to_spa.json rename to storops_test/unity/rest_data/nasServer/auto_balance_sp_to_spa.json diff --git a/test/unity/rest_data/nasServer/create_name_in_use.json b/storops_test/unity/rest_data/nasServer/create_name_in_use.json similarity index 100% rename from test/unity/rest_data/nasServer/create_name_in_use.json rename to storops_test/unity/rest_data/nasServer/create_name_in_use.json diff --git a/test/unity/rest_data/nasServer/create_nas_3_success.json b/storops_test/unity/rest_data/nasServer/create_nas_3_success.json similarity index 100% rename from test/unity/rest_data/nasServer/create_nas_3_success.json rename to storops_test/unity/rest_data/nasServer/create_nas_3_success.json diff --git a/test/unity/rest_data/nasServer/index.json b/storops_test/unity/rest_data/nasServer/index.json similarity index 100% rename from test/unity/rest_data/nasServer/index.json rename to storops_test/unity/rest_data/nasServer/index.json diff --git a/test/unity/rest_data/nasServer/nas_1.json b/storops_test/unity/rest_data/nasServer/nas_1.json similarity index 100% rename from test/unity/rest_data/nasServer/nas_1.json rename to storops_test/unity/rest_data/nasServer/nas_1.json diff --git a/test/unity/rest_data/nasServer/nas_2.json b/storops_test/unity/rest_data/nasServer/nas_2.json similarity index 100% rename from test/unity/rest_data/nasServer/nas_2.json rename to storops_test/unity/rest_data/nasServer/nas_2.json diff --git a/test/unity/rest_data/nasServer/nas_3.json b/storops_test/unity/rest_data/nasServer/nas_3.json similarity index 100% rename from test/unity/rest_data/nasServer/nas_3.json rename to storops_test/unity/rest_data/nasServer/nas_3.json diff --git a/test/unity/rest_data/nasServer/nas_5.json b/storops_test/unity/rest_data/nasServer/nas_5.json similarity index 100% rename from test/unity/rest_data/nasServer/nas_5.json rename to storops_test/unity/rest_data/nasServer/nas_5.json diff --git a/test/unity/rest_data/nasServer/nas_6.json b/storops_test/unity/rest_data/nasServer/nas_6.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/nasServer/nas_6.json rename to storops_test/unity/rest_data/nasServer/nas_6.json diff --git a/test/unity/rest_data/nasServer/nas_7.json b/storops_test/unity/rest_data/nasServer/nas_7.json similarity index 100% rename from test/unity/rest_data/nasServer/nas_7.json rename to storops_test/unity/rest_data/nasServer/nas_7.json diff --git a/test/unity/rest_data/nasServer/nas_server_in_tenant2.json b/storops_test/unity/rest_data/nasServer/nas_server_in_tenant2.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/nasServer/nas_server_in_tenant2.json rename to storops_test/unity/rest_data/nasServer/nas_server_in_tenant2.json diff --git a/test/unity/rest_data/nasServer/remove_nas_3.json b/storops_test/unity/rest_data/nasServer/remove_nas_3.json similarity index 100% rename from test/unity/rest_data/nasServer/remove_nas_3.json rename to storops_test/unity/rest_data/nasServer/remove_nas_3.json diff --git a/test/unity/rest_data/nasServer/remove_not_found.json b/storops_test/unity/rest_data/nasServer/remove_not_found.json similarity index 100% rename from test/unity/rest_data/nasServer/remove_not_found.json rename to storops_test/unity/rest_data/nasServer/remove_not_found.json diff --git a/test/unity/rest_data/nasServer/type.json b/storops_test/unity/rest_data/nasServer/type.json similarity index 100% rename from test/unity/rest_data/nasServer/type.json rename to storops_test/unity/rest_data/nasServer/type.json diff --git a/test/unity/rest_data/nfsServer/all.json b/storops_test/unity/rest_data/nfsServer/all.json similarity index 100% rename from test/unity/rest_data/nfsServer/all.json rename to storops_test/unity/rest_data/nfsServer/all.json diff --git a/test/unity/rest_data/nfsServer/create_nfs_3.json b/storops_test/unity/rest_data/nfsServer/create_nfs_3.json similarity index 100% rename from test/unity/rest_data/nfsServer/create_nfs_3.json rename to storops_test/unity/rest_data/nfsServer/create_nfs_3.json diff --git a/test/unity/rest_data/nfsServer/index.json b/storops_test/unity/rest_data/nfsServer/index.json similarity index 100% rename from test/unity/rest_data/nfsServer/index.json rename to storops_test/unity/rest_data/nfsServer/index.json diff --git a/test/unity/rest_data/nfsServer/nfs_2.json b/storops_test/unity/rest_data/nfsServer/nfs_2.json similarity index 100% rename from test/unity/rest_data/nfsServer/nfs_2.json rename to storops_test/unity/rest_data/nfsServer/nfs_2.json diff --git a/test/unity/rest_data/nfsServer/nfs_3.json b/storops_test/unity/rest_data/nfsServer/nfs_3.json similarity index 100% rename from test/unity/rest_data/nfsServer/nfs_3.json rename to storops_test/unity/rest_data/nfsServer/nfs_3.json diff --git a/test/unity/rest_data/nfsServer/nfs_already_enabled.json b/storops_test/unity/rest_data/nfsServer/nfs_already_enabled.json similarity index 100% rename from test/unity/rest_data/nfsServer/nfs_already_enabled.json rename to storops_test/unity/rest_data/nfsServer/nfs_already_enabled.json diff --git a/test/unity/rest_data/nfsServer/not_found.json b/storops_test/unity/rest_data/nfsServer/not_found.json similarity index 100% rename from test/unity/rest_data/nfsServer/not_found.json rename to storops_test/unity/rest_data/nfsServer/not_found.json diff --git a/test/unity/rest_data/nfsServer/remove_nfs_3.json b/storops_test/unity/rest_data/nfsServer/remove_nfs_3.json similarity index 100% rename from test/unity/rest_data/nfsServer/remove_nfs_3.json rename to storops_test/unity/rest_data/nfsServer/remove_nfs_3.json diff --git a/test/unity/rest_data/nfsServer/type.json b/storops_test/unity/rest_data/nfsServer/type.json similarity index 100% rename from test/unity/rest_data/nfsServer/type.json rename to storops_test/unity/rest_data/nfsServer/type.json diff --git a/test/unity/rest_data/nfsShare/NFSShare_1.json b/storops_test/unity/rest_data/nfsShare/NFSShare_1.json similarity index 100% rename from test/unity/rest_data/nfsShare/NFSShare_1.json rename to storops_test/unity/rest_data/nfsShare/NFSShare_1.json diff --git a/test/unity/rest_data/nfsShare/NFSShare_11.json b/storops_test/unity/rest_data/nfsShare/NFSShare_11.json similarity index 100% rename from test/unity/rest_data/nfsShare/NFSShare_11.json rename to storops_test/unity/rest_data/nfsShare/NFSShare_11.json diff --git a/test/unity/rest_data/nfsShare/NFSShare_2.json b/storops_test/unity/rest_data/nfsShare/NFSShare_2.json similarity index 100% rename from test/unity/rest_data/nfsShare/NFSShare_2.json rename to storops_test/unity/rest_data/nfsShare/NFSShare_2.json diff --git a/test/unity/rest_data/nfsShare/NFSShare_30.json b/storops_test/unity/rest_data/nfsShare/NFSShare_30.json similarity index 100% rename from test/unity/rest_data/nfsShare/NFSShare_30.json rename to storops_test/unity/rest_data/nfsShare/NFSShare_30.json diff --git a/test/unity/rest_data/nfsShare/NFSShare_31.json b/storops_test/unity/rest_data/nfsShare/NFSShare_31.json similarity index 100% rename from test/unity/rest_data/nfsShare/NFSShare_31.json rename to storops_test/unity/rest_data/nfsShare/NFSShare_31.json diff --git a/test/unity/rest_data/nfsShare/NFSShare_32.json b/storops_test/unity/rest_data/nfsShare/NFSShare_32.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/nfsShare/NFSShare_32.json rename to storops_test/unity/rest_data/nfsShare/NFSShare_32.json diff --git a/test/unity/rest_data/nfsShare/NFSShare_4.json b/storops_test/unity/rest_data/nfsShare/NFSShare_4.json similarity index 100% rename from test/unity/rest_data/nfsShare/NFSShare_4.json rename to storops_test/unity/rest_data/nfsShare/NFSShare_4.json diff --git a/test/unity/rest_data/nfsShare/NFSShare_5.json b/storops_test/unity/rest_data/nfsShare/NFSShare_5.json similarity index 100% rename from test/unity/rest_data/nfsShare/NFSShare_5.json rename to storops_test/unity/rest_data/nfsShare/NFSShare_5.json diff --git a/test/unity/rest_data/nfsShare/NFSShare_6.json b/storops_test/unity/rest_data/nfsShare/NFSShare_6.json similarity index 100% rename from test/unity/rest_data/nfsShare/NFSShare_6.json rename to storops_test/unity/rest_data/nfsShare/NFSShare_6.json diff --git a/test/unity/rest_data/nfsShare/NFSShare_7.json b/storops_test/unity/rest_data/nfsShare/NFSShare_7.json similarity index 100% rename from test/unity/rest_data/nfsShare/NFSShare_7.json rename to storops_test/unity/rest_data/nfsShare/NFSShare_7.json diff --git a/test/unity/rest_data/nfsShare/all.json b/storops_test/unity/rest_data/nfsShare/all.json similarity index 100% rename from test/unity/rest_data/nfsShare/all.json rename to storops_test/unity/rest_data/nfsShare/all.json diff --git a/test/unity/rest_data/nfsShare/create_NFSShare_11.json b/storops_test/unity/rest_data/nfsShare/create_NFSShare_11.json similarity index 100% rename from test/unity/rest_data/nfsShare/create_NFSShare_11.json rename to storops_test/unity/rest_data/nfsShare/create_NFSShare_11.json diff --git a/test/unity/rest_data/nfsShare/create_failed_ckpt_snap.json b/storops_test/unity/rest_data/nfsShare/create_failed_ckpt_snap.json similarity index 100% rename from test/unity/rest_data/nfsShare/create_failed_ckpt_snap.json rename to storops_test/unity/rest_data/nfsShare/create_failed_ckpt_snap.json diff --git a/test/unity/rest_data/nfsShare/index.json b/storops_test/unity/rest_data/nfsShare/index.json similarity index 100% rename from test/unity/rest_data/nfsShare/index.json rename to storops_test/unity/rest_data/nfsShare/index.json diff --git a/test/unity/rest_data/nfsShare/name_ns1.json b/storops_test/unity/rest_data/nfsShare/name_ns1.json similarity index 100% rename from test/unity/rest_data/nfsShare/name_ns1.json rename to storops_test/unity/rest_data/nfsShare/name_ns1.json diff --git a/test/unity/rest_data/nfsShare/success.json b/storops_test/unity/rest_data/nfsShare/success.json similarity index 100% rename from test/unity/rest_data/nfsShare/success.json rename to storops_test/unity/rest_data/nfsShare/success.json diff --git a/test/unity/rest_data/nfsShare/type.json b/storops_test/unity/rest_data/nfsShare/type.json similarity index 100% rename from test/unity/rest_data/nfsShare/type.json rename to storops_test/unity/rest_data/nfsShare/type.json diff --git a/test/unity/rest_data/ntpServer/0.json b/storops_test/unity/rest_data/ntpServer/0.json similarity index 100% rename from test/unity/rest_data/ntpServer/0.json rename to storops_test/unity/rest_data/ntpServer/0.json diff --git a/test/unity/rest_data/ntpServer/empty.json b/storops_test/unity/rest_data/ntpServer/empty.json similarity index 100% rename from test/unity/rest_data/ntpServer/empty.json rename to storops_test/unity/rest_data/ntpServer/empty.json diff --git a/test/unity/rest_data/ntpServer/index.json b/storops_test/unity/rest_data/ntpServer/index.json similarity index 100% rename from test/unity/rest_data/ntpServer/index.json rename to storops_test/unity/rest_data/ntpServer/index.json diff --git a/test/unity/rest_data/ntpServer/type.json b/storops_test/unity/rest_data/ntpServer/type.json similarity index 100% rename from test/unity/rest_data/ntpServer/type.json rename to storops_test/unity/rest_data/ntpServer/type.json diff --git a/test/unity/rest_data/pool/all.json b/storops_test/unity/rest_data/pool/all.json similarity index 100% rename from test/unity/rest_data/pool/all.json rename to storops_test/unity/rest_data/pool/all.json diff --git a/test/unity/rest_data/pool/index.json b/storops_test/unity/rest_data/pool/index.json similarity index 100% rename from test/unity/rest_data/pool/index.json rename to storops_test/unity/rest_data/pool/index.json diff --git a/test/unity/rest_data/pool/pool_1.json b/storops_test/unity/rest_data/pool/pool_1.json similarity index 100% rename from test/unity/rest_data/pool/pool_1.json rename to storops_test/unity/rest_data/pool/pool_1.json diff --git a/test/unity/rest_data/pool/type.json b/storops_test/unity/rest_data/pool/type.json similarity index 100% rename from test/unity/rest_data/pool/type.json rename to storops_test/unity/rest_data/pool/type.json diff --git a/test/unity/rest_data/poolUnit/index.json b/storops_test/unity/rest_data/poolUnit/index.json similarity index 100% rename from test/unity/rest_data/poolUnit/index.json rename to storops_test/unity/rest_data/poolUnit/index.json diff --git a/test/unity/rest_data/poolUnit/rg_1.json b/storops_test/unity/rest_data/poolUnit/rg_1.json similarity index 100% rename from test/unity/rest_data/poolUnit/rg_1.json rename to storops_test/unity/rest_data/poolUnit/rg_1.json diff --git a/test/unity/rest_data/poolUnit/rg_2.json b/storops_test/unity/rest_data/poolUnit/rg_2.json similarity index 100% rename from test/unity/rest_data/poolUnit/rg_2.json rename to storops_test/unity/rest_data/poolUnit/rg_2.json diff --git a/test/unity/rest_data/poolUnit/rg_3.json b/storops_test/unity/rest_data/poolUnit/rg_3.json similarity index 100% rename from test/unity/rest_data/poolUnit/rg_3.json rename to storops_test/unity/rest_data/poolUnit/rg_3.json diff --git a/test/unity/rest_data/poolUnit/type.json b/storops_test/unity/rest_data/poolUnit/type.json similarity index 100% rename from test/unity/rest_data/poolUnit/type.json rename to storops_test/unity/rest_data/poolUnit/type.json diff --git a/test/unity/rest_data/preferredInterfaceSettings/all.json b/storops_test/unity/rest_data/preferredInterfaceSettings/all.json similarity index 100% rename from test/unity/rest_data/preferredInterfaceSettings/all.json rename to storops_test/unity/rest_data/preferredInterfaceSettings/all.json diff --git a/test/unity/rest_data/preferredInterfaceSettings/index.json b/storops_test/unity/rest_data/preferredInterfaceSettings/index.json similarity index 100% rename from test/unity/rest_data/preferredInterfaceSettings/index.json rename to storops_test/unity/rest_data/preferredInterfaceSettings/index.json diff --git a/test/unity/rest_data/preferredInterfaceSettings/preferred_if_2.json b/storops_test/unity/rest_data/preferredInterfaceSettings/preferred_if_2.json similarity index 100% rename from test/unity/rest_data/preferredInterfaceSettings/preferred_if_2.json rename to storops_test/unity/rest_data/preferredInterfaceSettings/preferred_if_2.json diff --git a/test/unity/rest_data/preferredInterfaceSettings/type.json b/storops_test/unity/rest_data/preferredInterfaceSettings/type.json similarity index 100% rename from test/unity/rest_data/preferredInterfaceSettings/type.json rename to storops_test/unity/rest_data/preferredInterfaceSettings/type.json diff --git a/test/unity/rest_data/snap/171798691852.json b/storops_test/unity/rest_data/snap/171798691852.json similarity index 100% rename from test/unity/rest_data/snap/171798691852.json rename to storops_test/unity/rest_data/snap/171798691852.json diff --git a/test/unity/rest_data/snap/171798691884.json b/storops_test/unity/rest_data/snap/171798691884.json similarity index 100% rename from test/unity/rest_data/snap/171798691884.json rename to storops_test/unity/rest_data/snap/171798691884.json diff --git a/test/unity/rest_data/snap/171798691896.json b/storops_test/unity/rest_data/snap/171798691896.json similarity index 100% rename from test/unity/rest_data/snap/171798691896.json rename to storops_test/unity/rest_data/snap/171798691896.json diff --git a/test/unity/rest_data/snap/171798691899.json b/storops_test/unity/rest_data/snap/171798691899.json similarity index 100% rename from test/unity/rest_data/snap/171798691899.json rename to storops_test/unity/rest_data/snap/171798691899.json diff --git a/test/unity/rest_data/snap/171798691953.json b/storops_test/unity/rest_data/snap/171798691953.json similarity index 100% rename from test/unity/rest_data/snap/171798691953.json rename to storops_test/unity/rest_data/snap/171798691953.json diff --git a/test/unity/rest_data/snap/38654705676.json b/storops_test/unity/rest_data/snap/38654705676.json similarity index 100% rename from test/unity/rest_data/snap/38654705676.json rename to storops_test/unity/rest_data/snap/38654705676.json diff --git a/test/unity/rest_data/snap/38654705785.json b/storops_test/unity/rest_data/snap/38654705785.json similarity index 100% rename from test/unity/rest_data/snap/38654705785.json rename to storops_test/unity/rest_data/snap/38654705785.json diff --git a/test/unity/rest_data/snap/38654709077.json b/storops_test/unity/rest_data/snap/38654709077.json similarity index 100% rename from test/unity/rest_data/snap/38654709077.json rename to storops_test/unity/rest_data/snap/38654709077.json diff --git a/test/unity/rest_data/snap/85899345927.json b/storops_test/unity/rest_data/snap/85899345927.json similarity index 100% rename from test/unity/rest_data/snap/85899345927.json rename to storops_test/unity/rest_data/snap/85899345927.json diff --git a/test/unity/rest_data/snap/85899345930.json b/storops_test/unity/rest_data/snap/85899345930.json similarity index 100% rename from test/unity/rest_data/snap/85899345930.json rename to storops_test/unity/rest_data/snap/85899345930.json diff --git a/test/unity/rest_data/snap/85899345931.json b/storops_test/unity/rest_data/snap/85899345931.json similarity index 100% rename from test/unity/rest_data/snap/85899345931.json rename to storops_test/unity/rest_data/snap/85899345931.json diff --git a/test/unity/rest_data/snap/all.json b/storops_test/unity/rest_data/snap/all.json similarity index 100% rename from test/unity/rest_data/snap/all.json rename to storops_test/unity/rest_data/snap/all.json diff --git a/test/unity/rest_data/snap/copy_38654705785.json b/storops_test/unity/rest_data/snap/copy_38654705785.json similarity index 100% rename from test/unity/rest_data/snap/copy_38654705785.json rename to storops_test/unity/rest_data/snap/copy_38654705785.json diff --git a/test/unity/rest_data/snap/create_171798691884.json b/storops_test/unity/rest_data/snap/create_171798691884.json similarity index 100% rename from test/unity/rest_data/snap/create_171798691884.json rename to storops_test/unity/rest_data/snap/create_171798691884.json diff --git a/test/unity/rest_data/snap/create_38654705847.json b/storops_test/unity/rest_data/snap/create_38654705847.json similarity index 100% rename from test/unity/rest_data/snap/create_38654705847.json rename to storops_test/unity/rest_data/snap/create_38654705847.json diff --git a/test/unity/rest_data/snap/create_85899345927.json b/storops_test/unity/rest_data/snap/create_85899345927.json similarity index 100% rename from test/unity/rest_data/snap/create_85899345927.json rename to storops_test/unity/rest_data/snap/create_85899345927.json diff --git a/test/unity/rest_data/snap/create_existing_snap.json b/storops_test/unity/rest_data/snap/create_existing_snap.json similarity index 100% rename from test/unity/rest_data/snap/create_existing_snap.json rename to storops_test/unity/rest_data/snap/create_existing_snap.json diff --git a/test/unity/rest_data/snap/create_snap_over_snap.json b/storops_test/unity/rest_data/snap/create_snap_over_snap.json similarity index 100% rename from test/unity/rest_data/snap/create_snap_over_snap.json rename to storops_test/unity/rest_data/snap/create_snap_over_snap.json diff --git a/test/unity/rest_data/snap/fs_snap_name_existed.json b/storops_test/unity/rest_data/snap/fs_snap_name_existed.json similarity index 100% rename from test/unity/rest_data/snap/fs_snap_name_existed.json rename to storops_test/unity/rest_data/snap/fs_snap_name_existed.json diff --git a/test/unity/rest_data/snap/index.json b/storops_test/unity/rest_data/snap/index.json similarity index 100% rename from test/unity/rest_data/snap/index.json rename to storops_test/unity/rest_data/snap/index.json diff --git a/test/unity/rest_data/snap/name_existed.json b/storops_test/unity/rest_data/snap/name_existed.json similarity index 100% rename from test/unity/rest_data/snap/name_existed.json rename to storops_test/unity/rest_data/snap/name_existed.json diff --git a/test/unity/rest_data/snap/no_item.json b/storops_test/unity/rest_data/snap/no_item.json similarity index 100% rename from test/unity/rest_data/snap/no_item.json rename to storops_test/unity/rest_data/snap/no_item.json diff --git a/test/unity/rest_data/snap/not_found.json b/storops_test/unity/rest_data/snap/not_found.json similarity index 100% rename from test/unity/rest_data/snap/not_found.json rename to storops_test/unity/rest_data/snap/not_found.json diff --git a/test/unity/rest_data/snap/restore_with_backup.json b/storops_test/unity/rest_data/snap/restore_with_backup.json similarity index 100% rename from test/unity/rest_data/snap/restore_with_backup.json rename to storops_test/unity/rest_data/snap/restore_with_backup.json diff --git a/test/unity/rest_data/snap/restore_without_backup.json b/storops_test/unity/rest_data/snap/restore_without_backup.json similarity index 100% rename from test/unity/rest_data/snap/restore_without_backup.json rename to storops_test/unity/rest_data/snap/restore_without_backup.json diff --git a/test/unity/rest_data/snap/snap_already_promoted.json b/storops_test/unity/rest_data/snap/snap_already_promoted.json similarity index 100% rename from test/unity/rest_data/snap/snap_already_promoted.json rename to storops_test/unity/rest_data/snap/snap_already_promoted.json diff --git a/test/unity/rest_data/snap/snap_attached.json b/storops_test/unity/rest_data/snap/snap_attached.json similarity index 100% rename from test/unity/rest_data/snap/snap_attached.json rename to storops_test/unity/rest_data/snap/snap_attached.json diff --git a/test/unity/rest_data/snap/snap_not_exist.json b/storops_test/unity/rest_data/snap/snap_not_exist.json similarity index 100% rename from test/unity/rest_data/snap/snap_not_exist.json rename to storops_test/unity/rest_data/snap/snap_not_exist.json diff --git a/test/unity/rest_data/snap/snap_over_snap.json b/storops_test/unity/rest_data/snap/snap_over_snap.json similarity index 100% rename from test/unity/rest_data/snap/snap_over_snap.json rename to storops_test/unity/rest_data/snap/snap_over_snap.json diff --git a/test/unity/rest_data/snap/snaps_of_res_13.json b/storops_test/unity/rest_data/snap/snaps_of_res_13.json similarity index 100% rename from test/unity/rest_data/snap/snaps_of_res_13.json rename to storops_test/unity/rest_data/snap/snaps_of_res_13.json diff --git a/test/unity/rest_data/snap/snaps_of_res_19.json b/storops_test/unity/rest_data/snap/snaps_of_res_19.json similarity index 100% rename from test/unity/rest_data/snap/snaps_of_res_19.json rename to storops_test/unity/rest_data/snap/snaps_of_res_19.json diff --git a/test/unity/rest_data/snap/snaps_of_res_23.json b/storops_test/unity/rest_data/snap/snaps_of_res_23.json similarity index 100% rename from test/unity/rest_data/snap/snaps_of_res_23.json rename to storops_test/unity/rest_data/snap/snaps_of_res_23.json diff --git a/test/unity/rest_data/snap/snaps_of_sv_8.json b/storops_test/unity/rest_data/snap/snaps_of_sv_8.json similarity index 100% rename from test/unity/rest_data/snap/snaps_of_sv_8.json rename to storops_test/unity/rest_data/snap/snaps_of_sv_8.json diff --git a/test/unity/rest_data/snap/success.json b/storops_test/unity/rest_data/snap/success.json similarity index 100% rename from test/unity/rest_data/snap/success.json rename to storops_test/unity/rest_data/snap/success.json diff --git a/test/unity/rest_data/snap/type.json b/storops_test/unity/rest_data/snap/type.json similarity index 100% rename from test/unity/rest_data/snap/type.json rename to storops_test/unity/rest_data/snap/type.json diff --git a/test/unity/rest_data/storageProcessor/all.json b/storops_test/unity/rest_data/storageProcessor/all.json similarity index 100% rename from test/unity/rest_data/storageProcessor/all.json rename to storops_test/unity/rest_data/storageProcessor/all.json diff --git a/test/unity/rest_data/storageProcessor/auto_balance_sp_one_sp.json b/storops_test/unity/rest_data/storageProcessor/auto_balance_sp_one_sp.json similarity index 100% rename from test/unity/rest_data/storageProcessor/auto_balance_sp_one_sp.json rename to storops_test/unity/rest_data/storageProcessor/auto_balance_sp_one_sp.json diff --git a/test/unity/rest_data/storageProcessor/auto_balance_sp_to_spa.json b/storops_test/unity/rest_data/storageProcessor/auto_balance_sp_to_spa.json similarity index 100% rename from test/unity/rest_data/storageProcessor/auto_balance_sp_to_spa.json rename to storops_test/unity/rest_data/storageProcessor/auto_balance_sp_to_spa.json diff --git a/test/unity/rest_data/storageProcessor/index.json b/storops_test/unity/rest_data/storageProcessor/index.json similarity index 100% rename from test/unity/rest_data/storageProcessor/index.json rename to storops_test/unity/rest_data/storageProcessor/index.json diff --git a/test/unity/rest_data/storageProcessor/spa.json b/storops_test/unity/rest_data/storageProcessor/spa.json similarity index 100% rename from test/unity/rest_data/storageProcessor/spa.json rename to storops_test/unity/rest_data/storageProcessor/spa.json diff --git a/test/unity/rest_data/storageProcessor/spb.json b/storops_test/unity/rest_data/storageProcessor/spb.json similarity index 100% rename from test/unity/rest_data/storageProcessor/spb.json rename to storops_test/unity/rest_data/storageProcessor/spb.json diff --git a/test/unity/rest_data/storageProcessor/type.json b/storops_test/unity/rest_data/storageProcessor/type.json similarity index 100% rename from test/unity/rest_data/storageProcessor/type.json rename to storops_test/unity/rest_data/storageProcessor/type.json diff --git a/test/unity/rest_data/storageProcessor/unknown.json b/storops_test/unity/rest_data/storageProcessor/unknown.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/storageProcessor/unknown.json rename to storops_test/unity/rest_data/storageProcessor/unknown.json diff --git a/test/unity/rest_data/storageResource/all.json b/storops_test/unity/rest_data/storageResource/all.json similarity index 100% rename from test/unity/rest_data/storageResource/all.json rename to storops_test/unity/rest_data/storageResource/all.json diff --git a/test/unity/rest_data/storageResource/cg_list.json b/storops_test/unity/rest_data/storageResource/cg_list.json similarity index 100% rename from test/unity/rest_data/storageResource/cg_list.json rename to storops_test/unity/rest_data/storageResource/cg_list.json diff --git a/test/unity/rest_data/storageResource/create_cg_with_host_access.json b/storops_test/unity/rest_data/storageResource/create_cg_with_host_access.json similarity index 100% rename from test/unity/rest_data/storageResource/create_cg_with_host_access.json rename to storops_test/unity/rest_data/storageResource/create_cg_with_host_access.json diff --git a/test/unity/rest_data/storageResource/create_cg_with_member.json b/storops_test/unity/rest_data/storageResource/create_cg_with_member.json similarity index 100% rename from test/unity/rest_data/storageResource/create_cg_with_member.json rename to storops_test/unity/rest_data/storageResource/create_cg_with_member.json diff --git a/test/unity/rest_data/storageResource/create_cs1_success.json b/storops_test/unity/rest_data/storageResource/create_cs1_success.json similarity index 100% rename from test/unity/rest_data/storageResource/create_cs1_success.json rename to storops_test/unity/rest_data/storageResource/create_cs1_success.json diff --git a/test/unity/rest_data/storageResource/create_dummy_lun.json b/storops_test/unity/rest_data/storageResource/create_dummy_lun.json similarity index 100% rename from test/unity/rest_data/storageResource/create_dummy_lun.json rename to storops_test/unity/rest_data/storageResource/create_dummy_lun.json diff --git a/test/unity/rest_data/storageResource/create_empty_cg.json b/storops_test/unity/rest_data/storageResource/create_empty_cg.json similarity index 100% rename from test/unity/rest_data/storageResource/create_empty_cg.json rename to storops_test/unity/rest_data/storageResource/create_empty_cg.json diff --git a/test/unity/rest_data/storageResource/create_lun_sv2.json b/storops_test/unity/rest_data/storageResource/create_lun_sv2.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/storageResource/create_lun_sv2.json rename to storops_test/unity/rest_data/storageResource/create_lun_sv2.json diff --git a/test/unity/rest_data/storageResource/create_lun_sv_2026.json b/storops_test/unity/rest_data/storageResource/create_lun_sv_2026.json similarity index 100% rename from test/unity/rest_data/storageResource/create_lun_sv_2026.json rename to storops_test/unity/rest_data/storageResource/create_lun_sv_2026.json diff --git a/test/unity/rest_data/storageResource/create_res_27.json b/storops_test/unity/rest_data/storageResource/create_res_27.json similarity index 100% rename from test/unity/rest_data/storageResource/create_res_27.json rename to storops_test/unity/rest_data/storageResource/create_res_27.json diff --git a/test/unity/rest_data/storageResource/does_not_support_shrink.json b/storops_test/unity/rest_data/storageResource/does_not_support_shrink.json similarity index 100% rename from test/unity/rest_data/storageResource/does_not_support_shrink.json rename to storops_test/unity/rest_data/storageResource/does_not_support_shrink.json diff --git a/test/unity/rest_data/storageResource/empty.json b/storops_test/unity/rest_data/storageResource/empty.json similarity index 100% rename from test/unity/rest_data/storageResource/empty.json rename to storops_test/unity/rest_data/storageResource/empty.json diff --git a/test/unity/rest_data/storageResource/exceed_system_limit.json b/storops_test/unity/rest_data/storageResource/exceed_system_limit.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/storageResource/exceed_system_limit.json rename to storops_test/unity/rest_data/storageResource/exceed_system_limit.json diff --git a/test/unity/rest_data/storageResource/filesystem_existed.json b/storops_test/unity/rest_data/storageResource/filesystem_existed.json similarity index 100% rename from test/unity/rest_data/storageResource/filesystem_existed.json rename to storops_test/unity/rest_data/storageResource/filesystem_existed.json diff --git a/test/unity/rest_data/storageResource/filesystem_not_support_nfs.json b/storops_test/unity/rest_data/storageResource/filesystem_not_support_nfs.json similarity index 100% rename from test/unity/rest_data/storageResource/filesystem_not_support_nfs.json rename to storops_test/unity/rest_data/storageResource/filesystem_not_support_nfs.json diff --git a/test/unity/rest_data/storageResource/host_access_exists.json b/storops_test/unity/rest_data/storageResource/host_access_exists.json similarity index 100% rename from test/unity/rest_data/storageResource/host_access_exists.json rename to storops_test/unity/rest_data/storageResource/host_access_exists.json diff --git a/test/unity/rest_data/storageResource/index.json b/storops_test/unity/rest_data/storageResource/index.json similarity index 100% rename from test/unity/rest_data/storageResource/index.json rename to storops_test/unity/rest_data/storageResource/index.json diff --git a/test/unity/rest_data/storageResource/lun_name_in_use.json b/storops_test/unity/rest_data/storageResource/lun_name_in_use.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/storageResource/lun_name_in_use.json rename to storops_test/unity/rest_data/storageResource/lun_name_in_use.json diff --git a/test/unity/rest_data/storageResource/name_in_use.json b/storops_test/unity/rest_data/storageResource/name_in_use.json similarity index 100% rename from test/unity/rest_data/storageResource/name_in_use.json rename to storops_test/unity/rest_data/storageResource/name_in_use.json diff --git a/test/unity/rest_data/storageResource/nfsShareParameters_empty.json b/storops_test/unity/rest_data/storageResource/nfsShareParameters_empty.json similarity index 100% rename from test/unity/rest_data/storageResource/nfsShareParameters_empty.json rename to storops_test/unity/rest_data/storageResource/nfsShareParameters_empty.json diff --git a/test/unity/rest_data/storageResource/nfs_share_name_exists.json b/storops_test/unity/rest_data/storageResource/nfs_share_name_exists.json similarity index 100% rename from test/unity/rest_data/storageResource/nfs_share_name_exists.json rename to storops_test/unity/rest_data/storageResource/nfs_share_name_exists.json diff --git a/test/unity/rest_data/storageResource/nike.json b/storops_test/unity/rest_data/storageResource/nike.json similarity index 100% rename from test/unity/rest_data/storageResource/nike.json rename to storops_test/unity/rest_data/storageResource/nike.json diff --git a/test/unity/rest_data/storageResource/not_exist.json b/storops_test/unity/rest_data/storageResource/not_exist.json similarity index 100% rename from test/unity/rest_data/storageResource/not_exist.json rename to storops_test/unity/rest_data/storageResource/not_exist.json diff --git a/test/unity/rest_data/storageResource/nothing_to_modify.json b/storops_test/unity/rest_data/storageResource/nothing_to_modify.json similarity index 100% rename from test/unity/rest_data/storageResource/nothing_to_modify.json rename to storops_test/unity/rest_data/storageResource/nothing_to_modify.json diff --git a/test/unity/rest_data/storageResource/path_not_found.json b/storops_test/unity/rest_data/storageResource/path_not_found.json similarity index 100% rename from test/unity/rest_data/storageResource/path_not_found.json rename to storops_test/unity/rest_data/storageResource/path_not_found.json diff --git a/test/unity/rest_data/storageResource/remove_nfs_share_6_async.json b/storops_test/unity/rest_data/storageResource/remove_nfs_share_6_async.json similarity index 100% rename from test/unity/rest_data/storageResource/remove_nfs_share_6_async.json rename to storops_test/unity/rest_data/storageResource/remove_nfs_share_6_async.json diff --git a/test/unity/rest_data/storageResource/remove_res_24.json b/storops_test/unity/rest_data/storageResource/remove_res_24.json similarity index 100% rename from test/unity/rest_data/storageResource/remove_res_24.json rename to storops_test/unity/rest_data/storageResource/remove_res_24.json diff --git a/test/unity/rest_data/storageResource/remove_res_30_async.json b/storops_test/unity/rest_data/storageResource/remove_res_30_async.json similarity index 100% rename from test/unity/rest_data/storageResource/remove_res_30_async.json rename to storops_test/unity/rest_data/storageResource/remove_res_30_async.json diff --git a/test/unity/rest_data/storageResource/res_13.json b/storops_test/unity/rest_data/storageResource/res_13.json similarity index 100% rename from test/unity/rest_data/storageResource/res_13.json rename to storops_test/unity/rest_data/storageResource/res_13.json diff --git a/test/unity/rest_data/storageResource/res_17.json b/storops_test/unity/rest_data/storageResource/res_17.json similarity index 100% rename from test/unity/rest_data/storageResource/res_17.json rename to storops_test/unity/rest_data/storageResource/res_17.json diff --git a/test/unity/rest_data/storageResource/res_18.json b/storops_test/unity/rest_data/storageResource/res_18.json similarity index 100% rename from test/unity/rest_data/storageResource/res_18.json rename to storops_test/unity/rest_data/storageResource/res_18.json diff --git a/test/unity/rest_data/storageResource/res_19.json b/storops_test/unity/rest_data/storageResource/res_19.json similarity index 100% rename from test/unity/rest_data/storageResource/res_19.json rename to storops_test/unity/rest_data/storageResource/res_19.json diff --git a/test/unity/rest_data/storageResource/res_27.json b/storops_test/unity/rest_data/storageResource/res_27.json similarity index 100% rename from test/unity/rest_data/storageResource/res_27.json rename to storops_test/unity/rest_data/storageResource/res_27.json diff --git a/test/unity/rest_data/storageResource/res_3.json b/storops_test/unity/rest_data/storageResource/res_3.json similarity index 100% rename from test/unity/rest_data/storageResource/res_3.json rename to storops_test/unity/rest_data/storageResource/res_3.json diff --git a/test/unity/rest_data/storageResource/res_4.json b/storops_test/unity/rest_data/storageResource/res_4.json similarity index 100% rename from test/unity/rest_data/storageResource/res_4.json rename to storops_test/unity/rest_data/storageResource/res_4.json diff --git a/test/unity/rest_data/storageResource/size_too_small.json b/storops_test/unity/rest_data/storageResource/size_too_small.json similarity index 100% rename from test/unity/rest_data/storageResource/size_too_small.json rename to storops_test/unity/rest_data/storageResource/size_too_small.json diff --git a/test/unity/rest_data/storageResource/smb_share_name_exists.json b/storops_test/unity/rest_data/storageResource/smb_share_name_exists.json similarity index 100% rename from test/unity/rest_data/storageResource/smb_share_name_exists.json rename to storops_test/unity/rest_data/storageResource/smb_share_name_exists.json diff --git a/test/unity/rest_data/storageResource/sv_2.json b/storops_test/unity/rest_data/storageResource/sv_2.json similarity index 100% rename from test/unity/rest_data/storageResource/sv_2.json rename to storops_test/unity/rest_data/storageResource/sv_2.json diff --git a/test/unity/rest_data/storageResource/sv_2019.json b/storops_test/unity/rest_data/storageResource/sv_2019.json similarity index 100% rename from test/unity/rest_data/storageResource/sv_2019.json rename to storops_test/unity/rest_data/storageResource/sv_2019.json diff --git a/test/unity/rest_data/storageResource/sv_2026.json b/storops_test/unity/rest_data/storageResource/sv_2026.json similarity index 100% rename from test/unity/rest_data/storageResource/sv_2026.json rename to storops_test/unity/rest_data/storageResource/sv_2026.json diff --git a/test/unity/rest_data/storageResource/type.json b/storops_test/unity/rest_data/storageResource/type.json similarity index 100% rename from test/unity/rest_data/storageResource/type.json rename to storops_test/unity/rest_data/storageResource/type.json diff --git a/test/unity/rest_data/system/0.json b/storops_test/unity/rest_data/system/0.json similarity index 100% rename from test/unity/rest_data/system/0.json rename to storops_test/unity/rest_data/system/0.json diff --git a/test/unity/rest_data/system/all.json b/storops_test/unity/rest_data/system/all.json similarity index 100% rename from test/unity/rest_data/system/all.json rename to storops_test/unity/rest_data/system/all.json diff --git a/test/unity/rest_data/system/index.json b/storops_test/unity/rest_data/system/index.json similarity index 100% rename from test/unity/rest_data/system/index.json rename to storops_test/unity/rest_data/system/index.json diff --git a/test/unity/rest_data/system/type.json b/storops_test/unity/rest_data/system/type.json similarity index 100% rename from test/unity/rest_data/system/type.json rename to storops_test/unity/rest_data/system/type.json diff --git a/test/unity/rest_data/systemTime/0.json b/storops_test/unity/rest_data/systemTime/0.json similarity index 100% rename from test/unity/rest_data/systemTime/0.json rename to storops_test/unity/rest_data/systemTime/0.json diff --git a/test/unity/rest_data/systemTime/empty.json b/storops_test/unity/rest_data/systemTime/empty.json similarity index 100% rename from test/unity/rest_data/systemTime/empty.json rename to storops_test/unity/rest_data/systemTime/empty.json diff --git a/test/unity/rest_data/systemTime/index.json b/storops_test/unity/rest_data/systemTime/index.json similarity index 100% rename from test/unity/rest_data/systemTime/index.json rename to storops_test/unity/rest_data/systemTime/index.json diff --git a/test/unity/rest_data/systemTime/type.json b/storops_test/unity/rest_data/systemTime/type.json similarity index 100% rename from test/unity/rest_data/systemTime/type.json rename to storops_test/unity/rest_data/systemTime/type.json diff --git a/test/unity/rest_data/temp.json b/storops_test/unity/rest_data/temp.json similarity index 100% rename from test/unity/rest_data/temp.json rename to storops_test/unity/rest_data/temp.json diff --git a/test/unity/rest_data/tenant/all.json b/storops_test/unity/rest_data/tenant/all.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/tenant/all.json rename to storops_test/unity/rest_data/tenant/all.json diff --git a/test/unity/rest_data/tenant/delete_tenant.json b/storops_test/unity/rest_data/tenant/delete_tenant.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/tenant/delete_tenant.json rename to storops_test/unity/rest_data/tenant/delete_tenant.json diff --git a/test/unity/rest_data/tenant/empty.json b/storops_test/unity/rest_data/tenant/empty.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/tenant/empty.json rename to storops_test/unity/rest_data/tenant/empty.json diff --git a/test/unity/rest_data/tenant/index.json b/storops_test/unity/rest_data/tenant/index.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/tenant/index.json rename to storops_test/unity/rest_data/tenant/index.json diff --git a/test/unity/rest_data/tenant/name_inuse.json b/storops_test/unity/rest_data/tenant/name_inuse.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/tenant/name_inuse.json rename to storops_test/unity/rest_data/tenant/name_inuse.json diff --git a/test/unity/rest_data/tenant/tenant_1.json b/storops_test/unity/rest_data/tenant/tenant_1.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/tenant/tenant_1.json rename to storops_test/unity/rest_data/tenant/tenant_1.json diff --git a/test/unity/rest_data/tenant/tenant_2.json b/storops_test/unity/rest_data/tenant/tenant_2.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/tenant/tenant_2.json rename to storops_test/unity/rest_data/tenant/tenant_2.json diff --git a/test/unity/rest_data/tenant/tenant_3.json b/storops_test/unity/rest_data/tenant/tenant_3.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/tenant/tenant_3.json rename to storops_test/unity/rest_data/tenant/tenant_3.json diff --git a/test/unity/rest_data/tenant/type.json b/storops_test/unity/rest_data/tenant/type.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/tenant/type.json rename to storops_test/unity/rest_data/tenant/type.json diff --git a/test/unity/rest_data/tenant/vlan1_3.json b/storops_test/unity/rest_data/tenant/vlan1_3.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/tenant/vlan1_3.json rename to storops_test/unity/rest_data/tenant/vlan1_3.json diff --git a/test/unity/rest_data/tenant/vlan4.json b/storops_test/unity/rest_data/tenant/vlan4.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/tenant/vlan4.json rename to storops_test/unity/rest_data/tenant/vlan4.json diff --git a/test/unity/rest_data/tenant/vlan_not_found.json b/storops_test/unity/rest_data/tenant/vlan_not_found.json old mode 100755 new mode 100644 similarity index 100% rename from test/unity/rest_data/tenant/vlan_not_found.json rename to storops_test/unity/rest_data/tenant/vlan_not_found.json diff --git a/test/unity/rest_data/virusChecker/all.json b/storops_test/unity/rest_data/virusChecker/all.json similarity index 100% rename from test/unity/rest_data/virusChecker/all.json rename to storops_test/unity/rest_data/virusChecker/all.json diff --git a/test/unity/rest_data/virusChecker/cava_2.json b/storops_test/unity/rest_data/virusChecker/cava_2.json similarity index 100% rename from test/unity/rest_data/virusChecker/cava_2.json rename to storops_test/unity/rest_data/virusChecker/cava_2.json diff --git a/test/unity/rest_data/virusChecker/index.json b/storops_test/unity/rest_data/virusChecker/index.json similarity index 100% rename from test/unity/rest_data/virusChecker/index.json rename to storops_test/unity/rest_data/virusChecker/index.json diff --git a/test/unity/rest_data/virusChecker/type.json b/storops_test/unity/rest_data/virusChecker/type.json similarity index 100% rename from test/unity/rest_data/virusChecker/type.json rename to storops_test/unity/rest_data/virusChecker/type.json diff --git a/test/unity/rest_mock.py b/storops_test/unity/rest_mock.py similarity index 98% rename from test/unity/rest_mock.py rename to storops_test/unity/rest_mock.py index 298ae858..9b2a28e7 100644 --- a/test/unity/rest_mock.py +++ b/storops_test/unity/rest_mock.py @@ -26,7 +26,7 @@ from storops.lib.common import cache, allow_omit_parentheses from storops.unity.client import UnityClient import storops.unity.resource.system -from test.utils import ConnectorMock, read_test_file +from storops_test.utils import ConnectorMock, read_test_file __author__ = 'Cedric Zhuang' diff --git a/test/unity/test_calculator.py b/storops_test/unity/test_calculator.py similarity index 98% rename from test/unity/test_calculator.py rename to storops_test/unity/test_calculator.py index 51a66928..d91e0c82 100644 --- a/test/unity/test_calculator.py +++ b/storops_test/unity/test_calculator.py @@ -28,9 +28,9 @@ UnityMetricConfigParser from storops.unity.resource.disk import UnityDisk from storops.unity.resource.filesystem import UnityFileSystem -from test.unity.resource.test_metric import qr_6, qr_14, qr_17, qr_34 -from test.unity.rest_mock import patch_rest -from test.utils import is_nan +from storops_test.unity.resource.test_metric import qr_6, qr_14, qr_17, qr_34 +from storops_test.unity.rest_mock import patch_rest +from storops_test.utils import is_nan __author__ = 'Cedric Zhuang' diff --git a/test/unity/test_client.py b/storops_test/unity/test_client.py similarity index 99% rename from test/unity/test_client.py rename to storops_test/unity/test_client.py index 3d87001d..b9d6535d 100644 --- a/test/unity/test_client.py +++ b/storops_test/unity/test_client.py @@ -25,7 +25,7 @@ from storops.unity.enums import RaidTypeEnum, HealthEnum, RaidTypeEnumList, \ ServiceLevelEnum, ServiceLevelEnumList from storops.unity.resource.lun import UnityLun, UnityLunList -from test.unity.rest_mock import patch_rest, t_rest +from storops_test.unity.rest_mock import patch_rest, t_rest __author__ = 'Cedric Zhuang' diff --git a/test/unity/test_enums.py b/storops_test/unity/test_enums.py similarity index 100% rename from test/unity/test_enums.py rename to storops_test/unity/test_enums.py diff --git a/test/unity/test_mock.py b/storops_test/unity/test_mock.py similarity index 96% rename from test/unity/test_mock.py rename to storops_test/unity/test_mock.py index fa0f91a9..f1585374 100644 --- a/test/unity/test_mock.py +++ b/storops_test/unity/test_mock.py @@ -20,7 +20,7 @@ from hamcrest import assert_that, is_not, equal_to from hamcrest import contains_string -from test.unity.rest_mock import MockRestClient +from storops_test.unity.rest_mock import MockRestClient __author__ = 'Cedric Zhuang' diff --git a/test/unity/test_parser.py b/storops_test/unity/test_parser.py old mode 100755 new mode 100644 similarity index 100% rename from test/unity/test_parser.py rename to storops_test/unity/test_parser.py diff --git a/test/unity/test_resp.py b/storops_test/unity/test_resp.py similarity index 98% rename from test/unity/test_resp.py rename to storops_test/unity/test_resp.py index d4100e1a..b817d67b 100644 --- a/test/unity/test_resp.py +++ b/storops_test/unity/test_resp.py @@ -23,7 +23,7 @@ from storops.exception import UnityNasServerNameUsedError, UnityException from storops.unity.resp import RestResponse -from test.utils import read_test_file +from storops_test.utils import read_test_file __author__ = 'Cedric Zhuang' diff --git a/test/utils.py b/storops_test/utils.py similarity index 100% rename from test/utils.py rename to storops_test/utils.py diff --git a/test/vnx/__init__.py b/storops_test/vnx/__init__.py similarity index 100% rename from test/vnx/__init__.py rename to storops_test/vnx/__init__.py diff --git a/test/vnx/cli_mock.py b/storops_test/vnx/cli_mock.py similarity index 99% rename from test/vnx/cli_mock.py rename to storops_test/vnx/cli_mock.py index e4b9cb7a..a2df3976 100644 --- a/test/vnx/cli_mock.py +++ b/storops_test/vnx/cli_mock.py @@ -34,7 +34,7 @@ from storops.vnx.resource.system import VNXSystem from storops.vnx.resource.vnx_domain import VNXStorageProcessor, \ VNXStorageProcessorList -from test.utils import ConnectorMock +from storops_test.utils import ConnectorMock __author__ = 'Cedric Zhuang' diff --git a/test/vnx/nas_mock.py b/storops_test/vnx/nas_mock.py similarity index 98% rename from test/vnx/nas_mock.py rename to storops_test/vnx/nas_mock.py index c0c14c3c..e7ae30ad 100644 --- a/test/vnx/nas_mock.py +++ b/storops_test/vnx/nas_mock.py @@ -27,8 +27,8 @@ from storops.lib.common import cache, allow_omit_parentheses from storops.vnx.nas_client import VNXNasClient from storops.vnx.xmlapi import XML_NS -from test.utils import ConnectorMock, read_test_file -from test.vnx.cli_mock import MockCli +from storops_test.utils import ConnectorMock, read_test_file +from storops_test.vnx.cli_mock import MockCli __author__ = 'Cedric Zhuang' diff --git a/test/vnx/resource/__init__.py b/storops_test/vnx/resource/__init__.py similarity index 100% rename from test/vnx/resource/__init__.py rename to storops_test/vnx/resource/__init__.py diff --git a/test/vnx/resource/fakes.py b/storops_test/vnx/resource/fakes.py similarity index 100% rename from test/vnx/resource/fakes.py rename to storops_test/vnx/resource/fakes.py diff --git a/test/vnx/resource/test_block_pool.py b/storops_test/vnx/resource/test_block_pool.py similarity index 98% rename from test/vnx/resource/test_block_pool.py rename to storops_test/vnx/resource/test_block_pool.py index 1c57ee3b..0006f980 100644 --- a/test/vnx/resource/test_block_pool.py +++ b/storops_test/vnx/resource/test_block_pool.py @@ -20,9 +20,9 @@ from hamcrest import assert_that, raises, equal_to, has_items, \ only_contains, none, close_to, not_none, greater_than -from test.vnx.cli_mock import t_cli, patch_cli -from test.vnx.resource.test_lun import get_lun_list -from test.vnx.resource.verifiers import verify_pool_0 +from storops_test.vnx.cli_mock import t_cli, patch_cli +from storops_test.vnx.resource.test_lun import get_lun_list +from storops_test.vnx.resource.verifiers import verify_pool_0 from storops.exception import VNXCreatePoolError, VNXPoolNotFoundError, \ VNXDiskUsedError, VNXPoolNameInUseError, VNXPoolDestroyingError, \ VNXNameInUseError diff --git a/test/vnx/resource/test_capacity.py b/storops_test/vnx/resource/test_capacity.py old mode 100755 new mode 100644 similarity index 96% rename from test/vnx/resource/test_capacity.py rename to storops_test/vnx/resource/test_capacity.py index 21e235c8..5a3ecac5 --- a/test/vnx/resource/test_capacity.py +++ b/storops_test/vnx/resource/test_capacity.py @@ -19,7 +19,7 @@ from hamcrest import assert_that, equal_to from storops.vnx.resource.capacity import VNXCapacity -from test.vnx.cli_mock import patch_cli, t_cli +from storops_test.vnx.cli_mock import patch_cli, t_cli __author__ = 'Tina Tang' diff --git a/test/vnx/resource/test_cg.py b/storops_test/vnx/resource/test_cg.py similarity index 98% rename from test/vnx/resource/test_cg.py rename to storops_test/vnx/resource/test_cg.py index 65fa3f5b..60e5ad64 100644 --- a/test/vnx/resource/test_cg.py +++ b/storops_test/vnx/resource/test_cg.py @@ -20,7 +20,7 @@ from hamcrest import assert_that, equal_to, has_item, raises, only_contains from storops.vnx.parsers import get_vnx_parser -from test.vnx.cli_mock import patch_cli, t_cli +from storops_test.vnx.cli_mock import patch_cli, t_cli from storops.exception import VNXConsistencyGroupError, \ VNXConsistencyGroupNameInUseError, VNXConsistencyGroupNotFoundError, \ VNXSnapNameInUseError diff --git a/test/vnx/resource/test_cifs_server.py b/storops_test/vnx/resource/test_cifs_server.py similarity index 98% rename from test/vnx/resource/test_cifs_server.py rename to storops_test/vnx/resource/test_cifs_server.py index 0011363e..8ba9df45 100644 --- a/test/vnx/resource/test_cifs_server.py +++ b/storops_test/vnx/resource/test_cifs_server.py @@ -21,7 +21,7 @@ raises, contains_string from hamcrest import equal_to -from test.vnx.nas_mock import t_nas, patch_post +from storops_test.vnx.nas_mock import t_nas, patch_post from storops.exception import VNXBackendError from storops.vnx.resource.cifs_server import VNXCifsServer, CifsDomain diff --git a/test/vnx/resource/test_cifs_share.py b/storops_test/vnx/resource/test_cifs_share.py similarity index 98% rename from test/vnx/resource/test_cifs_share.py rename to storops_test/vnx/resource/test_cifs_share.py index 201ceb30..cd241d7f 100644 --- a/test/vnx/resource/test_cifs_share.py +++ b/storops_test/vnx/resource/test_cifs_share.py @@ -19,7 +19,7 @@ from hamcrest import assert_that, equal_to, raises, has_item -from test.vnx.nas_mock import t_nas, patch_nas +from storops_test.vnx.nas_mock import t_nas, patch_nas from storops.exception import VNXGeneralNasError from storops.vnx.resource.cifs_share import VNXCifsShare from storops.vnx.resource.fs import VNXFileSystem diff --git a/test/vnx/resource/test_disk.py b/storops_test/vnx/resource/test_disk.py similarity index 97% rename from test/vnx/resource/test_disk.py rename to storops_test/vnx/resource/test_disk.py index ef1aff61..383b778c 100644 --- a/test/vnx/resource/test_disk.py +++ b/storops_test/vnx/resource/test_disk.py @@ -20,8 +20,8 @@ from hamcrest import assert_that, raises, equal_to, has_items, close_to from storops.lib.common import instance_cache, cache -from test.vnx.cli_mock import patch_cli, t_cli -from test.vnx.resource.verifiers import verify_disk_4_0_e8 +from storops_test.vnx.cli_mock import patch_cli, t_cli +from storops_test.vnx.resource.verifiers import verify_disk_4_0_e8 from storops.vnx.resource.disk import VNXDisk, VNXDiskList __author__ = 'Cedric Zhuang' diff --git a/test/vnx/resource/test_fs.py b/storops_test/vnx/resource/test_fs.py similarity index 99% rename from test/vnx/resource/test_fs.py rename to storops_test/vnx/resource/test_fs.py index 74f43c3b..8c8af55c 100644 --- a/test/vnx/resource/test_fs.py +++ b/storops_test/vnx/resource/test_fs.py @@ -22,7 +22,7 @@ from storops.exception import VNXBackendError, VNXInvalidMoverID, \ VNXFsExistedError from storops.vnx.resource.fs import VNXFileSystem, VNXFileSystemList -from test.vnx.nas_mock import patch_post, t_nas +from storops_test.vnx.nas_mock import patch_post, t_nas __author__ = 'Jay Xu' diff --git a/test/vnx/resource/test_fs_snap.py b/storops_test/vnx/resource/test_fs_snap.py similarity index 98% rename from test/vnx/resource/test_fs_snap.py rename to storops_test/vnx/resource/test_fs_snap.py index 81c7b82b..4fff44d3 100644 --- a/test/vnx/resource/test_fs_snap.py +++ b/storops_test/vnx/resource/test_fs_snap.py @@ -19,7 +19,7 @@ from hamcrest import assert_that, equal_to, raises -from test.vnx.nas_mock import t_nas, patch_post +from storops_test.vnx.nas_mock import t_nas, patch_post from storops.exception import VNXFsSnapNameInUseError from storops.vnx.resource.fs_snap import VNXFsSnap diff --git a/test/vnx/resource/test_host.py b/storops_test/vnx/resource/test_host.py similarity index 97% rename from test/vnx/resource/test_host.py rename to storops_test/vnx/resource/test_host.py index 2fd7d589..670377c7 100644 --- a/test/vnx/resource/test_host.py +++ b/storops_test/vnx/resource/test_host.py @@ -20,7 +20,7 @@ from hamcrest import equal_to, assert_that, none, has_items, only_contains from storops.vnx.resource.host import VNXHostList, VNXHost -from test.vnx.cli_mock import t_cli, patch_cli +from storops_test.vnx.cli_mock import t_cli, patch_cli __author__ = 'Cedric Zhuang' diff --git a/test/vnx/resource/test_lun.py b/storops_test/vnx/resource/test_lun.py similarity index 99% rename from test/vnx/resource/test_lun.py rename to storops_test/vnx/resource/test_lun.py index 1bd5f033..059a557b 100644 --- a/test/vnx/resource/test_lun.py +++ b/storops_test/vnx/resource/test_lun.py @@ -35,8 +35,8 @@ VNXCompressionRate, VNXSPEnum from storops.vnx.resource.lun import VNXLun, VNXLunList from storops.vnx.resource.snap import VNXSnap -from test.vnx.cli_mock import t_cli, patch_cli -from test.vnx.resource.verifiers import verify_lun_0 +from storops_test.vnx.cli_mock import t_cli, patch_cli +from storops_test.vnx.resource.verifiers import verify_lun_0 __author__ = 'Cedric Zhuang' diff --git a/test/vnx/resource/test_metric.py b/storops_test/vnx/resource/test_metric.py similarity index 96% rename from test/vnx/resource/test_metric.py rename to storops_test/vnx/resource/test_metric.py index ad626f12..2c15c998 100644 --- a/test/vnx/resource/test_metric.py +++ b/storops_test/vnx/resource/test_metric.py @@ -20,7 +20,7 @@ from hamcrest import assert_that, equal_to, none from storops.vnx.resource.metric import VNXStats -from test.vnx.cli_mock import t_cli, patch_cli +from storops_test.vnx.cli_mock import t_cli, patch_cli __author__ = 'Cedric Zhuang' diff --git a/test/vnx/resource/test_migration.py b/storops_test/vnx/resource/test_migration.py similarity index 98% rename from test/vnx/resource/test_migration.py rename to storops_test/vnx/resource/test_migration.py index 180090ca..025714e6 100644 --- a/test/vnx/resource/test_migration.py +++ b/storops_test/vnx/resource/test_migration.py @@ -21,7 +21,7 @@ from storops.exception import VNXLunNotMigratingError, VNXLunSyncCompletedError from storops.vnx.resource.lun import VNXLun -from test.vnx.cli_mock import t_cli, patch_cli +from storops_test.vnx.cli_mock import t_cli, patch_cli from storops.vnx.enums import VNXMigrationRate from storops.vnx.resource.migration import VNXMigrationSession diff --git a/test/vnx/resource/test_mirror_view.py b/storops_test/vnx/resource/test_mirror_view.py similarity index 99% rename from test/vnx/resource/test_mirror_view.py rename to storops_test/vnx/resource/test_mirror_view.py index e96e232c..dea87ff5 100644 --- a/test/vnx/resource/test_mirror_view.py +++ b/storops_test/vnx/resource/test_mirror_view.py @@ -27,8 +27,8 @@ VNXMirrorPromotePrimaryError, VNXMirrorFeatureNotAvailableError, \ VNXMirrorNotFoundError, VNXDeleteMirrorWithSecondaryError, \ VNXMirrorRemoveSynchronizingError -from test.vnx.cli_mock import patch_cli -from test.vnx.cli_mock import t_cli +from storops_test.vnx.cli_mock import patch_cli +from storops_test.vnx.cli_mock import t_cli from storops.vnx.enums import VNXMirrorViewRecoveryPolicy, \ VNXMirrorViewSyncRate, VNXSPEnum, VNXMirrorImageState from storops.vnx.resource.mirror_view import VNXMirrorView, \ diff --git a/test/vnx/resource/test_mount_point.py b/storops_test/vnx/resource/test_mount_point.py similarity index 98% rename from test/vnx/resource/test_mount_point.py rename to storops_test/vnx/resource/test_mount_point.py index e82fe2b2..2f348647 100644 --- a/test/vnx/resource/test_mount_point.py +++ b/storops_test/vnx/resource/test_mount_point.py @@ -19,7 +19,7 @@ from hamcrest import assert_that, greater_than_or_equal_to, equal_to, raises -from test.vnx.nas_mock import t_nas, patch_post +from storops_test.vnx.nas_mock import t_nas, patch_post from storops.exception import VNXBackendError from storops.vnx.resource.mount_point import VNXFsMountPointList, \ VNXFsMountPoint diff --git a/test/vnx/resource/test_mover.py b/storops_test/vnx/resource/test_mover.py similarity index 99% rename from test/vnx/resource/test_mover.py rename to storops_test/vnx/resource/test_mover.py index ba0b23fe..5cf8abe5 100644 --- a/test/vnx/resource/test_mover.py +++ b/storops_test/vnx/resource/test_mover.py @@ -18,7 +18,7 @@ from hamcrest import assert_that, equal_to, none, only_contains, raises -from test.vnx.nas_mock import t_nas, patch_post, patch_nas +from storops_test.vnx.nas_mock import t_nas, patch_post, patch_nas from storops.vnx.enums import VNXPortType from storops.exception import VNXBackendError, VNXGeneralNasError from storops.vnx.resource.mover import VNXMover, \ diff --git a/test/vnx/resource/test_nas_client.py b/storops_test/vnx/resource/test_nas_client.py similarity index 98% rename from test/vnx/resource/test_nas_client.py rename to storops_test/vnx/resource/test_nas_client.py index 828f4934..f0ed2792 100644 --- a/test/vnx/resource/test_nas_client.py +++ b/storops_test/vnx/resource/test_nas_client.py @@ -23,7 +23,7 @@ from storops.exception import VNXNasObjectNotFound, \ VNXInvalidMoverID, VNXFileCredentialError from storops.vnx.nas_client import NasXmlResponse, XmlStatus -from test.vnx.nas_mock import MockXmlPost +from storops_test.vnx.nas_mock import MockXmlPost __author__ = 'Cedric Zhuang' diff --git a/test/vnx/resource/test_nas_pool.py b/storops_test/vnx/resource/test_nas_pool.py similarity index 97% rename from test/vnx/resource/test_nas_pool.py rename to storops_test/vnx/resource/test_nas_pool.py index 8d3802aa..ad36eb57 100644 --- a/test/vnx/resource/test_nas_pool.py +++ b/storops_test/vnx/resource/test_nas_pool.py @@ -19,7 +19,7 @@ from hamcrest import assert_that, equal_to, has_items -from test.vnx.nas_mock import t_nas, patch_post +from storops_test.vnx.nas_mock import t_nas, patch_post from storops.vnx.resource.nas_pool import VNXNasPool __author__ = 'Jay Xu' diff --git a/test/vnx/resource/test_ndu.py b/storops_test/vnx/resource/test_ndu.py similarity index 98% rename from test/vnx/resource/test_ndu.py rename to storops_test/vnx/resource/test_ndu.py index 1f489647..b7d731d4 100644 --- a/test/vnx/resource/test_ndu.py +++ b/storops_test/vnx/resource/test_ndu.py @@ -19,7 +19,7 @@ from hamcrest import assert_that, equal_to -from test.vnx.cli_mock import patch_cli, t_cli +from storops_test.vnx.cli_mock import patch_cli, t_cli from storops.vnx.resource.ndu import VNXNdu __author__ = 'Cedric Zhuang' diff --git a/test/vnx/resource/test_nfs_share.py b/storops_test/vnx/resource/test_nfs_share.py similarity index 99% rename from test/vnx/resource/test_nfs_share.py rename to storops_test/vnx/resource/test_nfs_share.py index bd4d3979..f544ff98 100644 --- a/test/vnx/resource/test_nfs_share.py +++ b/storops_test/vnx/resource/test_nfs_share.py @@ -20,7 +20,7 @@ from hamcrest import assert_that, has_item, raises from hamcrest import equal_to -from test.vnx.nas_mock import t_nas, patch_nas +from storops_test.vnx.nas_mock import t_nas, patch_nas from storops.exception import VNXBackendError from storops.vnx.resource.mover import VNXMover from storops.vnx.resource.nfs_share import NfsHostConfig, VNXNfsShare diff --git a/test/vnx/resource/test_port.py b/storops_test/vnx/resource/test_port.py similarity index 99% rename from test/vnx/resource/test_port.py rename to storops_test/vnx/resource/test_port.py index ffe90ad4..86693f67 100644 --- a/test/vnx/resource/test_port.py +++ b/storops_test/vnx/resource/test_port.py @@ -29,8 +29,8 @@ from storops.vnx.resource.port import VNXHbaPort, VNXSPPort, \ VNXConnectionPort, VNXStorageGroupHBA from storops.vnx.resource.sg import VNXStorageGroup -from test.vnx.cli_mock import patch_cli, t_cli -from test.vnx.resource.fakes import STORAGE_GROUP_HBA +from storops_test.vnx.cli_mock import patch_cli, t_cli +from storops_test.vnx.resource.fakes import STORAGE_GROUP_HBA __author__ = 'Cedric Zhuang' diff --git a/test/vnx/resource/test_resource.py b/storops_test/vnx/resource/test_resource.py similarity index 100% rename from test/vnx/resource/test_resource.py rename to storops_test/vnx/resource/test_resource.py diff --git a/test/vnx/resource/test_rg.py b/storops_test/vnx/resource/test_rg.py similarity index 95% rename from test/vnx/resource/test_rg.py rename to storops_test/vnx/resource/test_rg.py index 0c5bcfa4..6f3192fb 100644 --- a/test/vnx/resource/test_rg.py +++ b/storops_test/vnx/resource/test_rg.py @@ -19,8 +19,8 @@ from hamcrest import assert_that, equal_to, raises, instance_of -from test.vnx.cli_mock import patch_cli, t_cli -from test.vnx.resource.verifiers import verify_raid0 +from storops_test.vnx.cli_mock import patch_cli, t_cli +from storops_test.vnx.resource.verifiers import verify_raid0 from storops.exception import VNXCreateRaidGroupError, \ VNXDeleteRaidGroupError from storops.vnx.resource.disk import VNXDisk diff --git a/test/vnx/resource/test_security.py b/storops_test/vnx/resource/test_security.py similarity index 97% rename from test/vnx/resource/test_security.py rename to storops_test/vnx/resource/test_security.py index f9862e77..0a2b950d 100644 --- a/test/vnx/resource/test_security.py +++ b/storops_test/vnx/resource/test_security.py @@ -21,7 +21,7 @@ from storops import VNXUserRoleEnum, VNXUserScopeEnum from storops.exception import VNXUserNameInUseError, VNXUserNotFoundError -from test.vnx.cli_mock import t_cli, patch_cli +from storops_test.vnx.cli_mock import t_cli, patch_cli from storops.vnx.resource.security import VNXBlockUser diff --git a/test/vnx/resource/test_sg.py b/storops_test/vnx/resource/test_sg.py similarity index 99% rename from test/vnx/resource/test_sg.py rename to storops_test/vnx/resource/test_sg.py index 0ca60c70..2da806ed 100644 --- a/test/vnx/resource/test_sg.py +++ b/storops_test/vnx/resource/test_sg.py @@ -29,8 +29,8 @@ from storops.vnx.resource.lun import VNXLun from storops.vnx.resource.port import VNXStorageGroupHBAList from storops.vnx.resource.sg import VNXStorageGroupList, VNXStorageGroup -from test.vnx.cli_mock import patch_cli, t_cli -from test.vnx.resource.test_lun import get_lun_list +from storops_test.vnx.cli_mock import patch_cli, t_cli +from storops_test.vnx.resource.test_lun import get_lun_list __author__ = 'Cedric Zhuang' diff --git a/test/vnx/resource/test_snap.py b/storops_test/vnx/resource/test_snap.py similarity index 98% rename from test/vnx/resource/test_snap.py rename to storops_test/vnx/resource/test_snap.py index 9bcf46ed..8c75feda 100644 --- a/test/vnx/resource/test_snap.py +++ b/storops_test/vnx/resource/test_snap.py @@ -19,7 +19,7 @@ from hamcrest import assert_that, equal_to, raises -from test.vnx.cli_mock import patch_cli, t_cli +from storops_test.vnx.cli_mock import patch_cli, t_cli from storops.exception import VNXSnapError, VNXSnapNotExistsError, \ VNXDeleteAttachedSnapError from storops.vnx.resource.snap import VNXSnap, VNXSnapList diff --git a/test/vnx/resource/test_system.py b/storops_test/vnx/resource/test_system.py similarity index 97% rename from test/vnx/resource/test_system.py rename to storops_test/vnx/resource/test_system.py index 910b61d3..2746b7a2 100644 --- a/test/vnx/resource/test_system.py +++ b/storops_test/vnx/resource/test_system.py @@ -38,9 +38,9 @@ from storops.vnx.resource.vdm import VNXVdmList from storops.vnx.resource.vnx_domain import VNXDomainMemberList, \ VNXStorageProcessor -from test.vnx.cli_mock import patch_cli, t_vnx, t_cli -from test.vnx.nas_mock import patch_post -from test.vnx.resource.verifiers import verify_pool_0 +from storops_test.vnx.cli_mock import patch_cli, t_vnx, t_cli +from storops_test.vnx.nas_mock import patch_post +from storops_test.vnx.resource.verifiers import verify_pool_0 __author__ = 'Cedric Zhuang' @@ -381,7 +381,7 @@ def test_get_host(self): @patch_cli def test_enable_perf_stats_default(self): - vnx = VNXSystem('10.244.211.30') + vnx = VNXSystem('10.244.211.30', heartbeat_interval=0) clz_list = vnx.enable_perf_stats() assert_that(len(clz_list), equal_to(6)) assert_that(vnx.is_perf_stats_enabled(), equal_to(True)) @@ -391,7 +391,7 @@ def test_enable_perf_stats_default(self): @patch_cli def test_enable_perf_stats_filtered(self): - vnx = VNXSystem('10.244.211.30') + vnx = VNXSystem('10.244.211.30', heartbeat_interval=0) clz_list = vnx.enable_perf_stats([VNXLun, VNXDisk]) assert_that(len(clz_list), equal_to(2)) vnx.disable_perf_stats() @@ -404,7 +404,7 @@ def test_get_rsc_list_2_returns_different_instances(self): @patch_cli def test_enable_persist_perf_stats(self): - vnx = VNXSystem('10.244.211.30') + vnx = VNXSystem('10.244.211.30', heartbeat_interval=0) vnx.enable_persist_perf_stats() assert_that(vnx.is_perf_stats_persisted(), equal_to(True)) diff --git a/test/vnx/resource/test_vdm.py b/storops_test/vnx/resource/test_vdm.py similarity index 98% rename from test/vnx/resource/test_vdm.py rename to storops_test/vnx/resource/test_vdm.py index 8b45f0a4..f4b2e101 100644 --- a/test/vnx/resource/test_vdm.py +++ b/storops_test/vnx/resource/test_vdm.py @@ -19,7 +19,7 @@ from hamcrest import assert_that, greater_than_or_equal_to, raises from hamcrest import equal_to -from test.vnx.nas_mock import t_nas, patch_nas +from storops_test.vnx.nas_mock import t_nas, patch_nas from storops.vnx.enums import VNXShareType from storops.exception import VNXBackendError, VNXInvalidMoverID, \ VNXMoverInterfaceNotAttachedError, VNXMoverInterfaceNotExistsError diff --git a/test/vnx/resource/test_vnx_domain.py b/storops_test/vnx/resource/test_vnx_domain.py similarity index 99% rename from test/vnx/resource/test_vnx_domain.py rename to storops_test/vnx/resource/test_vnx_domain.py index 3b77c1c0..af311f03 100644 --- a/test/vnx/resource/test_vnx_domain.py +++ b/storops_test/vnx/resource/test_vnx_domain.py @@ -21,7 +21,7 @@ has_item, close_to from storops.lib.common import instance_cache -from test.vnx.cli_mock import t_cli, patch_cli, t_vnx +from storops_test.vnx.cli_mock import t_cli, patch_cli, t_vnx from storops.vnx.enums import VNXSPEnum from storops.vnx.resource.vnx_domain import VNXDomainNodeList, \ VNXNetworkAdmin, VNXStorageProcessor, VNXStorageProcessorList diff --git a/test/vnx/resource/verifiers.py b/storops_test/vnx/resource/verifiers.py similarity index 100% rename from test/vnx/resource/verifiers.py rename to storops_test/vnx/resource/verifiers.py diff --git a/test/vnx/test_block_cli.py b/storops_test/vnx/test_block_cli.py similarity index 99% rename from test/vnx/test_block_cli.py rename to storops_test/vnx/test_block_cli.py index d9027295..d72427eb 100644 --- a/test/vnx/test_block_cli.py +++ b/storops_test/vnx/test_block_cli.py @@ -25,7 +25,8 @@ from storops.vnx.enums import VNXTieringEnum, VNXProvisionEnum, \ VNXSPEnum, VNXMigrationRate, VNXLunType, VNXRaidType, VNXUserRoleEnum from storops.vnx.resource.lun import VNXLun -from test.vnx.cli_mock import patch_cli, extract_command, MockCli, t_cli +from storops_test.vnx.cli_mock import patch_cli, extract_command, MockCli, \ + t_cli __author__ = 'Cedric Zhuang' diff --git a/test/vnx/test_calculator.py b/storops_test/vnx/test_calculator.py similarity index 97% rename from test/vnx/test_calculator.py rename to storops_test/vnx/test_calculator.py index c2255243..439de747 100644 --- a/test/vnx/test_calculator.py +++ b/storops_test/vnx/test_calculator.py @@ -21,8 +21,8 @@ from storops.vnx.calculator import VNXMetricConfigParser, VNXMetricConfig, \ VNXMetricConfigList, minus, div, round_60, add, aggregated_sum from storops.vnx.resource.lun import VNXLun, VNXLunList -from test.utils import is_nan -from test.vnx.cli_mock import t_cli, patch_cli +from storops_test.utils import is_nan +from storops_test.vnx.cli_mock import t_cli, patch_cli __author__ = 'Cedric Zhuang' diff --git a/test/vnx/test_converter.py b/storops_test/vnx/test_converter.py similarity index 98% rename from test/vnx/test_converter.py rename to storops_test/vnx/test_converter.py index 83b88349..14cc3869 100644 --- a/test/vnx/test_converter.py +++ b/storops_test/vnx/test_converter.py @@ -22,7 +22,7 @@ from storops.vnx import converter from storops.vnx.resource.lun import VNXLun, VNXLunList from storops.vnx.resource.snap import VNXSnap -from test.vnx.cli_mock import t_cli, patch_cli +from storops_test.vnx.cli_mock import t_cli, patch_cli __author__ = 'Cedric Zhuang' diff --git a/test/vnx/test_enums.py b/storops_test/vnx/test_enums.py similarity index 99% rename from test/vnx/test_enums.py rename to storops_test/vnx/test_enums.py index 3dcde2b3..ddb36f2f 100644 --- a/test/vnx/test_enums.py +++ b/storops_test/vnx/test_enums.py @@ -27,7 +27,7 @@ VNXTieringEnum, VNXSPEnum, VNXRaidType, \ VNXMigrationRate, VNXPortType, VNXPoolRaidType from storops.vnx.nas_client import NasXmlResponse -from test.vnx.nas_mock import MockXmlPost +from storops_test.vnx.nas_mock import MockXmlPost class VNXErrorTest(TestCase): diff --git a/test/vnx/test_heart_beat.py b/storops_test/vnx/test_heart_beat.py similarity index 98% rename from test/vnx/test_heart_beat.py rename to storops_test/vnx/test_heart_beat.py index c654c244..2419db02 100644 --- a/test/vnx/test_heart_beat.py +++ b/storops_test/vnx/test_heart_beat.py @@ -22,7 +22,7 @@ greater_than, less_than_or_equal_to, greater_than_or_equal_to, raises, \ has_items -from test.vnx.cli_mock import patch_cli +from storops_test.vnx.cli_mock import patch_cli from storops.exception import VNXSystemDownError, VNXCredentialError from storops.vnx.heart_beat import NodeInfo, NodeHeartBeat @@ -47,6 +47,7 @@ def test_normal(self): assert_that(hb.is_available('spa'), equal_to(True)) assert_that(hb.is_available('spb'), equal_to(True)) hb.stop() + time.sleep(0.5) def test_add(self): hb = NodeHeartBeat(interval=0) @@ -114,6 +115,7 @@ def test_update_by_ip_latency(self): assert_that(node.available, equal_to(True)) assert_that(hb.command_count, greater_than(1)) hb.stop() + time.sleep(0.06) @patch_cli def test_interval_change(self): @@ -132,6 +134,7 @@ def test_interval_change(self): assert_that(hb.command_count, less_than_or_equal_to(12)) assert_that(hb.command_count, greater_than_or_equal_to(4)) hb.stop() + time.sleep(1) @patch_cli def test_interval_no_loop(self): @@ -197,6 +200,7 @@ def test_credential_error_no_heart_beat(self): assert_that(hb.command_count, less_than_or_equal_to(2)) assert_that(hb.command_count, less_than_or_equal_to(2)) hb.stop() + time.sleep(0.1) class NodeInfoTest(TestCase): diff --git a/test/vnx/test_nas.py b/storops_test/vnx/test_nas.py similarity index 93% rename from test/vnx/test_nas.py rename to storops_test/vnx/test_nas.py index c46e326e..0c649ba3 100644 --- a/test/vnx/test_nas.py +++ b/storops_test/vnx/test_nas.py @@ -20,8 +20,8 @@ from hamcrest import assert_that, equal_to -from test.utils import read_test_file -from test.vnx.nas_mock import MockXmlPost +from storops_test.utils import read_test_file +from storops_test.vnx.nas_mock import MockXmlPost __author__ = 'Cedric Zhuang' diff --git a/test/vnx/test_nas_cmd.py b/storops_test/vnx/test_nas_cmd.py similarity index 100% rename from test/vnx/test_nas_cmd.py rename to storops_test/vnx/test_nas_cmd.py diff --git a/test/vnx/test_navi_command.py b/storops_test/vnx/test_navi_command.py similarity index 98% rename from test/vnx/test_navi_command.py rename to storops_test/vnx/test_navi_command.py index d7f5ab3d..e00e283a 100644 --- a/test/vnx/test_navi_command.py +++ b/storops_test/vnx/test_navi_command.py @@ -22,7 +22,7 @@ from storops.exception import VNXCredentialError from storops.vnx.navi_command import NaviCommand -from test.vnx.cli_mock import patch_cli +from storops_test.vnx.cli_mock import patch_cli __author__ = 'Cedric Zhuang' diff --git a/test/vnx/test_parsers.py b/storops_test/vnx/test_parsers.py similarity index 99% rename from test/vnx/test_parsers.py rename to storops_test/vnx/test_parsers.py index 0506e218..e4ff0a3b 100644 --- a/test/vnx/test_parsers.py +++ b/storops_test/vnx/test_parsers.py @@ -24,8 +24,8 @@ from storops.vnx.parsers import VNXCliParser, VNXPropDescriptor, \ VNXParserConfigFactory from storops.vnx.resource import get_vnx_parser -from test.vnx.cli_mock import MockCli -from test.vnx.resource.fakes import STORAGE_GROUP_HBA +from storops_test.vnx.cli_mock import MockCli +from storops_test.vnx.resource.fakes import STORAGE_GROUP_HBA log = logging.getLogger(__name__) diff --git a/test/vnx/testdata/block_output/-np_connection_-getport_-all.txt b/storops_test/vnx/testdata/block_output/-np_connection_-getport_-all.txt similarity index 100% rename from test/vnx/testdata/block_output/-np_connection_-getport_-all.txt rename to storops_test/vnx/testdata/block_output/-np_connection_-getport_-all.txt diff --git a/test/vnx/testdata/block_output/-np_domain_-list.txt b/storops_test/vnx/testdata/block_output/-np_domain_-list.txt similarity index 100% rename from test/vnx/testdata/block_output/-np_domain_-list.txt rename to storops_test/vnx/testdata/block_output/-np_domain_-list.txt diff --git a/test/vnx/testdata/block_output/-np_getagent.txt b/storops_test/vnx/testdata/block_output/-np_getagent.txt similarity index 100% rename from test/vnx/testdata/block_output/-np_getagent.txt rename to storops_test/vnx/testdata/block_output/-np_getagent.txt diff --git a/test/vnx/testdata/block_output/-np_getcontrol.txt b/storops_test/vnx/testdata/block_output/-np_getcontrol.txt similarity index 100% rename from test/vnx/testdata/block_output/-np_getcontrol.txt rename to storops_test/vnx/testdata/block_output/-np_getcontrol.txt diff --git a/test/vnx/testdata/block_output/-np_getdisk.txt b/storops_test/vnx/testdata/block_output/-np_getdisk.txt similarity index 100% rename from test/vnx/testdata/block_output/-np_getdisk.txt rename to storops_test/vnx/testdata/block_output/-np_getdisk.txt diff --git a/test/vnx/testdata/block_output/-np_getsp.txt b/storops_test/vnx/testdata/block_output/-np_getsp.txt similarity index 100% rename from test/vnx/testdata/block_output/-np_getsp.txt rename to storops_test/vnx/testdata/block_output/-np_getsp.txt diff --git a/test/vnx/testdata/block_output/-np_lun_-list_-all.txt b/storops_test/vnx/testdata/block_output/-np_lun_-list_-all.txt similarity index 100% rename from test/vnx/testdata/block_output/-np_lun_-list_-all.txt rename to storops_test/vnx/testdata/block_output/-np_lun_-list_-all.txt diff --git a/test/vnx/testdata/block_output/-np_ndu_-list.txt b/storops_test/vnx/testdata/block_output/-np_ndu_-list.txt similarity index 100% rename from test/vnx/testdata/block_output/-np_ndu_-list.txt rename to storops_test/vnx/testdata/block_output/-np_ndu_-list.txt diff --git a/test/vnx/testdata/block_output/-np_ndu_-list_-name_-Compression.txt b/storops_test/vnx/testdata/block_output/-np_ndu_-list_-name_-Compression.txt similarity index 100% rename from test/vnx/testdata/block_output/-np_ndu_-list_-name_-Compression.txt rename to storops_test/vnx/testdata/block_output/-np_ndu_-list_-name_-Compression.txt diff --git a/test/vnx/testdata/block_output/-np_ndu_-list_-name_-Deduplication.txt b/storops_test/vnx/testdata/block_output/-np_ndu_-list_-name_-Deduplication.txt similarity index 100% rename from test/vnx/testdata/block_output/-np_ndu_-list_-name_-Deduplication.txt rename to storops_test/vnx/testdata/block_output/-np_ndu_-list_-name_-Deduplication.txt diff --git a/test/vnx/testdata/block_output/-np_ndu_-list_-name_-Deduplication_no.txt b/storops_test/vnx/testdata/block_output/-np_ndu_-list_-name_-Deduplication_no.txt similarity index 100% rename from test/vnx/testdata/block_output/-np_ndu_-list_-name_-Deduplication_no.txt rename to storops_test/vnx/testdata/block_output/-np_ndu_-list_-name_-Deduplication_no.txt diff --git a/test/vnx/testdata/block_output/-np_ndu_-list_-name_-FAST.txt b/storops_test/vnx/testdata/block_output/-np_ndu_-list_-name_-FAST.txt similarity index 100% rename from test/vnx/testdata/block_output/-np_ndu_-list_-name_-FAST.txt rename to storops_test/vnx/testdata/block_output/-np_ndu_-list_-name_-FAST.txt diff --git a/test/vnx/testdata/block_output/-np_ndu_-list_-name_-FASTCache.txt b/storops_test/vnx/testdata/block_output/-np_ndu_-list_-name_-FASTCache.txt similarity index 100% rename from test/vnx/testdata/block_output/-np_ndu_-list_-name_-FASTCache.txt rename to storops_test/vnx/testdata/block_output/-np_ndu_-list_-name_-FASTCache.txt diff --git a/test/vnx/testdata/block_output/-np_ndu_-list_-name_-MirrorView_A.txt b/storops_test/vnx/testdata/block_output/-np_ndu_-list_-name_-MirrorView_A.txt similarity index 100% rename from test/vnx/testdata/block_output/-np_ndu_-list_-name_-MirrorView_A.txt rename to storops_test/vnx/testdata/block_output/-np_ndu_-list_-name_-MirrorView_A.txt diff --git a/test/vnx/testdata/block_output/-np_ndu_-list_-name_-MirrorView_S.txt b/storops_test/vnx/testdata/block_output/-np_ndu_-list_-name_-MirrorView_S.txt similarity index 100% rename from test/vnx/testdata/block_output/-np_ndu_-list_-name_-MirrorView_S.txt rename to storops_test/vnx/testdata/block_output/-np_ndu_-list_-name_-MirrorView_S.txt diff --git a/test/vnx/testdata/block_output/-np_ndu_-list_-name_-SANCopy.txt b/storops_test/vnx/testdata/block_output/-np_ndu_-list_-name_-SANCopy.txt similarity index 100% rename from test/vnx/testdata/block_output/-np_ndu_-list_-name_-SANCopy.txt rename to storops_test/vnx/testdata/block_output/-np_ndu_-list_-name_-SANCopy.txt diff --git a/test/vnx/testdata/block_output/-np_ndu_-list_-name_-ThinProvisioning.txt b/storops_test/vnx/testdata/block_output/-np_ndu_-list_-name_-ThinProvisioning.txt similarity index 100% rename from test/vnx/testdata/block_output/-np_ndu_-list_-name_-ThinProvisioning.txt rename to storops_test/vnx/testdata/block_output/-np_ndu_-list_-name_-ThinProvisioning.txt diff --git a/test/vnx/testdata/block_output/-np_ndu_-list_-name_-VNXSnapshots.txt b/storops_test/vnx/testdata/block_output/-np_ndu_-list_-name_-VNXSnapshots.txt similarity index 100% rename from test/vnx/testdata/block_output/-np_ndu_-list_-name_-VNXSnapshots.txt rename to storops_test/vnx/testdata/block_output/-np_ndu_-list_-name_-VNXSnapshots.txt diff --git a/test/vnx/testdata/block_output/-np_networkadmin_-get_-sp_a_-all.txt b/storops_test/vnx/testdata/block_output/-np_networkadmin_-get_-sp_a_-all.txt similarity index 100% rename from test/vnx/testdata/block_output/-np_networkadmin_-get_-sp_a_-all.txt rename to storops_test/vnx/testdata/block_output/-np_networkadmin_-get_-sp_a_-all.txt diff --git a/test/vnx/testdata/block_output/-np_networkadmin_-get_-sp_b_-all.txt b/storops_test/vnx/testdata/block_output/-np_networkadmin_-get_-sp_b_-all.txt similarity index 100% rename from test/vnx/testdata/block_output/-np_networkadmin_-get_-sp_b_-all.txt rename to storops_test/vnx/testdata/block_output/-np_networkadmin_-get_-sp_b_-all.txt diff --git a/test/vnx/testdata/block_output/-np_port_-list_-sp_-all.txt b/storops_test/vnx/testdata/block_output/-np_port_-list_-sp_-all.txt similarity index 100% rename from test/vnx/testdata/block_output/-np_port_-list_-sp_-all.txt rename to storops_test/vnx/testdata/block_output/-np_port_-list_-sp_-all.txt diff --git a/test/vnx/testdata/block_output/-np_snap_-group_-addmember_-id_test_cg_-res_1,2,3.txt b/storops_test/vnx/testdata/block_output/-np_snap_-group_-addmember_-id_test_cg_-res_1,2,3.txt similarity index 100% rename from test/vnx/testdata/block_output/-np_snap_-group_-addmember_-id_test_cg_-res_1,2,3.txt rename to storops_test/vnx/testdata/block_output/-np_snap_-group_-addmember_-id_test_cg_-res_1,2,3.txt diff --git a/test/vnx/testdata/block_output/-np_storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_microsoft.txt b/storops_test/vnx/testdata/block_output/-np_storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_microsoft.txt similarity index 100% rename from test/vnx/testdata/block_output/-np_storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_microsoft.txt rename to storops_test/vnx/testdata/block_output/-np_storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_microsoft.txt diff --git a/test/vnx/testdata/block_output/-np_storagepool_-feature_-info_-isVirtualPr____LUNs_-numDiskDrivesAllPools_-availableDisks.txt b/storops_test/vnx/testdata/block_output/-np_storagepool_-feature_-info_-isVirtualPr____LUNs_-numDiskDrivesAllPools_-availableDisks.txt similarity index 100% rename from test/vnx/testdata/block_output/-np_storagepool_-feature_-info_-isVirtualPr____LUNs_-numDiskDrivesAllPools_-availableDisks.txt rename to storops_test/vnx/testdata/block_output/-np_storagepool_-feature_-info_-isVirtualPr____LUNs_-numDiskDrivesAllPools_-availableDisks.txt diff --git a/test/vnx/testdata/block_output/arrayname.txt b/storops_test/vnx/testdata/block_output/arrayname.txt similarity index 100% rename from test/vnx/testdata/block_output/arrayname.txt rename to storops_test/vnx/testdata/block_output/arrayname.txt diff --git a/test/vnx/testdata/block_output/arrayname_123456789_123456789_123456789_123456789_123456789_123456789_123456789_-o.txt b/storops_test/vnx/testdata/block_output/arrayname_123456789_123456789_123456789_123456789_123456789_123456789_123456789_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/arrayname_123456789_123456789_123456789_123456789_123456789_123456789_123456789_-o.txt rename to storops_test/vnx/testdata/block_output/arrayname_123456789_123456789_123456789_123456789_123456789_123456789_123456789_-o.txt diff --git a/test/vnx/testdata/block_output/arrayname_NEW_NAME_-o.txt b/storops_test/vnx/testdata/block_output/arrayname_NEW_NAME_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/arrayname_NEW_NAME_-o.txt rename to storops_test/vnx/testdata/block_output/arrayname_NEW_NAME_-o.txt diff --git a/test/vnx/testdata/block_output/compression_-off_-l_19_-o.txt b/storops_test/vnx/testdata/block_output/compression_-off_-l_19_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/compression_-off_-l_19_-o.txt rename to storops_test/vnx/testdata/block_output/compression_-off_-l_19_-o.txt diff --git a/test/vnx/testdata/block_output/compression_-on_-l_19_-o.txt b/storops_test/vnx/testdata/block_output/compression_-on_-l_19_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/compression_-on_-l_19_-o.txt rename to storops_test/vnx/testdata/block_output/compression_-on_-l_19_-o.txt diff --git a/test/vnx/testdata/block_output/compression_-on_-l_19_-rate_high_-o.txt b/storops_test/vnx/testdata/block_output/compression_-on_-l_19_-rate_high_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/compression_-on_-l_19_-rate_high_-o.txt rename to storops_test/vnx/testdata/block_output/compression_-on_-l_19_-rate_high_-o.txt diff --git a/test/vnx/testdata/block_output/compression_-on_-l_3_-rate_low_-ignoreThresholds_-o.txt b/storops_test/vnx/testdata/block_output/compression_-on_-l_3_-rate_low_-ignoreThresholds_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/compression_-on_-l_3_-rate_low_-ignoreThresholds_-o.txt rename to storops_test/vnx/testdata/block_output/compression_-on_-l_3_-rate_low_-ignoreThresholds_-o.txt diff --git a/test/vnx/testdata/block_output/connection_-delport_-sp_a_-portid_10_-vportid_0_-o.txt b/storops_test/vnx/testdata/block_output/connection_-delport_-sp_a_-portid_10_-vportid_0_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/connection_-delport_-sp_a_-portid_10_-vportid_0_-o.txt rename to storops_test/vnx/testdata/block_output/connection_-delport_-sp_a_-portid_10_-vportid_0_-o.txt diff --git a/test/vnx/testdata/block_output/connection_-getport_-all.txt b/storops_test/vnx/testdata/block_output/connection_-getport_-all.txt similarity index 100% rename from test/vnx/testdata/block_output/connection_-getport_-all.txt rename to storops_test/vnx/testdata/block_output/connection_-getport_-all.txt diff --git a/test/vnx/testdata/block_output/connection_-getport_-all_-portid_6_-vportid_0.txt b/storops_test/vnx/testdata/block_output/connection_-getport_-all_-portid_6_-vportid_0.txt similarity index 100% rename from test/vnx/testdata/block_output/connection_-getport_-all_-portid_6_-vportid_0.txt rename to storops_test/vnx/testdata/block_output/connection_-getport_-all_-portid_6_-vportid_0.txt diff --git a/test/vnx/testdata/block_output/connection_-getport_-all_-portid_8.txt b/storops_test/vnx/testdata/block_output/connection_-getport_-all_-portid_8.txt similarity index 100% rename from test/vnx/testdata/block_output/connection_-getport_-all_-portid_8.txt rename to storops_test/vnx/testdata/block_output/connection_-getport_-all_-portid_8.txt diff --git a/test/vnx/testdata/block_output/connection_-getport_-all_-sp_a.txt b/storops_test/vnx/testdata/block_output/connection_-getport_-all_-sp_a.txt similarity index 100% rename from test/vnx/testdata/block_output/connection_-getport_-all_-sp_a.txt rename to storops_test/vnx/testdata/block_output/connection_-getport_-all_-sp_a.txt diff --git a/test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_10.txt b/storops_test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_10.txt similarity index 100% rename from test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_10.txt rename to storops_test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_10.txt diff --git a/test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_3_-vportid_1.txt b/storops_test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_3_-vportid_1.txt similarity index 100% rename from test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_3_-vportid_1.txt rename to storops_test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_3_-vportid_1.txt diff --git a/test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_4.txt b/storops_test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_4.txt similarity index 100% rename from test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_4.txt rename to storops_test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_4.txt diff --git a/test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_5_-vportid_0.txt b/storops_test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_5_-vportid_0.txt similarity index 100% rename from test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_5_-vportid_0.txt rename to storops_test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_5_-vportid_0.txt diff --git a/test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_6_-vportid_0.txt b/storops_test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_6_-vportid_0.txt similarity index 100% rename from test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_6_-vportid_0.txt rename to storops_test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_6_-vportid_0.txt diff --git a/test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_8_-vportid_0.txt b/storops_test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_8_-vportid_0.txt similarity index 100% rename from test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_8_-vportid_0.txt rename to storops_test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_8_-vportid_0.txt diff --git a/test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_9.txt b/storops_test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_9.txt similarity index 100% rename from test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_9.txt rename to storops_test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_9.txt diff --git a/test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_9_-vportid_0.txt b/storops_test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_9_-vportid_0.txt similarity index 100% rename from test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_9_-vportid_0.txt rename to storops_test/vnx/testdata/block_output/connection_-getport_-all_-sp_a_-portid_9_-vportid_0.txt diff --git a/test/vnx/testdata/block_output/connection_-getport_-all_-sp_b_-portid_10.txt b/storops_test/vnx/testdata/block_output/connection_-getport_-all_-sp_b_-portid_10.txt similarity index 100% rename from test/vnx/testdata/block_output/connection_-getport_-all_-sp_b_-portid_10.txt rename to storops_test/vnx/testdata/block_output/connection_-getport_-all_-sp_b_-portid_10.txt diff --git a/test/vnx/testdata/block_output/connection_-getport_-all_-sp_b_-portid_10_-vportid_0.txt b/storops_test/vnx/testdata/block_output/connection_-getport_-all_-sp_b_-portid_10_-vportid_0.txt similarity index 100% rename from test/vnx/testdata/block_output/connection_-getport_-all_-sp_b_-portid_10_-vportid_0.txt rename to storops_test/vnx/testdata/block_output/connection_-getport_-all_-sp_b_-portid_10_-vportid_0.txt diff --git a/test/vnx/testdata/block_output/connection_-pingnode_-sp_a_-portid_8_-vportid_0_-address_10.244.211.3_-count_1.txt b/storops_test/vnx/testdata/block_output/connection_-pingnode_-sp_a_-portid_8_-vportid_0_-address_10.244.211.3_-count_1.txt similarity index 100% rename from test/vnx/testdata/block_output/connection_-pingnode_-sp_a_-portid_8_-vportid_0_-address_10.244.211.3_-count_1.txt rename to storops_test/vnx/testdata/block_output/connection_-pingnode_-sp_a_-portid_8_-vportid_0_-address_10.244.211.3_-count_1.txt diff --git a/test/vnx/testdata/block_output/connection_-pingnode_-sp_a_-portid_8_-vportid_0_-address_10.244.211.4_-count_1.txt b/storops_test/vnx/testdata/block_output/connection_-pingnode_-sp_a_-portid_8_-vportid_0_-address_10.244.211.4_-count_1.txt similarity index 100% rename from test/vnx/testdata/block_output/connection_-pingnode_-sp_a_-portid_8_-vportid_0_-address_10.244.211.4_-count_1.txt rename to storops_test/vnx/testdata/block_output/connection_-pingnode_-sp_a_-portid_8_-vportid_0_-address_10.244.211.4_-count_1.txt diff --git a/test/vnx/testdata/block_output/connection_-pingnode_-sp_a_-portid_8_-vportid_0_-address_10.244.211.5.txt b/storops_test/vnx/testdata/block_output/connection_-pingnode_-sp_a_-portid_8_-vportid_0_-address_10.244.211.5.txt similarity index 100% rename from test/vnx/testdata/block_output/connection_-pingnode_-sp_a_-portid_8_-vportid_0_-address_10.244.211.5.txt rename to storops_test/vnx/testdata/block_output/connection_-pingnode_-sp_a_-portid_8_-vportid_0_-address_10.244.211.5.txt diff --git a/test/vnx/testdata/block_output/connection_-setport_-iscsi_-sp_a_-portid_10_-vportid_0_-address_6.6.6.6_-subnetmask_255.255.255.0_-gateway_5.5.5.1_-o.txt b/storops_test/vnx/testdata/block_output/connection_-setport_-iscsi_-sp_a_-portid_10_-vportid_0_-address_6.6.6.6_-subnetmask_255.255.255.0_-gateway_5.5.5.1_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/connection_-setport_-iscsi_-sp_a_-portid_10_-vportid_0_-address_6.6.6.6_-subnetmask_255.255.255.0_-gateway_5.5.5.1_-o.txt rename to storops_test/vnx/testdata/block_output/connection_-setport_-iscsi_-sp_a_-portid_10_-vportid_0_-address_6.6.6.6_-subnetmask_255.255.255.0_-gateway_5.5.5.1_-o.txt diff --git a/test/vnx/testdata/block_output/createrg_11_1_0_0_1_0_1_-raidtype_r5_-o.txt b/storops_test/vnx/testdata/block_output/createrg_11_1_0_0_1_0_1_-raidtype_r5_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/createrg_11_1_0_0_1_0_1_-raidtype_r5_-o.txt rename to storops_test/vnx/testdata/block_output/createrg_11_1_0_0_1_0_1_-raidtype_r5_-o.txt diff --git a/test/vnx/testdata/block_output/credential_error.txt b/storops_test/vnx/testdata/block_output/credential_error.txt similarity index 100% rename from test/vnx/testdata/block_output/credential_error.txt rename to storops_test/vnx/testdata/block_output/credential_error.txt diff --git a/test/vnx/testdata/block_output/cru_on_off_-messner_0_0_1_0.txt b/storops_test/vnx/testdata/block_output/cru_on_off_-messner_0_0_1_0.txt similarity index 100% rename from test/vnx/testdata/block_output/cru_on_off_-messner_0_0_1_0.txt rename to storops_test/vnx/testdata/block_output/cru_on_off_-messner_0_0_1_0.txt diff --git a/test/vnx/testdata/block_output/cru_on_off_-messner_0_0_1_1.txt b/storops_test/vnx/testdata/block_output/cru_on_off_-messner_0_0_1_1.txt similarity index 100% rename from test/vnx/testdata/block_output/cru_on_off_-messner_0_0_1_1.txt rename to storops_test/vnx/testdata/block_output/cru_on_off_-messner_0_0_1_1.txt diff --git a/test/vnx/testdata/block_output/domain_-list.txt b/storops_test/vnx/testdata/block_output/domain_-list.txt similarity index 100% rename from test/vnx/testdata/block_output/domain_-list.txt rename to storops_test/vnx/testdata/block_output/domain_-list.txt diff --git a/test/vnx/testdata/block_output/domain_-list_1.txt b/storops_test/vnx/testdata/block_output/domain_-list_1.txt similarity index 100% rename from test/vnx/testdata/block_output/domain_-list_1.txt rename to storops_test/vnx/testdata/block_output/domain_-list_1.txt diff --git a/test/vnx/testdata/block_output/domain_-list_no_cs.txt b/storops_test/vnx/testdata/block_output/domain_-list_no_cs.txt similarity index 100% rename from test/vnx/testdata/block_output/domain_-list_no_cs.txt rename to storops_test/vnx/testdata/block_output/domain_-list_no_cs.txt diff --git a/test/vnx/testdata/block_output/domain_-list_normal.txt b/storops_test/vnx/testdata/block_output/domain_-list_normal.txt similarity index 100% rename from test/vnx/testdata/block_output/domain_-list_normal.txt rename to storops_test/vnx/testdata/block_output/domain_-list_normal.txt diff --git a/test/vnx/testdata/block_output/getagent.txt b/storops_test/vnx/testdata/block_output/getagent.txt similarity index 100% rename from test/vnx/testdata/block_output/getagent.txt rename to storops_test/vnx/testdata/block_output/getagent.txt diff --git a/test/vnx/testdata/block_output/getcontrol.txt b/storops_test/vnx/testdata/block_output/getcontrol.txt similarity index 100% rename from test/vnx/testdata/block_output/getcontrol.txt rename to storops_test/vnx/testdata/block_output/getcontrol.txt diff --git a/test/vnx/testdata/block_output/getdisk.txt b/storops_test/vnx/testdata/block_output/getdisk.txt similarity index 100% rename from test/vnx/testdata/block_output/getdisk.txt rename to storops_test/vnx/testdata/block_output/getdisk.txt diff --git a/test/vnx/testdata/block_output/getdisk_0_0_9.txt b/storops_test/vnx/testdata/block_output/getdisk_0_0_9.txt similarity index 100% rename from test/vnx/testdata/block_output/getdisk_0_0_9.txt rename to storops_test/vnx/testdata/block_output/getdisk_0_0_9.txt diff --git a/test/vnx/testdata/block_output/getdisk_1_0_12.txt b/storops_test/vnx/testdata/block_output/getdisk_1_0_12.txt similarity index 100% rename from test/vnx/testdata/block_output/getdisk_1_0_12.txt rename to storops_test/vnx/testdata/block_output/getdisk_1_0_12.txt diff --git a/test/vnx/testdata/block_output/getdisk_4_0_E8.txt b/storops_test/vnx/testdata/block_output/getdisk_4_0_E8.txt similarity index 100% rename from test/vnx/testdata/block_output/getdisk_4_0_E8.txt rename to storops_test/vnx/testdata/block_output/getdisk_4_0_E8.txt diff --git a/test/vnx/testdata/block_output/getdisk_t0.txt b/storops_test/vnx/testdata/block_output/getdisk_t0.txt similarity index 100% rename from test/vnx/testdata/block_output/getdisk_t0.txt rename to storops_test/vnx/testdata/block_output/getdisk_t0.txt diff --git a/test/vnx/testdata/block_output/getdisk_t1.txt b/storops_test/vnx/testdata/block_output/getdisk_t1.txt similarity index 100% rename from test/vnx/testdata/block_output/getdisk_t1.txt rename to storops_test/vnx/testdata/block_output/getdisk_t1.txt diff --git a/test/vnx/testdata/block_output/getrg.txt b/storops_test/vnx/testdata/block_output/getrg.txt similarity index 100% rename from test/vnx/testdata/block_output/getrg.txt rename to storops_test/vnx/testdata/block_output/getrg.txt diff --git a/test/vnx/testdata/block_output/getrg_0.txt b/storops_test/vnx/testdata/block_output/getrg_0.txt similarity index 100% rename from test/vnx/testdata/block_output/getrg_0.txt rename to storops_test/vnx/testdata/block_output/getrg_0.txt diff --git a/test/vnx/testdata/block_output/getrg_4.txt b/storops_test/vnx/testdata/block_output/getrg_4.txt similarity index 100% rename from test/vnx/testdata/block_output/getrg_4.txt rename to storops_test/vnx/testdata/block_output/getrg_4.txt diff --git a/test/vnx/testdata/block_output/getsp.txt b/storops_test/vnx/testdata/block_output/getsp.txt similarity index 100% rename from test/vnx/testdata/block_output/getsp.txt rename to storops_test/vnx/testdata/block_output/getsp.txt diff --git a/test/vnx/testdata/block_output/ip_error.txt b/storops_test/vnx/testdata/block_output/ip_error.txt similarity index 100% rename from test/vnx/testdata/block_output/ip_error.txt rename to storops_test/vnx/testdata/block_output/ip_error.txt diff --git a/test/vnx/testdata/block_output/lun_-attach_-l_382_-snapName_s1.txt b/storops_test/vnx/testdata/block_output/lun_-attach_-l_382_-snapName_s1.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-attach_-l_382_-snapName_s1.txt rename to storops_test/vnx/testdata/block_output/lun_-attach_-l_382_-snapName_s1.txt diff --git a/test/vnx/testdata/block_output/lun_-attach_-l_4057_-snapName_s1.txt b/storops_test/vnx/testdata/block_output/lun_-attach_-l_4057_-snapName_s1.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-attach_-l_4057_-snapName_s1.txt rename to storops_test/vnx/testdata/block_output/lun_-attach_-l_4057_-snapName_s1.txt diff --git a/test/vnx/testdata/block_output/lun_-create_-capacity_1_-sq_gb_-poolId_0_-l_3.txt b/storops_test/vnx/testdata/block_output/lun_-create_-capacity_1_-sq_gb_-poolId_0_-l_3.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-create_-capacity_1_-sq_gb_-poolId_0_-l_3.txt rename to storops_test/vnx/testdata/block_output/lun_-create_-capacity_1_-sq_gb_-poolId_0_-l_3.txt diff --git a/test/vnx/testdata/block_output/lun_-create_-capacity_1_-sq_gb_-poolId_1_-name_abc_-ignoreThresholds.txt b/storops_test/vnx/testdata/block_output/lun_-create_-capacity_1_-sq_gb_-poolId_1_-name_abc_-ignoreThresholds.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-create_-capacity_1_-sq_gb_-poolId_1_-name_abc_-ignoreThresholds.txt rename to storops_test/vnx/testdata/block_output/lun_-create_-capacity_1_-sq_gb_-poolId_1_-name_abc_-ignoreThresholds.txt diff --git a/test/vnx/testdata/block_output/lun_-create_-capacity_1_-sq_gb_-poolName_p0_-l_12.txt b/storops_test/vnx/testdata/block_output/lun_-create_-capacity_1_-sq_gb_-poolName_p0_-l_12.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-create_-capacity_1_-sq_gb_-poolName_p0_-l_12.txt rename to storops_test/vnx/testdata/block_output/lun_-create_-capacity_1_-sq_gb_-poolName_p0_-l_12.txt diff --git a/test/vnx/testdata/block_output/lun_-create_-capacity_2_-sq_gb_-poolId_0_-l_2.txt b/storops_test/vnx/testdata/block_output/lun_-create_-capacity_2_-sq_gb_-poolId_0_-l_2.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-create_-capacity_2_-sq_gb_-poolId_0_-l_2.txt rename to storops_test/vnx/testdata/block_output/lun_-create_-capacity_2_-sq_gb_-poolId_0_-l_2.txt diff --git a/test/vnx/testdata/block_output/lun_-create_-type_snap_-primaryLun_0_-name_m1.txt b/storops_test/vnx/testdata/block_output/lun_-create_-type_snap_-primaryLun_0_-name_m1.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-create_-type_snap_-primaryLun_0_-name_m1.txt rename to storops_test/vnx/testdata/block_output/lun_-create_-type_snap_-primaryLun_0_-name_m1.txt diff --git a/test/vnx/testdata/block_output/lun_-create_-type_snap_-primaryLun_382_-name_m1.txt b/storops_test/vnx/testdata/block_output/lun_-create_-type_snap_-primaryLun_382_-name_m1.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-create_-type_snap_-primaryLun_382_-name_m1.txt rename to storops_test/vnx/testdata/block_output/lun_-create_-type_snap_-primaryLun_382_-name_m1.txt diff --git a/test/vnx/testdata/block_output/lun_-create_-type_snap_-primaryLun_382_-name_m2.txt b/storops_test/vnx/testdata/block_output/lun_-create_-type_snap_-primaryLun_382_-name_m2.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-create_-type_snap_-primaryLun_382_-name_m2.txt rename to storops_test/vnx/testdata/block_output/lun_-create_-type_snap_-primaryLun_382_-name_m2.txt diff --git a/test/vnx/testdata/block_output/lun_-create_-type_snap_-primaryLun_382_-name_m3.txt b/storops_test/vnx/testdata/block_output/lun_-create_-type_snap_-primaryLun_382_-name_m3.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-create_-type_snap_-primaryLun_382_-name_m3.txt rename to storops_test/vnx/testdata/block_output/lun_-create_-type_snap_-primaryLun_382_-name_m3.txt diff --git a/test/vnx/testdata/block_output/lun_-create_auto_tiering_not_supported.txt b/storops_test/vnx/testdata/block_output/lun_-create_auto_tiering_not_supported.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-create_auto_tiering_not_supported.txt rename to storops_test/vnx/testdata/block_output/lun_-create_auto_tiering_not_supported.txt diff --git a/test/vnx/testdata/block_output/lun_-create_privisioning_missing.txt b/storops_test/vnx/testdata/block_output/lun_-create_privisioning_missing.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-create_privisioning_missing.txt rename to storops_test/vnx/testdata/block_output/lun_-create_privisioning_missing.txt diff --git a/test/vnx/testdata/block_output/lun_-destroy_-l_0_-destroySnapshots_-forceDetach_-o.txt b/storops_test/vnx/testdata/block_output/lun_-destroy_-l_0_-destroySnapshots_-forceDetach_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-destroy_-l_0_-destroySnapshots_-forceDetach_-o.txt rename to storops_test/vnx/testdata/block_output/lun_-destroy_-l_0_-destroySnapshots_-forceDetach_-o.txt diff --git a/test/vnx/testdata/block_output/lun_-destroy_-l_196_-destroySnapshots_-forceDetach_-o.txt b/storops_test/vnx/testdata/block_output/lun_-destroy_-l_196_-destroySnapshots_-forceDetach_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-destroy_-l_196_-destroySnapshots_-forceDetach_-o.txt rename to storops_test/vnx/testdata/block_output/lun_-destroy_-l_196_-destroySnapshots_-forceDetach_-o.txt diff --git a/test/vnx/testdata/block_output/lun_-destroy_-name_has_smp_-o.txt b/storops_test/vnx/testdata/block_output/lun_-destroy_-name_has_smp_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-destroy_-name_has_smp_-o.txt rename to storops_test/vnx/testdata/block_output/lun_-destroy_-name_has_smp_-o.txt diff --git a/test/vnx/testdata/block_output/lun_-destroy_-name_in_sg_-o.txt b/storops_test/vnx/testdata/block_output/lun_-destroy_-name_in_sg_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-destroy_-name_in_sg_-o.txt rename to storops_test/vnx/testdata/block_output/lun_-destroy_-name_in_sg_-o.txt diff --git a/test/vnx/testdata/block_output/lun_-destroy_-name_l1_-o.txt b/storops_test/vnx/testdata/block_output/lun_-destroy_-name_l1_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-destroy_-name_l1_-o.txt rename to storops_test/vnx/testdata/block_output/lun_-destroy_-name_l1_-o.txt diff --git a/test/vnx/testdata/block_output/lun_-destroy_-name_l2_-o.txt b/storops_test/vnx/testdata/block_output/lun_-destroy_-name_l2_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-destroy_-name_l2_-o.txt rename to storops_test/vnx/testdata/block_output/lun_-destroy_-name_l2_-o.txt diff --git a/test/vnx/testdata/block_output/lun_-destroy_-name_lun_in_migration_-o.txt b/storops_test/vnx/testdata/block_output/lun_-destroy_-name_lun_in_migration_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-destroy_-name_lun_in_migration_-o.txt rename to storops_test/vnx/testdata/block_output/lun_-destroy_-name_lun_in_migration_-o.txt diff --git a/test/vnx/testdata/block_output/lun_-destroy_-name_m1_-destroySnapshots_-forceDetach_-o.txt b/storops_test/vnx/testdata/block_output/lun_-destroy_-name_m1_-destroySnapshots_-forceDetach_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-destroy_-name_m1_-destroySnapshots_-forceDetach_-o.txt rename to storops_test/vnx/testdata/block_output/lun_-destroy_-name_m1_-destroySnapshots_-forceDetach_-o.txt diff --git a/test/vnx/testdata/block_output/lun_-destroy_-name_not_exists_-o.txt b/storops_test/vnx/testdata/block_output/lun_-destroy_-name_not_exists_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-destroy_-name_not_exists_-o.txt rename to storops_test/vnx/testdata/block_output/lun_-destroy_-name_not_exists_-o.txt diff --git a/test/vnx/testdata/block_output/lun_-destroy_-name_y_-destroySnapshots_-forceDetach_-o.txt b/storops_test/vnx/testdata/block_output/lun_-destroy_-name_y_-destroySnapshots_-forceDetach_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-destroy_-name_y_-destroySnapshots_-forceDetach_-o.txt rename to storops_test/vnx/testdata/block_output/lun_-destroy_-name_y_-destroySnapshots_-forceDetach_-o.txt diff --git a/test/vnx/testdata/block_output/lun_-detach_-l_0_-o.txt b/storops_test/vnx/testdata/block_output/lun_-detach_-l_0_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-detach_-l_0_-o.txt rename to storops_test/vnx/testdata/block_output/lun_-detach_-l_0_-o.txt diff --git a/test/vnx/testdata/block_output/lun_-expand_-l_0_-capacity_999999_-sq_gb_-o.txt b/storops_test/vnx/testdata/block_output/lun_-expand_-l_0_-capacity_999999_-sq_gb_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-expand_-l_0_-capacity_999999_-sq_gb_-o.txt rename to storops_test/vnx/testdata/block_output/lun_-expand_-l_0_-capacity_999999_-sq_gb_-o.txt diff --git a/test/vnx/testdata/block_output/lun_-expand_-l_1_-capacity_12_-sq_gb_-o.txt b/storops_test/vnx/testdata/block_output/lun_-expand_-l_1_-capacity_12_-sq_gb_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-expand_-l_1_-capacity_12_-sq_gb_-o.txt rename to storops_test/vnx/testdata/block_output/lun_-expand_-l_1_-capacity_12_-sq_gb_-o.txt diff --git a/test/vnx/testdata/block_output/lun_-expand_-l_1_-capacity_1_-sq_gb_-o.txt b/storops_test/vnx/testdata/block_output/lun_-expand_-l_1_-capacity_1_-sq_gb_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-expand_-l_1_-capacity_1_-sq_gb_-o.txt rename to storops_test/vnx/testdata/block_output/lun_-expand_-l_1_-capacity_1_-sq_gb_-o.txt diff --git a/test/vnx/testdata/block_output/lun_-expand_-l_1_-capacity_500_-sq_gb_-o.txt b/storops_test/vnx/testdata/block_output/lun_-expand_-l_1_-capacity_500_-sq_gb_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-expand_-l_1_-capacity_500_-sq_gb_-o.txt rename to storops_test/vnx/testdata/block_output/lun_-expand_-l_1_-capacity_500_-sq_gb_-o.txt diff --git a/test/vnx/testdata/block_output/lun_-list_-all.txt b/storops_test/vnx/testdata/block_output/lun_-list_-all.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-list_-all.txt rename to storops_test/vnx/testdata/block_output/lun_-list_-all.txt diff --git a/test/vnx/testdata/block_output/lun_-list_-all_-l_0.txt b/storops_test/vnx/testdata/block_output/lun_-list_-all_-l_0.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-list_-all_-l_0.txt rename to storops_test/vnx/testdata/block_output/lun_-list_-all_-l_0.txt diff --git a/test/vnx/testdata/block_output/lun_-list_-all_-l_1.txt b/storops_test/vnx/testdata/block_output/lun_-list_-all_-l_1.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-list_-all_-l_1.txt rename to storops_test/vnx/testdata/block_output/lun_-list_-all_-l_1.txt diff --git a/test/vnx/testdata/block_output/lun_-list_-all_-l_19.txt b/storops_test/vnx/testdata/block_output/lun_-list_-all_-l_19.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-list_-all_-l_19.txt rename to storops_test/vnx/testdata/block_output/lun_-list_-all_-l_19.txt diff --git a/test/vnx/testdata/block_output/lun_-list_-all_-l_196.txt b/storops_test/vnx/testdata/block_output/lun_-list_-all_-l_196.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-list_-all_-l_196.txt rename to storops_test/vnx/testdata/block_output/lun_-list_-all_-l_196.txt diff --git a/test/vnx/testdata/block_output/lun_-list_-all_-l_2.txt b/storops_test/vnx/testdata/block_output/lun_-list_-all_-l_2.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-list_-all_-l_2.txt rename to storops_test/vnx/testdata/block_output/lun_-list_-all_-l_2.txt diff --git a/test/vnx/testdata/block_output/lun_-list_-all_-l_3.txt b/storops_test/vnx/testdata/block_output/lun_-list_-all_-l_3.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-list_-all_-l_3.txt rename to storops_test/vnx/testdata/block_output/lun_-list_-all_-l_3.txt diff --git a/test/vnx/testdata/block_output/lun_-list_-all_-l_4.txt b/storops_test/vnx/testdata/block_output/lun_-list_-all_-l_4.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-list_-all_-l_4.txt rename to storops_test/vnx/testdata/block_output/lun_-list_-all_-l_4.txt diff --git a/test/vnx/testdata/block_output/lun_-list_-all_-l_5.txt b/storops_test/vnx/testdata/block_output/lun_-list_-all_-l_5.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-list_-all_-l_5.txt rename to storops_test/vnx/testdata/block_output/lun_-list_-all_-l_5.txt diff --git a/test/vnx/testdata/block_output/lun_-list_-all_-l_6.txt b/storops_test/vnx/testdata/block_output/lun_-list_-all_-l_6.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-list_-all_-l_6.txt rename to storops_test/vnx/testdata/block_output/lun_-list_-all_-l_6.txt diff --git a/test/vnx/testdata/block_output/lun_-list_-all_-l_7.txt b/storops_test/vnx/testdata/block_output/lun_-list_-all_-l_7.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-list_-all_-l_7.txt rename to storops_test/vnx/testdata/block_output/lun_-list_-all_-l_7.txt diff --git a/test/vnx/testdata/block_output/lun_-list_-all_-name_l1.txt b/storops_test/vnx/testdata/block_output/lun_-list_-all_-name_l1.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-list_-all_-name_l1.txt rename to storops_test/vnx/testdata/block_output/lun_-list_-all_-name_l1.txt diff --git a/test/vnx/testdata/block_output/lun_-list_-all_-name_lun0.txt b/storops_test/vnx/testdata/block_output/lun_-list_-all_-name_lun0.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-list_-all_-name_lun0.txt rename to storops_test/vnx/testdata/block_output/lun_-list_-all_-name_lun0.txt diff --git a/test/vnx/testdata/block_output/lun_-list_-all_-name_lun1.txt b/storops_test/vnx/testdata/block_output/lun_-list_-all_-name_lun1.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-list_-all_-name_lun1.txt rename to storops_test/vnx/testdata/block_output/lun_-list_-all_-name_lun1.txt diff --git a/test/vnx/testdata/block_output/lun_-list_-all_-name_lun2.txt b/storops_test/vnx/testdata/block_output/lun_-list_-all_-name_lun2.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-list_-all_-name_lun2.txt rename to storops_test/vnx/testdata/block_output/lun_-list_-all_-name_lun2.txt diff --git a/test/vnx/testdata/block_output/lun_-list_-all_-name_m1.txt b/storops_test/vnx/testdata/block_output/lun_-list_-all_-name_m1.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-list_-all_-name_m1.txt rename to storops_test/vnx/testdata/block_output/lun_-list_-all_-name_m1.txt diff --git a/test/vnx/testdata/block_output/lun_-list_-all_-name_m2.txt b/storops_test/vnx/testdata/block_output/lun_-list_-all_-name_m2.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-list_-all_-name_m2.txt rename to storops_test/vnx/testdata/block_output/lun_-list_-all_-name_m2.txt diff --git a/test/vnx/testdata/block_output/lun_-list_-all_-name_x.txt b/storops_test/vnx/testdata/block_output/lun_-list_-all_-name_x.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-list_-all_-name_x.txt rename to storops_test/vnx/testdata/block_output/lun_-list_-all_-name_x.txt diff --git a/test/vnx/testdata/block_output/lun_-list_-all_-name_y.txt b/storops_test/vnx/testdata/block_output/lun_-list_-all_-name_y.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-list_-all_-name_y.txt rename to storops_test/vnx/testdata/block_output/lun_-list_-all_-name_y.txt diff --git a/test/vnx/testdata/block_output/lun_-list_-all_-showOnly_Snap.txt b/storops_test/vnx/testdata/block_output/lun_-list_-all_-showOnly_Snap.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-list_-all_-showOnly_Snap.txt rename to storops_test/vnx/testdata/block_output/lun_-list_-all_-showOnly_Snap.txt diff --git a/test/vnx/testdata/block_output/lun_-list_-all_t0.txt b/storops_test/vnx/testdata/block_output/lun_-list_-all_t0.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-list_-all_t0.txt rename to storops_test/vnx/testdata/block_output/lun_-list_-all_t0.txt diff --git a/test/vnx/testdata/block_output/lun_-list_-all_t1.txt b/storops_test/vnx/testdata/block_output/lun_-list_-all_t1.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-list_-all_t1.txt rename to storops_test/vnx/testdata/block_output/lun_-list_-all_t1.txt diff --git a/test/vnx/testdata/block_output/lun_-modify_-l_382_-newName_l1_-o.txt b/storops_test/vnx/testdata/block_output/lun_-modify_-l_382_-newName_l1_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-modify_-l_382_-newName_l1_-o.txt rename to storops_test/vnx/testdata/block_output/lun_-modify_-l_382_-newName_l1_-o.txt diff --git a/test/vnx/testdata/block_output/lun_-modify_-l_4000_-initialTier_lowestAvailable_-tieringPolicy_lowestAvailable_-o.txt b/storops_test/vnx/testdata/block_output/lun_-modify_-l_4000_-initialTier_lowestAvailable_-tieringPolicy_lowestAvailable_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-modify_-l_4000_-initialTier_lowestAvailable_-tieringPolicy_lowestAvailable_-o.txt rename to storops_test/vnx/testdata/block_output/lun_-modify_-l_4000_-initialTier_lowestAvailable_-tieringPolicy_lowestAvailable_-o.txt diff --git a/test/vnx/testdata/block_output/lun_-modify_-l_4000_-newName_l1_-o.txt b/storops_test/vnx/testdata/block_output/lun_-modify_-l_4000_-newName_l1_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-modify_-l_4000_-newName_l1_-o.txt rename to storops_test/vnx/testdata/block_output/lun_-modify_-l_4000_-newName_l1_-o.txt diff --git a/test/vnx/testdata/block_output/lun_-modify_-name_l1_-deduplication_off_-o.txt b/storops_test/vnx/testdata/block_output/lun_-modify_-name_l1_-deduplication_off_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-modify_-name_l1_-deduplication_off_-o.txt rename to storops_test/vnx/testdata/block_output/lun_-modify_-name_l1_-deduplication_off_-o.txt diff --git a/test/vnx/testdata/block_output/lun_-modify_-name_l1_-deduplication_on_-o.txt b/storops_test/vnx/testdata/block_output/lun_-modify_-name_l1_-deduplication_on_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-modify_-name_l1_-deduplication_on_-o.txt rename to storops_test/vnx/testdata/block_output/lun_-modify_-name_l1_-deduplication_on_-o.txt diff --git a/test/vnx/testdata/block_output/lun_-modify_-name_l1_-newName_l3_-o.txt b/storops_test/vnx/testdata/block_output/lun_-modify_-name_l1_-newName_l3_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-modify_-name_l1_-newName_l3_-o.txt rename to storops_test/vnx/testdata/block_output/lun_-modify_-name_l1_-newName_l3_-o.txt diff --git a/test/vnx/testdata/block_output/lun_-modify_-name_l2_-deduplication_on_-o.txt b/storops_test/vnx/testdata/block_output/lun_-modify_-name_l2_-deduplication_on_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-modify_-name_l2_-deduplication_on_-o.txt rename to storops_test/vnx/testdata/block_output/lun_-modify_-name_l2_-deduplication_on_-o.txt diff --git a/test/vnx/testdata/block_output/lun_-modify_-name_l3_-deduplication_on_-o.txt b/storops_test/vnx/testdata/block_output/lun_-modify_-name_l3_-deduplication_on_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-modify_-name_l3_-deduplication_on_-o.txt rename to storops_test/vnx/testdata/block_output/lun_-modify_-name_l3_-deduplication_on_-o.txt diff --git a/test/vnx/testdata/block_output/lun_-modify_-name_m1_-newName_l1_-o.txt b/storops_test/vnx/testdata/block_output/lun_-modify_-name_m1_-newName_l1_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/lun_-modify_-name_m1_-newName_l1_-o.txt rename to storops_test/vnx/testdata/block_output/lun_-modify_-name_m1_-newName_l1_-o.txt diff --git a/test/vnx/testdata/block_output/migrate_-cancel_-source_0_-o.txt b/storops_test/vnx/testdata/block_output/migrate_-cancel_-source_0_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/migrate_-cancel_-source_0_-o.txt rename to storops_test/vnx/testdata/block_output/migrate_-cancel_-source_0_-o.txt diff --git a/test/vnx/testdata/block_output/migrate_-cancel_-source_1_-o.txt b/storops_test/vnx/testdata/block_output/migrate_-cancel_-source_1_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/migrate_-cancel_-source_1_-o.txt rename to storops_test/vnx/testdata/block_output/migrate_-cancel_-source_1_-o.txt diff --git a/test/vnx/testdata/block_output/migrate_-list.txt b/storops_test/vnx/testdata/block_output/migrate_-list.txt similarity index 100% rename from test/vnx/testdata/block_output/migrate_-list.txt rename to storops_test/vnx/testdata/block_output/migrate_-list.txt diff --git a/test/vnx/testdata/block_output/migrate_-list_-source_0.txt b/storops_test/vnx/testdata/block_output/migrate_-list_-source_0.txt similarity index 100% rename from test/vnx/testdata/block_output/migrate_-list_-source_0.txt rename to storops_test/vnx/testdata/block_output/migrate_-list_-source_0.txt diff --git a/test/vnx/testdata/block_output/migrate_-list_-source_10.txt b/storops_test/vnx/testdata/block_output/migrate_-list_-source_10.txt similarity index 100% rename from test/vnx/testdata/block_output/migrate_-list_-source_10.txt rename to storops_test/vnx/testdata/block_output/migrate_-list_-source_10.txt diff --git a/test/vnx/testdata/block_output/migrate_-list_-source_1234.txt b/storops_test/vnx/testdata/block_output/migrate_-list_-source_1234.txt similarity index 100% rename from test/vnx/testdata/block_output/migrate_-list_-source_1234.txt rename to storops_test/vnx/testdata/block_output/migrate_-list_-source_1234.txt diff --git a/test/vnx/testdata/block_output/migrate_-list_-source_3.txt b/storops_test/vnx/testdata/block_output/migrate_-list_-source_3.txt similarity index 100% rename from test/vnx/testdata/block_output/migrate_-list_-source_3.txt rename to storops_test/vnx/testdata/block_output/migrate_-list_-source_3.txt diff --git a/test/vnx/testdata/block_output/migrate_-list_-source_5.txt b/storops_test/vnx/testdata/block_output/migrate_-list_-source_5.txt similarity index 100% rename from test/vnx/testdata/block_output/migrate_-list_-source_5.txt rename to storops_test/vnx/testdata/block_output/migrate_-list_-source_5.txt diff --git a/test/vnx/testdata/block_output/migrate_-list_none.txt b/storops_test/vnx/testdata/block_output/migrate_-list_none.txt similarity index 100% rename from test/vnx/testdata/block_output/migrate_-list_none.txt rename to storops_test/vnx/testdata/block_output/migrate_-list_none.txt diff --git a/test/vnx/testdata/block_output/migrate_-start_-source_1_-dest_2_-rate_high_-o.txt b/storops_test/vnx/testdata/block_output/migrate_-start_-source_1_-dest_2_-rate_high_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/migrate_-start_-source_1_-dest_2_-rate_high_-o.txt rename to storops_test/vnx/testdata/block_output/migrate_-start_-source_1_-dest_2_-rate_high_-o.txt diff --git a/test/vnx/testdata/block_output/migrate_-start_-source_3_-dest_0_-rate_high_-o.txt b/storops_test/vnx/testdata/block_output/migrate_-start_-source_3_-dest_0_-rate_high_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/migrate_-start_-source_3_-dest_0_-rate_high_-o.txt rename to storops_test/vnx/testdata/block_output/migrate_-start_-source_3_-dest_0_-rate_high_-o.txt diff --git a/test/vnx/testdata/block_output/migrate_-start_-source_5_-dest_3_-rate_high_-o.txt b/storops_test/vnx/testdata/block_output/migrate_-start_-source_5_-dest_3_-rate_high_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/migrate_-start_-source_5_-dest_3_-rate_high_-o.txt rename to storops_test/vnx/testdata/block_output/migrate_-start_-source_5_-dest_3_-rate_high_-o.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-addimage_-name_mv0_-arrayhost_192.168.1.94_-lun_71_-recoverypolicy_auto_-syncrate_high.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-addimage_-name_mv0_-arrayhost_192.168.1.94_-lun_71_-recoverypolicy_auto_-syncrate_high.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-addimage_-name_mv0_-arrayhost_192.168.1.94_-lun_71_-recoverypolicy_auto_-syncrate_high.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-addimage_-name_mv0_-arrayhost_192.168.1.94_-lun_71_-recoverypolicy_auto_-syncrate_high.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-addimage_-name_mv0_-arrayhost_192.168.1.94_-lun_72_-recoverypolicy_auto_-syncrate_high.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-addimage_-name_mv0_-arrayhost_192.168.1.94_-lun_72_-recoverypolicy_auto_-syncrate_high.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-addimage_-name_mv0_-arrayhost_192.168.1.94_-lun_72_-recoverypolicy_auto_-syncrate_high.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-addimage_-name_mv0_-arrayhost_192.168.1.94_-lun_72_-recoverypolicy_auto_-syncrate_high.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-create_-name_mv0_-lun_244_-usewriteintentlog_-o.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-create_-name_mv0_-lun_244_-usewriteintentlog_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-create_-name_mv0_-lun_244_-usewriteintentlog_-o.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-create_-name_mv0_-lun_244_-usewriteintentlog_-o.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-create_-name_mv0_-lun_245_-usewriteintentlog_-o.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-create_-name_mv0_-lun_245_-usewriteintentlog_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-create_-name_mv0_-lun_245_-usewriteintentlog_-o.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-create_-name_mv0_-lun_245_-usewriteintentlog_-o.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-create_-name_mv0_-lun_246_-usewriteintentlog_-o.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-create_-name_mv0_-lun_246_-usewriteintentlog_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-create_-name_mv0_-lun_246_-usewriteintentlog_-o.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-create_-name_mv0_-lun_246_-usewriteintentlog_-o.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-destroy_-name_mv0_-o.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-destroy_-name_mv0_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-destroy_-name_mv0_-o.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-destroy_-name_mv0_-o.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-destroy_-name_mv7_-o.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-destroy_-name_mv7_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-destroy_-name_mv7_-o.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-destroy_-name_mv7_-o.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-destroy_-name_mv8_-o.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-destroy_-name_mv8_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-destroy_-name_mv8_-o.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-destroy_-name_mv8_-o.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-destroy_-name_mv9_-o.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-destroy_-name_mv9_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-destroy_-name_mv9_-o.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-destroy_-name_mv9_-o.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-fractureimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FE_-o.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-fractureimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FE_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-fractureimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FE_-o.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-fractureimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FE_-o.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-fractureimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FF_-o.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-fractureimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FF_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-fractureimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FF_-o.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-fractureimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FF_-o.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-fractureimage_-name_mv0_-imageuid_50_06_01_60_B6_E0_1C_F4_-o.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-fractureimage_-name_mv0_-imageuid_50_06_01_60_B6_E0_1C_F4_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-fractureimage_-name_mv0_-imageuid_50_06_01_60_B6_E0_1C_F4_-o.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-fractureimage_-name_mv0_-imageuid_50_06_01_60_B6_E0_1C_F4_-o.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-list.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-list.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-list.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-list.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-list_-name_mv0.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-list_-name_mv0.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-list_-name_mv0.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-list_-name_mv0.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-list_-name_mv1.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-list_-name_mv1.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-list_-name_mv1.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-list_-name_mv1.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-list_-name_mv2.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-list_-name_mv2.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-list_-name_mv2.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-list_-name_mv2.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-list_-name_mv_sync_2.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-list_-name_mv_sync_2.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-list_-name_mv_sync_2.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-list_-name_mv_sync_2.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-promoteimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_F0_-o.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-promoteimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_F0_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-promoteimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_F0_-o.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-promoteimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_F0_-o.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-promoteimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FE_-o.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-promoteimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FE_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-promoteimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FE_-o.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-promoteimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FE_-o.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-promoteimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FF_-o.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-promoteimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FF_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-promoteimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FF_-o.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-promoteimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FF_-o.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-removeimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FE_-o.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-removeimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FE_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-removeimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FE_-o.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-removeimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FE_-o.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-removeimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FF_-o.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-removeimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FF_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-removeimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FF_-o.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-removeimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FF_-o.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-removeimage_-name_mv2_-imageuid_50_06_01_60_88_60_05_FE_-o.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-removeimage_-name_mv2_-imageuid_50_06_01_60_88_60_05_FE_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-removeimage_-name_mv2_-imageuid_50_06_01_60_88_60_05_FE_-o.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-removeimage_-name_mv2_-imageuid_50_06_01_60_88_60_05_FE_-o.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-syncimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FE_-o.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-syncimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FE_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-syncimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FE_-o.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-syncimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FE_-o.txt diff --git a/test/vnx/testdata/block_output/mirror_-sync_-syncimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FF_-o.txt b/storops_test/vnx/testdata/block_output/mirror_-sync_-syncimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FF_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_-sync_-syncimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FF_-o.txt rename to storops_test/vnx/testdata/block_output/mirror_-sync_-syncimage_-name_mv0_-imageuid_50_06_01_60_88_60_05_FF_-o.txt diff --git a/test/vnx/testdata/block_output/mirror_not_installed.txt b/storops_test/vnx/testdata/block_output/mirror_not_installed.txt similarity index 100% rename from test/vnx/testdata/block_output/mirror_not_installed.txt rename to storops_test/vnx/testdata/block_output/mirror_not_installed.txt diff --git a/test/vnx/testdata/block_output/ndu_-list.txt b/storops_test/vnx/testdata/block_output/ndu_-list.txt similarity index 100% rename from test/vnx/testdata/block_output/ndu_-list.txt rename to storops_test/vnx/testdata/block_output/ndu_-list.txt diff --git a/test/vnx/testdata/block_output/ndu_-list_-name_-VNXSnapshots.txt b/storops_test/vnx/testdata/block_output/ndu_-list_-name_-VNXSnapshots.txt similarity index 100% rename from test/vnx/testdata/block_output/ndu_-list_-name_-VNXSnapshots.txt rename to storops_test/vnx/testdata/block_output/ndu_-list_-name_-VNXSnapshots.txt diff --git a/test/vnx/testdata/block_output/network_error.txt b/storops_test/vnx/testdata/block_output/network_error.txt similarity index 100% rename from test/vnx/testdata/block_output/network_error.txt rename to storops_test/vnx/testdata/block_output/network_error.txt diff --git a/test/vnx/testdata/block_output/port_-list_-sp_-all.txt b/storops_test/vnx/testdata/block_output/port_-list_-sp_-all.txt similarity index 100% rename from test/vnx/testdata/block_output/port_-list_-sp_-all.txt rename to storops_test/vnx/testdata/block_output/port_-list_-sp_-all.txt diff --git a/test/vnx/testdata/block_output/port_-list_-sp_-all_t1.txt b/storops_test/vnx/testdata/block_output/port_-list_-sp_-all_t1.txt similarity index 100% rename from test/vnx/testdata/block_output/port_-list_-sp_-all_t1.txt rename to storops_test/vnx/testdata/block_output/port_-list_-sp_-all_t1.txt diff --git a/test/vnx/testdata/block_output/port_-removeHBA_-hbauid_00_00_00_00_00_00_00_00_00_00_00_00_00_00_00_00_-o.txt b/storops_test/vnx/testdata/block_output/port_-removeHBA_-hbauid_00_00_00_00_00_00_00_00_00_00_00_00_00_00_00_00_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/port_-removeHBA_-hbauid_00_00_00_00_00_00_00_00_00_00_00_00_00_00_00_00_-o.txt rename to storops_test/vnx/testdata/block_output/port_-removeHBA_-hbauid_00_00_00_00_00_00_00_00_00_00_00_00_00_00_00_00_-o.txt diff --git a/test/vnx/testdata/block_output/port_-removeHBA_-hbauid_00_00_00_00_00_00_00_00_00_00_00_00_00_00_00_01_-o.txt b/storops_test/vnx/testdata/block_output/port_-removeHBA_-hbauid_00_00_00_00_00_00_00_00_00_00_00_00_00_00_00_01_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/port_-removeHBA_-hbauid_00_00_00_00_00_00_00_00_00_00_00_00_00_00_00_01_-o.txt rename to storops_test/vnx/testdata/block_output/port_-removeHBA_-hbauid_00_00_00_00_00_00_00_00_00_00_00_00_00_00_00_01_-o.txt diff --git a/test/vnx/testdata/block_output/removerg_11.txt b/storops_test/vnx/testdata/block_output/removerg_11.txt similarity index 100% rename from test/vnx/testdata/block_output/removerg_11.txt rename to storops_test/vnx/testdata/block_output/removerg_11.txt diff --git a/test/vnx/testdata/block_output/security_-adduser_-user_b_-password_b_-scope_global_-role_administrator_-o.txt b/storops_test/vnx/testdata/block_output/security_-adduser_-user_b_-password_b_-scope_global_-role_administrator_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/security_-adduser_-user_b_-password_b_-scope_global_-role_administrator_-o.txt rename to storops_test/vnx/testdata/block_output/security_-adduser_-user_b_-password_b_-scope_global_-role_administrator_-o.txt diff --git a/test/vnx/testdata/block_output/security_-adduser_-user_b_-password_b_-scope_global_-role_operator_-o.txt b/storops_test/vnx/testdata/block_output/security_-adduser_-user_b_-password_b_-scope_global_-role_operator_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/security_-adduser_-user_b_-password_b_-scope_global_-role_operator_-o.txt rename to storops_test/vnx/testdata/block_output/security_-adduser_-user_b_-password_b_-scope_global_-role_operator_-o.txt diff --git a/test/vnx/testdata/block_output/security_-certificate_-getLevel.txt b/storops_test/vnx/testdata/block_output/security_-certificate_-getLevel.txt similarity index 100% rename from test/vnx/testdata/block_output/security_-certificate_-getLevel.txt rename to storops_test/vnx/testdata/block_output/security_-certificate_-getLevel.txt diff --git a/test/vnx/testdata/block_output/security_-certificate_-setLevel_low.txt b/storops_test/vnx/testdata/block_output/security_-certificate_-setLevel_low.txt similarity index 100% rename from test/vnx/testdata/block_output/security_-certificate_-setLevel_low.txt rename to storops_test/vnx/testdata/block_output/security_-certificate_-setLevel_low.txt diff --git a/test/vnx/testdata/block_output/security_-list_-type.txt b/storops_test/vnx/testdata/block_output/security_-list_-type.txt similarity index 100% rename from test/vnx/testdata/block_output/security_-list_-type.txt rename to storops_test/vnx/testdata/block_output/security_-list_-type.txt diff --git a/test/vnx/testdata/block_output/security_-list_-user_a_-type.txt b/storops_test/vnx/testdata/block_output/security_-list_-user_a_-type.txt similarity index 100% rename from test/vnx/testdata/block_output/security_-list_-user_a_-type.txt rename to storops_test/vnx/testdata/block_output/security_-list_-user_a_-type.txt diff --git a/test/vnx/testdata/block_output/security_-list_-user_b_-type.txt b/storops_test/vnx/testdata/block_output/security_-list_-user_b_-type.txt similarity index 100% rename from test/vnx/testdata/block_output/security_-list_-user_b_-type.txt rename to storops_test/vnx/testdata/block_output/security_-list_-user_b_-type.txt diff --git a/test/vnx/testdata/block_output/security_-list_-user_c_-type.txt b/storops_test/vnx/testdata/block_output/security_-list_-user_c_-type.txt similarity index 100% rename from test/vnx/testdata/block_output/security_-list_-user_c_-type.txt rename to storops_test/vnx/testdata/block_output/security_-list_-user_c_-type.txt diff --git a/test/vnx/testdata/block_output/security_-rmuser_-user_b_-scope_global_-o.txt b/storops_test/vnx/testdata/block_output/security_-rmuser_-user_b_-scope_global_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/security_-rmuser_-user_b_-scope_global_-o.txt rename to storops_test/vnx/testdata/block_output/security_-rmuser_-user_b_-scope_global_-o.txt diff --git a/test/vnx/testdata/block_output/security_-rmuser_-user_c_-scope_global_-o.txt b/storops_test/vnx/testdata/block_output/security_-rmuser_-user_c_-scope_global_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/security_-rmuser_-user_c_-scope_global_-o.txt rename to storops_test/vnx/testdata/block_output/security_-rmuser_-user_c_-scope_global_-o.txt diff --git a/test/vnx/testdata/block_output/security_low.txt b/storops_test/vnx/testdata/block_output/security_low.txt similarity index 100% rename from test/vnx/testdata/block_output/security_low.txt rename to storops_test/vnx/testdata/block_output/security_low.txt diff --git a/test/vnx/testdata/block_output/setstats.txt b/storops_test/vnx/testdata/block_output/setstats.txt similarity index 100% rename from test/vnx/testdata/block_output/setstats.txt rename to storops_test/vnx/testdata/block_output/setstats.txt diff --git a/test/vnx/testdata/block_output/setstats_-off.txt b/storops_test/vnx/testdata/block_output/setstats_-off.txt similarity index 100% rename from test/vnx/testdata/block_output/setstats_-off.txt rename to storops_test/vnx/testdata/block_output/setstats_-off.txt diff --git a/test/vnx/testdata/block_output/setstats_-on.txt b/storops_test/vnx/testdata/block_output/setstats_-on.txt similarity index 100% rename from test/vnx/testdata/block_output/setstats_-on.txt rename to storops_test/vnx/testdata/block_output/setstats_-on.txt diff --git a/test/vnx/testdata/block_output/setstats_enabled.txt b/storops_test/vnx/testdata/block_output/setstats_enabled.txt similarity index 100% rename from test/vnx/testdata/block_output/setstats_enabled.txt rename to storops_test/vnx/testdata/block_output/setstats_enabled.txt diff --git a/test/vnx/testdata/block_output/snap_-copy_-id_123_-name_456.txt b/storops_test/vnx/testdata/block_output/snap_-copy_-id_123_-name_456.txt similarity index 100% rename from test/vnx/testdata/block_output/snap_-copy_-id_123_-name_456.txt rename to storops_test/vnx/testdata/block_output/snap_-copy_-id_123_-name_456.txt diff --git a/test/vnx/testdata/block_output/snap_-create_-res_11_-name_s1.txt b/storops_test/vnx/testdata/block_output/snap_-create_-res_11_-name_s1.txt similarity index 100% rename from test/vnx/testdata/block_output/snap_-create_-res_11_-name_s1.txt rename to storops_test/vnx/testdata/block_output/snap_-create_-res_11_-name_s1.txt diff --git a/test/vnx/testdata/block_output/snap_-create_-res_3_-name_s1.txt b/storops_test/vnx/testdata/block_output/snap_-create_-res_3_-name_s1.txt similarity index 100% rename from test/vnx/testdata/block_output/snap_-create_-res_3_-name_s1.txt rename to storops_test/vnx/testdata/block_output/snap_-create_-res_3_-name_s1.txt diff --git a/test/vnx/testdata/block_output/snap_-create_-res_cg1_-resType_CG_-name_cg1_snap.txt b/storops_test/vnx/testdata/block_output/snap_-create_-res_cg1_-resType_CG_-name_cg1_snap.txt similarity index 100% rename from test/vnx/testdata/block_output/snap_-create_-res_cg1_-resType_CG_-name_cg1_snap.txt rename to storops_test/vnx/testdata/block_output/snap_-create_-res_cg1_-resType_CG_-name_cg1_snap.txt diff --git a/test/vnx/testdata/block_output/snap_-create_-res_cg2_-resType_CG_-name_cg1_snap.txt b/storops_test/vnx/testdata/block_output/snap_-create_-res_cg2_-resType_CG_-name_cg1_snap.txt similarity index 100% rename from test/vnx/testdata/block_output/snap_-create_-res_cg2_-resType_CG_-name_cg1_snap.txt rename to storops_test/vnx/testdata/block_output/snap_-create_-res_cg2_-resType_CG_-name_cg1_snap.txt diff --git a/test/vnx/testdata/block_output/snap_-destroy_-id_s3_-o.txt b/storops_test/vnx/testdata/block_output/snap_-destroy_-id_s3_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/snap_-destroy_-id_s3_-o.txt rename to storops_test/vnx/testdata/block_output/snap_-destroy_-id_s3_-o.txt diff --git a/test/vnx/testdata/block_output/snap_-destroy_-id_s4_-o.txt b/storops_test/vnx/testdata/block_output/snap_-destroy_-id_s4_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/snap_-destroy_-id_s4_-o.txt rename to storops_test/vnx/testdata/block_output/snap_-destroy_-id_s4_-o.txt diff --git a/test/vnx/testdata/block_output/snap_-group_-addmember_-id_cg1_-res_1.txt b/storops_test/vnx/testdata/block_output/snap_-group_-addmember_-id_cg1_-res_1.txt similarity index 100% rename from test/vnx/testdata/block_output/snap_-group_-addmember_-id_cg1_-res_1.txt rename to storops_test/vnx/testdata/block_output/snap_-group_-addmember_-id_cg1_-res_1.txt diff --git a/test/vnx/testdata/block_output/snap_-group_-addmember_-id_test_cg_-res_4057,4056.txt b/storops_test/vnx/testdata/block_output/snap_-group_-addmember_-id_test_cg_-res_4057,4056.txt similarity index 100% rename from test/vnx/testdata/block_output/snap_-group_-addmember_-id_test_cg_-res_4057,4056.txt rename to storops_test/vnx/testdata/block_output/snap_-group_-addmember_-id_test_cg_-res_4057,4056.txt diff --git a/test/vnx/testdata/block_output/snap_-group_-create_-name_cg0.txt b/storops_test/vnx/testdata/block_output/snap_-group_-create_-name_cg0.txt similarity index 100% rename from test/vnx/testdata/block_output/snap_-group_-create_-name_cg0.txt rename to storops_test/vnx/testdata/block_output/snap_-group_-create_-name_cg0.txt diff --git a/test/vnx/testdata/block_output/snap_-group_-destroy_-id_cg0.txt b/storops_test/vnx/testdata/block_output/snap_-group_-destroy_-id_cg0.txt similarity index 100% rename from test/vnx/testdata/block_output/snap_-group_-destroy_-id_cg0.txt rename to storops_test/vnx/testdata/block_output/snap_-group_-destroy_-id_cg0.txt diff --git a/test/vnx/testdata/block_output/snap_-group_-list_-detail.txt b/storops_test/vnx/testdata/block_output/snap_-group_-list_-detail.txt similarity index 100% rename from test/vnx/testdata/block_output/snap_-group_-list_-detail.txt rename to storops_test/vnx/testdata/block_output/snap_-group_-list_-detail.txt diff --git a/test/vnx/testdata/block_output/snap_-group_-list_-id_cg0_-detail.txt b/storops_test/vnx/testdata/block_output/snap_-group_-list_-id_cg0_-detail.txt similarity index 100% rename from test/vnx/testdata/block_output/snap_-group_-list_-id_cg0_-detail.txt rename to storops_test/vnx/testdata/block_output/snap_-group_-list_-id_cg0_-detail.txt diff --git a/test/vnx/testdata/block_output/snap_-group_-list_-id_test_cg_-detail.txt b/storops_test/vnx/testdata/block_output/snap_-group_-list_-id_test_cg_-detail.txt similarity index 100% rename from test/vnx/testdata/block_output/snap_-group_-list_-id_test_cg_-detail.txt rename to storops_test/vnx/testdata/block_output/snap_-group_-list_-id_test_cg_-detail.txt diff --git a/test/vnx/testdata/block_output/snap_-list_-detail.txt b/storops_test/vnx/testdata/block_output/snap_-list_-detail.txt similarity index 100% rename from test/vnx/testdata/block_output/snap_-list_-detail.txt rename to storops_test/vnx/testdata/block_output/snap_-list_-detail.txt diff --git a/test/vnx/testdata/block_output/snap_-list_-detail_error.txt b/storops_test/vnx/testdata/block_output/snap_-list_-detail_error.txt similarity index 100% rename from test/vnx/testdata/block_output/snap_-list_-detail_error.txt rename to storops_test/vnx/testdata/block_output/snap_-list_-detail_error.txt diff --git a/test/vnx/testdata/block_output/snap_-list_-id_cg1_snap_-detail.txt b/storops_test/vnx/testdata/block_output/snap_-list_-id_cg1_snap_-detail.txt similarity index 100% rename from test/vnx/testdata/block_output/snap_-list_-id_cg1_snap_-detail.txt rename to storops_test/vnx/testdata/block_output/snap_-list_-id_cg1_snap_-detail.txt diff --git a/test/vnx/testdata/block_output/snap_-list_-id_gan_snap_-detail.txt b/storops_test/vnx/testdata/block_output/snap_-list_-id_gan_snap_-detail.txt similarity index 100% rename from test/vnx/testdata/block_output/snap_-list_-id_gan_snap_-detail.txt rename to storops_test/vnx/testdata/block_output/snap_-list_-id_gan_snap_-detail.txt diff --git a/test/vnx/testdata/block_output/snap_-list_-id_s1_-detail.txt b/storops_test/vnx/testdata/block_output/snap_-list_-id_s1_-detail.txt similarity index 100% rename from test/vnx/testdata/block_output/snap_-list_-id_s1_-detail.txt rename to storops_test/vnx/testdata/block_output/snap_-list_-id_s1_-detail.txt diff --git a/test/vnx/testdata/block_output/snap_-list_-id_s2_-detail.txt b/storops_test/vnx/testdata/block_output/snap_-list_-id_s2_-detail.txt similarity index 100% rename from test/vnx/testdata/block_output/snap_-list_-id_s2_-detail.txt rename to storops_test/vnx/testdata/block_output/snap_-list_-id_s2_-detail.txt diff --git a/test/vnx/testdata/block_output/snap_-list_-res_3_-detail.txt b/storops_test/vnx/testdata/block_output/snap_-list_-res_3_-detail.txt similarity index 100% rename from test/vnx/testdata/block_output/snap_-list_-res_3_-detail.txt rename to storops_test/vnx/testdata/block_output/snap_-list_-res_3_-detail.txt diff --git a/test/vnx/testdata/block_output/snap_-modify_-id_s1_-name_s2_-allowReadWrite_yes.txt b/storops_test/vnx/testdata/block_output/snap_-modify_-id_s1_-name_s2_-allowReadWrite_yes.txt similarity index 100% rename from test/vnx/testdata/block_output/snap_-modify_-id_s1_-name_s2_-allowReadWrite_yes.txt rename to storops_test/vnx/testdata/block_output/snap_-modify_-id_s1_-name_s2_-allowReadWrite_yes.txt diff --git a/test/vnx/testdata/block_output/snap_-modify_-id_s2_-name_s1.txt b/storops_test/vnx/testdata/block_output/snap_-modify_-id_s2_-name_s1.txt similarity index 100% rename from test/vnx/testdata/block_output/snap_-modify_-id_s2_-name_s1.txt rename to storops_test/vnx/testdata/block_output/snap_-modify_-id_s2_-name_s1.txt diff --git a/test/vnx/testdata/block_output/storagegroup_-addhlu_-hlu_1_-alu_0_-gname_server7_-o.txt b/storops_test/vnx/testdata/block_output/storagegroup_-addhlu_-hlu_1_-alu_0_-gname_server7_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/storagegroup_-addhlu_-hlu_1_-alu_0_-gname_server7_-o.txt rename to storops_test/vnx/testdata/block_output/storagegroup_-addhlu_-hlu_1_-alu_0_-gname_server7_-o.txt diff --git a/test/vnx/testdata/block_output/storagegroup_-addhlu_-hlu_1_-alu_123_-gname_server7_-o.txt b/storops_test/vnx/testdata/block_output/storagegroup_-addhlu_-hlu_1_-alu_123_-gname_server7_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/storagegroup_-addhlu_-hlu_1_-alu_123_-gname_server7_-o.txt rename to storops_test/vnx/testdata/block_output/storagegroup_-addhlu_-hlu_1_-alu_123_-gname_server7_-o.txt diff --git a/test/vnx/testdata/block_output/storagegroup_-addhlu_-hlu_1_-alu_124_-gname_server7_-o.txt b/storops_test/vnx/testdata/block_output/storagegroup_-addhlu_-hlu_1_-alu_124_-gname_server7_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/storagegroup_-addhlu_-hlu_1_-alu_124_-gname_server7_-o.txt rename to storops_test/vnx/testdata/block_output/storagegroup_-addhlu_-hlu_1_-alu_124_-gname_server7_-o.txt diff --git a/test/vnx/testdata/block_output/storagegroup_-addhlu_-hlu_1_-alu_13_-gname_server7_-o.txt b/storops_test/vnx/testdata/block_output/storagegroup_-addhlu_-hlu_1_-alu_13_-gname_server7_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/storagegroup_-addhlu_-hlu_1_-alu_13_-gname_server7_-o.txt rename to storops_test/vnx/testdata/block_output/storagegroup_-addhlu_-hlu_1_-alu_13_-gname_server7_-o.txt diff --git a/test/vnx/testdata/block_output/storagegroup_-addhlu_-hlu_1_-alu_2_-gname_server7_-o.txt b/storops_test/vnx/testdata/block_output/storagegroup_-addhlu_-hlu_1_-alu_2_-gname_server7_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/storagegroup_-addhlu_-hlu_1_-alu_2_-gname_server7_-o.txt rename to storops_test/vnx/testdata/block_output/storagegroup_-addhlu_-hlu_1_-alu_2_-gname_server7_-o.txt diff --git a/test/vnx/testdata/block_output/storagegroup_-addhlu_-hlu_212_-alu_123_-gname_server7_-o.txt b/storops_test/vnx/testdata/block_output/storagegroup_-addhlu_-hlu_212_-alu_123_-gname_server7_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/storagegroup_-addhlu_-hlu_212_-alu_123_-gname_server7_-o.txt rename to storops_test/vnx/testdata/block_output/storagegroup_-addhlu_-hlu_212_-alu_123_-gname_server7_-o.txt diff --git a/test/vnx/testdata/block_output/storagegroup_-connecthost_-host_host1_-gname_server7_-o.txt b/storops_test/vnx/testdata/block_output/storagegroup_-connecthost_-host_host1_-gname_server7_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/storagegroup_-connecthost_-host_host1_-gname_server7_-o.txt rename to storops_test/vnx/testdata/block_output/storagegroup_-connecthost_-host_host1_-gname_server7_-o.txt diff --git a/test/vnx/testdata/block_output/storagegroup_-create_-gname_existed.txt b/storops_test/vnx/testdata/block_output/storagegroup_-create_-gname_existed.txt similarity index 100% rename from test/vnx/testdata/block_output/storagegroup_-create_-gname_existed.txt rename to storops_test/vnx/testdata/block_output/storagegroup_-create_-gname_existed.txt diff --git a/test/vnx/testdata/block_output/storagegroup_-disconnecthost_-host_host1_-gname_server7_-o.txt b/storops_test/vnx/testdata/block_output/storagegroup_-disconnecthost_-host_host1_-gname_server7_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/storagegroup_-disconnecthost_-host_host1_-gname_server7_-o.txt rename to storops_test/vnx/testdata/block_output/storagegroup_-disconnecthost_-host_host1_-gname_server7_-o.txt diff --git a/test/vnx/testdata/block_output/storagegroup_-list_-host_-iscsiAttributes.txt b/storops_test/vnx/testdata/block_output/storagegroup_-list_-host_-iscsiAttributes.txt similarity index 100% rename from test/vnx/testdata/block_output/storagegroup_-list_-host_-iscsiAttributes.txt rename to storops_test/vnx/testdata/block_output/storagegroup_-list_-host_-iscsiAttributes.txt diff --git a/test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes.txt b/storops_test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes.txt similarity index 100% rename from test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes.txt rename to storops_test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes.txt diff --git a/test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_a.b.c.txt b/storops_test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_a.b.c.txt similarity index 100% rename from test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_a.b.c.txt rename to storops_test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_a.b.c.txt diff --git a/test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_microsoft.txt b/storops_test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_microsoft.txt similarity index 100% rename from test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_microsoft.txt rename to storops_test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_microsoft.txt diff --git a/test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_os01.txt b/storops_test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_os01.txt similarity index 100% rename from test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_os01.txt rename to storops_test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_os01.txt diff --git a/test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_server7.txt b/storops_test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_server7.txt similarity index 100% rename from test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_server7.txt rename to storops_test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_server7.txt diff --git a/test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_sg1.txt b/storops_test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_sg1.txt similarity index 100% rename from test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_sg1.txt rename to storops_test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_sg1.txt diff --git a/test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_~management.txt b/storops_test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_~management.txt similarity index 100% rename from test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_~management.txt rename to storops_test/vnx/testdata/block_output/storagegroup_-messner_-list_-host_-iscsiAttributes_-gname_~management.txt diff --git a/test/vnx/testdata/block_output/storagegroup_-removehlu_-hlu_153_-gname_server7_-o.txt b/storops_test/vnx/testdata/block_output/storagegroup_-removehlu_-hlu_153_-gname_server7_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/storagegroup_-removehlu_-hlu_153_-gname_server7_-o.txt rename to storops_test/vnx/testdata/block_output/storagegroup_-removehlu_-hlu_153_-gname_server7_-o.txt diff --git a/test/vnx/testdata/block_output/storagegroup_-removehlu_-hlu_210_-gname_server7_-o.txt b/storops_test/vnx/testdata/block_output/storagegroup_-removehlu_-hlu_210_-gname_server7_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/storagegroup_-removehlu_-hlu_210_-gname_server7_-o.txt rename to storops_test/vnx/testdata/block_output/storagegroup_-removehlu_-hlu_210_-gname_server7_-o.txt diff --git a/test/vnx/testdata/block_output/storagegroup_-setpath_-gname_sg0_-hbauid_01_02_03_04_05_06_07_08_09_0A_0B_0C_0D_0E_0F_10_-sp_a_-spport_0_-host_host0_-o.txt b/storops_test/vnx/testdata/block_output/storagegroup_-setpath_-gname_sg0_-hbauid_01_02_03_04_05_06_07_08_09_0A_0B_0C_0D_0E_0F_10_-sp_a_-spport_0_-host_host0_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/storagegroup_-setpath_-gname_sg0_-hbauid_01_02_03_04_05_06_07_08_09_0A_0B_0C_0D_0E_0F_10_-sp_a_-spport_0_-host_host0_-o.txt rename to storops_test/vnx/testdata/block_output/storagegroup_-setpath_-gname_sg0_-hbauid_01_02_03_04_05_06_07_08_09_0A_0B_0C_0D_0E_0F_10_-sp_a_-spport_0_-host_host0_-o.txt diff --git a/test/vnx/testdata/block_output/storagegroup_-setpath_-gname_sg0_-hbauid_11_22_33_-sp_a_-spport_0_-host_host0_-o.txt b/storops_test/vnx/testdata/block_output/storagegroup_-setpath_-gname_sg0_-hbauid_11_22_33_-sp_a_-spport_0_-host_host0_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/storagegroup_-setpath_-gname_sg0_-hbauid_11_22_33_-sp_a_-spport_0_-host_host0_-o.txt rename to storops_test/vnx/testdata/block_output/storagegroup_-setpath_-gname_sg0_-hbauid_11_22_33_-sp_a_-spport_0_-host_host0_-o.txt diff --git a/test/vnx/testdata/block_output/storagegroup_-setpath_-gname_sg0_-hbauid_iqn.1992-04.com.abc_a.b.c_-sp_a_-spport_10_-host_host0_-o.txt b/storops_test/vnx/testdata/block_output/storagegroup_-setpath_-gname_sg0_-hbauid_iqn.1992-04.com.abc_a.b.c_-sp_a_-spport_10_-host_host0_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/storagegroup_-setpath_-gname_sg0_-hbauid_iqn.1992-04.com.abc_a.b.c_-sp_a_-spport_10_-host_host0_-o.txt rename to storops_test/vnx/testdata/block_output/storagegroup_-setpath_-gname_sg0_-hbauid_iqn.1992-04.com.abc_a.b.c_-sp_a_-spport_10_-host_host0_-o.txt diff --git a/test/vnx/testdata/block_output/storagegroup_-setpath_-gname_sg0_-hbauid_iqn.1992-04.com.abc_a.b.c_-sp_a_-spport_8_-host_host0_-o.txt b/storops_test/vnx/testdata/block_output/storagegroup_-setpath_-gname_sg0_-hbauid_iqn.1992-04.com.abc_a.b.c_-sp_a_-spport_8_-host_host0_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/storagegroup_-setpath_-gname_sg0_-hbauid_iqn.1992-04.com.abc_a.b.c_-sp_a_-spport_8_-host_host0_-o.txt rename to storops_test/vnx/testdata/block_output/storagegroup_-setpath_-gname_sg0_-hbauid_iqn.1992-04.com.abc_a.b.c_-sp_a_-spport_8_-host_host0_-o.txt diff --git a/test/vnx/testdata/block_output/storagegroup_-setpath_-gname_sg0_-hbauid_iqn.1992-04.com.abc_a.b.d_-sp_a_-spport_8_-host_host0_-o.txt b/storops_test/vnx/testdata/block_output/storagegroup_-setpath_-gname_sg0_-hbauid_iqn.1992-04.com.abc_a.b.d_-sp_a_-spport_8_-host_host0_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/storagegroup_-setpath_-gname_sg0_-hbauid_iqn.1992-04.com.abc_a.b.d_-sp_a_-spport_8_-host_host0_-o.txt rename to storops_test/vnx/testdata/block_output/storagegroup_-setpath_-gname_sg0_-hbauid_iqn.1992-04.com.abc_a.b.d_-sp_a_-spport_8_-host_host0_-o.txt diff --git a/test/vnx/testdata/block_output/storagepool_-create_-disks_1_0_0_1_0_1_-name_p0_-skiprules.txt b/storops_test/vnx/testdata/block_output/storagepool_-create_-disks_1_0_0_1_0_1_-name_p0_-skiprules.txt similarity index 100% rename from test/vnx/testdata/block_output/storagepool_-create_-disks_1_0_0_1_0_1_-name_p0_-skiprules.txt rename to storops_test/vnx/testdata/block_output/storagepool_-create_-disks_1_0_0_1_0_1_-name_p0_-skiprules.txt diff --git a/test/vnx/testdata/block_output/storagepool_-create_-disks_1_0_0_1_0_1_-rtype_r_0_-name_p0_-skiprules.txt b/storops_test/vnx/testdata/block_output/storagepool_-create_-disks_1_0_0_1_0_1_-rtype_r_0_-name_p0_-skiprules.txt similarity index 100% rename from test/vnx/testdata/block_output/storagepool_-create_-disks_1_0_0_1_0_1_-rtype_r_0_-name_p0_-skiprules.txt rename to storops_test/vnx/testdata/block_output/storagepool_-create_-disks_1_0_0_1_0_1_-rtype_r_0_-name_p0_-skiprules.txt diff --git a/test/vnx/testdata/block_output/storagepool_-create_-disks_1_0_0_1_0_1_-rtype_r_10_-name_p0_-skiprules.txt b/storops_test/vnx/testdata/block_output/storagepool_-create_-disks_1_0_0_1_0_1_-rtype_r_10_-name_p0_-skiprules.txt similarity index 100% rename from test/vnx/testdata/block_output/storagepool_-create_-disks_1_0_0_1_0_1_-rtype_r_10_-name_p0_-skiprules.txt rename to storops_test/vnx/testdata/block_output/storagepool_-create_-disks_1_0_0_1_0_1_-rtype_r_10_-name_p0_-skiprules.txt diff --git a/test/vnx/testdata/block_output/storagepool_-create_-disks_1_0_0_1_0_1_-rtype_r_5_-name_p0_-skiprules.txt b/storops_test/vnx/testdata/block_output/storagepool_-create_-disks_1_0_0_1_0_1_-rtype_r_5_-name_p0_-skiprules.txt similarity index 100% rename from test/vnx/testdata/block_output/storagepool_-create_-disks_1_0_0_1_0_1_-rtype_r_5_-name_p0_-skiprules.txt rename to storops_test/vnx/testdata/block_output/storagepool_-create_-disks_1_0_0_1_0_1_-rtype_r_5_-name_p0_-skiprules.txt diff --git a/test/vnx/testdata/block_output/storagepool_-create_-disks_1_0_0_1_0_1_-rtype_r_6_-name_p0_-skiprules.txt b/storops_test/vnx/testdata/block_output/storagepool_-create_-disks_1_0_0_1_0_1_-rtype_r_6_-name_p0_-skiprules.txt similarity index 100% rename from test/vnx/testdata/block_output/storagepool_-create_-disks_1_0_0_1_0_1_-rtype_r_6_-name_p0_-skiprules.txt rename to storops_test/vnx/testdata/block_output/storagepool_-create_-disks_1_0_0_1_0_1_-rtype_r_6_-name_p0_-skiprules.txt diff --git a/test/vnx/testdata/block_output/storagepool_-create_-disks_1_0_E10_1_0_E11_1_0_E9_-rtype_r_5_-name_Pool4File_-skiprules.txt b/storops_test/vnx/testdata/block_output/storagepool_-create_-disks_1_0_E10_1_0_E11_1_0_E9_-rtype_r_5_-name_Pool4File_-skiprules.txt similarity index 100% rename from test/vnx/testdata/block_output/storagepool_-create_-disks_1_0_E10_1_0_E11_1_0_E9_-rtype_r_5_-name_Pool4File_-skiprules.txt rename to storops_test/vnx/testdata/block_output/storagepool_-create_-disks_1_0_E10_1_0_E11_1_0_E9_-rtype_r_5_-name_Pool4File_-skiprules.txt diff --git a/test/vnx/testdata/block_output/storagepool_-destroy_-id_0_-o.txt b/storops_test/vnx/testdata/block_output/storagepool_-destroy_-id_0_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/storagepool_-destroy_-id_0_-o.txt rename to storops_test/vnx/testdata/block_output/storagepool_-destroy_-id_0_-o.txt diff --git a/test/vnx/testdata/block_output/storagepool_-destroy_-id_1_-o.txt b/storops_test/vnx/testdata/block_output/storagepool_-destroy_-id_1_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/storagepool_-destroy_-id_1_-o.txt rename to storops_test/vnx/testdata/block_output/storagepool_-destroy_-id_1_-o.txt diff --git a/test/vnx/testdata/block_output/storagepool_-feature_-info_-all.txt b/storops_test/vnx/testdata/block_output/storagepool_-feature_-info_-all.txt similarity index 100% rename from test/vnx/testdata/block_output/storagepool_-feature_-info_-all.txt rename to storops_test/vnx/testdata/block_output/storagepool_-feature_-info_-all.txt diff --git a/test/vnx/testdata/block_output/storagepool_-feature_-info_-isVirtualProvis____LUNs_-numDiskDrivesAllPools_-availableDisks.txt b/storops_test/vnx/testdata/block_output/storagepool_-feature_-info_-isVirtualProvis____LUNs_-numDiskDrivesAllPools_-availableDisks.txt similarity index 100% rename from test/vnx/testdata/block_output/storagepool_-feature_-info_-isVirtualProvis____LUNs_-numDiskDrivesAllPools_-availableDisks.txt rename to storops_test/vnx/testdata/block_output/storagepool_-feature_-info_-isVirtualProvis____LUNs_-numDiskDrivesAllPools_-availableDisks.txt diff --git a/test/vnx/testdata/block_output/storagepool_-list_-all.txt b/storops_test/vnx/testdata/block_output/storagepool_-list_-all.txt similarity index 100% rename from test/vnx/testdata/block_output/storagepool_-list_-all.txt rename to storops_test/vnx/testdata/block_output/storagepool_-list_-all.txt diff --git a/test/vnx/testdata/block_output/storagepool_-list_-all_-id_0.txt b/storops_test/vnx/testdata/block_output/storagepool_-list_-all_-id_0.txt similarity index 100% rename from test/vnx/testdata/block_output/storagepool_-list_-all_-id_0.txt rename to storops_test/vnx/testdata/block_output/storagepool_-list_-all_-id_0.txt diff --git a/test/vnx/testdata/block_output/storagepool_-list_-all_-id_1.txt b/storops_test/vnx/testdata/block_output/storagepool_-list_-all_-id_1.txt similarity index 100% rename from test/vnx/testdata/block_output/storagepool_-list_-all_-id_1.txt rename to storops_test/vnx/testdata/block_output/storagepool_-list_-all_-id_1.txt diff --git a/test/vnx/testdata/block_output/storagepool_-list_-all_-name_ESI-POOL.txt b/storops_test/vnx/testdata/block_output/storagepool_-list_-all_-name_ESI-POOL.txt similarity index 100% rename from test/vnx/testdata/block_output/storagepool_-list_-all_-name_ESI-POOL.txt rename to storops_test/vnx/testdata/block_output/storagepool_-list_-all_-name_ESI-POOL.txt diff --git a/test/vnx/testdata/block_output/storagepool_-list_-all_-name_Pool4File.txt b/storops_test/vnx/testdata/block_output/storagepool_-list_-all_-name_Pool4File.txt similarity index 100% rename from test/vnx/testdata/block_output/storagepool_-list_-all_-name_Pool4File.txt rename to storops_test/vnx/testdata/block_output/storagepool_-list_-all_-name_Pool4File.txt diff --git a/test/vnx/testdata/block_output/storagepool_-modify_-name_p1_-newName_p2_-o.txt b/storops_test/vnx/testdata/block_output/storagepool_-modify_-name_p1_-newName_p2_-o.txt similarity index 100% rename from test/vnx/testdata/block_output/storagepool_-modify_-name_p1_-newName_p2_-o.txt rename to storops_test/vnx/testdata/block_output/storagepool_-modify_-name_p1_-newName_p2_-o.txt diff --git a/test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/get_all_fs_snap.xml b/storops_test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/get_all_fs_snap.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/get_all_fs_snap.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/get_all_fs_snap.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/get_snap_aaa.xml b/storops_test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/get_snap_aaa.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/get_snap_aaa.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/get_snap_aaa.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/get_snap_esa.xml b/storops_test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/get_snap_esa.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/get_snap_esa.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/get_snap_esa.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/get_snap_id_111.xml b/storops_test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/get_snap_id_111.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/get_snap_id_111.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/get_snap_id_111.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/get_snap_id_230.xml b/storops_test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/get_snap_id_230.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/get_snap_id_230.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/get_snap_id_230.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/get_snap_test.xml b/storops_test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/get_snap_test.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/get_snap_test.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/get_snap_test.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/index.xml b/storops_test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/index.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/CheckpointQueryParams/index.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_by_mover_1.xml b/storops_test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_by_mover_1.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_by_mover_1.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_by_mover_1.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_by_mover_nothing.xml b/storops_test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_by_mover_nothing.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_by_mover_nothing.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_by_mover_nothing.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_cifs.xml b/storops_test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_cifs.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_cifs.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_cifs.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_cifs_s2.xml b/storops_test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_cifs_s2.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_cifs_s2.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_cifs_s2.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_cifs_s8.xml b/storops_test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_cifs_s8.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_cifs_s8.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_cifs_s8.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_cifs_server_all.xml b/storops_test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_cifs_server_all.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_cifs_server_all.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_cifs_server_all.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_cifs_test.xml b/storops_test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_cifs_test.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_cifs_test.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_cifs_test.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_not_found.xml b/storops_test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_not_found.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_not_found.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/get_not_found.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/index.xml b/storops_test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/index.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/CifsServerQueryParams/index.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/get_all.xml b/storops_test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/get_all.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/get_all.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/get_all.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/get_by_mover_1.xml b/storops_test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/get_by_mover_1.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/get_by_mover_1.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/get_by_mover_1.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/get_by_name_zhuanc_cifs_100g.xml b/storops_test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/get_by_name_zhuanc_cifs_100g.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/get_by_name_zhuanc_cifs_100g.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/get_by_name_zhuanc_cifs_100g.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/get_single_not_exists.xml b/storops_test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/get_single_not_exists.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/get_single_not_exists.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/get_single_not_exists.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/get_single_zhuanc_cifs_100g.xml b/storops_test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/get_single_zhuanc_cifs_100g.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/get_single_zhuanc_cifs_100g.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/get_single_zhuanc_cifs_100g.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/get_single_zzz.xml b/storops_test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/get_single_zzz.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/get_single_zzz.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/get_single_zzz.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/index.xml b/storops_test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/index.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/CifsShareQueryParams/index.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_abc.xml b/storops_test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_abc.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_abc.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_abc.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_all.xml b/storops_test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_all.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_all.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_all.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_by_id_27.xml b/storops_test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_by_id_27.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_by_id_27.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_by_id_27.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_id_222.xml b/storops_test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_id_222.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_id_222.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_id_222.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_id_243.xml b/storops_test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_id_243.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_id_243.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_id_243.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_src0.xml b/storops_test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_src0.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_src0.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_src0.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_zzz.xml b/storops_test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_zzz.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_zzz.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_fs_zzz.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_testfs.xml b/storops_test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_testfs.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_testfs.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/get_testfs.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/index.xml b/storops_test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/index.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/FileSystemQueryParams/index.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/MountQueryParams/get_all.xml b/storops_test/vnx/testdata/nas_xml_output/Query/MountQueryParams/get_all.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/MountQueryParams/get_all.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/MountQueryParams/get_all.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/MountQueryParams/get_by_mover_2.xml b/storops_test/vnx/testdata/nas_xml_output/Query/MountQueryParams/get_by_mover_2.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/MountQueryParams/get_by_mover_2.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/MountQueryParams/get_by_mover_2.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/MountQueryParams/get_not_found.xml b/storops_test/vnx/testdata/nas_xml_output/Query/MountQueryParams/get_not_found.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/MountQueryParams/get_not_found.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/MountQueryParams/get_not_found.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/MountQueryParams/get_path_zhuanc.xml b/storops_test/vnx/testdata/nas_xml_output/Query/MountQueryParams/get_path_zhuanc.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/MountQueryParams/get_path_zhuanc.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/MountQueryParams/get_path_zhuanc.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/MountQueryParams/get_same_path_different_mover.xml b/storops_test/vnx/testdata/nas_xml_output/Query/MountQueryParams/get_same_path_different_mover.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/MountQueryParams/get_same_path_different_mover.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/MountQueryParams/get_same_path_different_mover.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/MountQueryParams/index.xml b/storops_test/vnx/testdata/nas_xml_output/Query/MountQueryParams/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/MountQueryParams/index.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/MountQueryParams/index.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/MoverHostQueryParams/get_all.xml b/storops_test/vnx/testdata/nas_xml_output/Query/MoverHostQueryParams/get_all.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/MoverHostQueryParams/get_all.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/MoverHostQueryParams/get_all.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/MoverHostQueryParams/get_host_1.xml b/storops_test/vnx/testdata/nas_xml_output/Query/MoverHostQueryParams/get_host_1.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/MoverHostQueryParams/get_host_1.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/MoverHostQueryParams/get_host_1.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/MoverHostQueryParams/index.xml b/storops_test/vnx/testdata/nas_xml_output/Query/MoverHostQueryParams/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/MoverHostQueryParams/index.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/MoverHostQueryParams/index.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/MoverHostQueryParams/not_found.xml b/storops_test/vnx/testdata/nas_xml_output/Query/MoverHostQueryParams/not_found.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/MoverHostQueryParams/not_found.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/MoverHostQueryParams/not_found.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/get_mover_1.xml b/storops_test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/get_mover_1.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/get_mover_1.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/get_mover_1.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/get_mover_2.xml b/storops_test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/get_mover_2.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/get_mover_2.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/get_mover_2.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/get_mover_all.xml b/storops_test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/get_mover_all.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/get_mover_all.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/get_mover_all.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/get_mover_ref_1.xml b/storops_test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/get_mover_ref_1.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/get_mover_ref_1.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/get_mover_ref_1.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/get_mover_ref_all.xml b/storops_test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/get_mover_ref_all.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/get_mover_ref_all.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/get_mover_ref_all.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/index.xml b/storops_test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/index.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/index.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/invalid_mover_id.xml b/storops_test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/invalid_mover_id.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/invalid_mover_id.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/MoverQueryParams/invalid_mover_id.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_all.xml b/storops_test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_all.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_all.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_all.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_minjie_fs1.xml b/storops_test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_minjie_fs1.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_minjie_fs1.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_minjie_fs1.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_minjie_fs2.xml b/storops_test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_minjie_fs2.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_minjie_fs2.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_minjie_fs2.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_share_by_mover.xml b/storops_test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_share_by_mover.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_share_by_mover.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_share_by_mover.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_share_eee.xml b/storops_test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_share_eee.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_share_eee.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_share_eee.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_share_eee_mover_1.xml b/storops_test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_share_eee_mover_1.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_share_eee_mover_1.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_share_eee_mover_1.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_share_fff_mover_1.xml b/storops_test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_share_fff_mover_1.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_share_fff_mover_1.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/get_share_fff_mover_1.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/index.xml b/storops_test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/index.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/NfsExportQueryParams/index.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/StoragePoolQueryParams/get_pool_all.xml b/storops_test/vnx/testdata/nas_xml_output/Query/StoragePoolQueryParams/get_pool_all.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/StoragePoolQueryParams/get_pool_all.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/StoragePoolQueryParams/get_pool_all.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/StoragePoolQueryParams/index.xml b/storops_test/vnx/testdata/nas_xml_output/Query/StoragePoolQueryParams/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/StoragePoolQueryParams/index.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/StoragePoolQueryParams/index.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/VdmQueryParams/get_all.xml b/storops_test/vnx/testdata/nas_xml_output/Query/VdmQueryParams/get_all.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/VdmQueryParams/get_all.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/VdmQueryParams/get_all.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/VdmQueryParams/get_by_id_2.xml b/storops_test/vnx/testdata/nas_xml_output/Query/VdmQueryParams/get_by_id_2.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/VdmQueryParams/get_by_id_2.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/VdmQueryParams/get_by_id_2.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/VdmQueryParams/get_by_id_4.xml b/storops_test/vnx/testdata/nas_xml_output/Query/VdmQueryParams/get_by_id_4.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/VdmQueryParams/get_by_id_4.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/VdmQueryParams/get_by_id_4.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/VdmQueryParams/get_by_id_invalid.xml b/storops_test/vnx/testdata/nas_xml_output/Query/VdmQueryParams/get_by_id_invalid.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/VdmQueryParams/get_by_id_invalid.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/VdmQueryParams/get_by_id_invalid.xml diff --git a/test/vnx/testdata/nas_xml_output/Query/VdmQueryParams/index.xml b/storops_test/vnx/testdata/nas_xml_output/Query/VdmQueryParams/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/Query/VdmQueryParams/index.xml rename to storops_test/vnx/testdata/nas_xml_output/Query/VdmQueryParams/index.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/DeleteCheckpoint/index.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteCheckpoint/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/DeleteCheckpoint/index.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteCheckpoint/index.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/DeleteCheckpoint/success.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteCheckpoint/success.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/DeleteCheckpoint/success.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteCheckpoint/success.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/DeleteCifsServer/index.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteCifsServer/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/DeleteCifsServer/index.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteCifsServer/index.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/DeleteCifsServer/not_found.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteCifsServer/not_found.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/DeleteCifsServer/not_found.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteCifsServer/not_found.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/DeleteCifsServer/success.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteCifsServer/success.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/DeleteCifsServer/success.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteCifsServer/success.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/DeleteCifsShare/index.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteCifsShare/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/DeleteCifsShare/index.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteCifsShare/index.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/DeleteCifsShare/not_found.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteCifsShare/not_found.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/DeleteCifsShare/not_found.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteCifsShare/not_found.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/DeleteCifsShare/success.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteCifsShare/success.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/DeleteCifsShare/success.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteCifsShare/success.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/DeleteFileSystem/index.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteFileSystem/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/DeleteFileSystem/index.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteFileSystem/index.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/DeleteFileSystem/remove_fs_not_exists.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteFileSystem/remove_fs_not_exists.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/DeleteFileSystem/remove_fs_not_exists.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteFileSystem/remove_fs_not_exists.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/DeleteFileSystem/remove_fs_success.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteFileSystem/remove_fs_success.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/DeleteFileSystem/remove_fs_success.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteFileSystem/remove_fs_success.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/DeleteMount/index.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteMount/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/DeleteMount/index.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteMount/index.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/DeleteMount/success.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteMount/success.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/DeleteMount/success.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteMount/success.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/DeleteMoverDnsDomain/index.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteMoverDnsDomain/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/DeleteMoverDnsDomain/index.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteMoverDnsDomain/index.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/DeleteMoverDnsDomain/not_exists.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteMoverDnsDomain/not_exists.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/DeleteMoverDnsDomain/not_exists.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteMoverDnsDomain/not_exists.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/DeleteMoverDnsDomain/success.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteMoverDnsDomain/success.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/DeleteMoverDnsDomain/success.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteMoverDnsDomain/success.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/DeleteMoverInterface/index.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteMoverInterface/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/DeleteMoverInterface/index.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteMoverInterface/index.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/DeleteMoverInterface/success.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteMoverInterface/success.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/DeleteMoverInterface/success.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteMoverInterface/success.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/DeleteNfsExport/index.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteNfsExport/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/DeleteNfsExport/index.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteNfsExport/index.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/DeleteNfsExport/not_found.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteNfsExport/not_found.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/DeleteNfsExport/not_found.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteNfsExport/not_found.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/DeleteNfsExport/success.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteNfsExport/success.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/DeleteNfsExport/success.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteNfsExport/success.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/DeleteVdm/index.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteVdm/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/DeleteVdm/index.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteVdm/index.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/DeleteVdm/not_found.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteVdm/not_found.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/DeleteVdm/not_found.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteVdm/not_found.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/DeleteVdm/success.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteVdm/success.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/DeleteVdm/success.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/DeleteVdm/success.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/ExtendFileSystem/index.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/ExtendFileSystem/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/ExtendFileSystem/index.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/ExtendFileSystem/index.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/ExtendFileSystem/invalid_size.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/ExtendFileSystem/invalid_size.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/ExtendFileSystem/invalid_size.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/ExtendFileSystem/invalid_size.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/ExtendFileSystem/success.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/ExtendFileSystem/success.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/ExtendFileSystem/success.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/ExtendFileSystem/success.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/ModifyNfsExport/index.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/ModifyNfsExport/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/ModifyNfsExport/index.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/ModifyNfsExport/index.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/ModifyNfsExport/not_found.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/ModifyNfsExport/not_found.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/ModifyNfsExport/not_found.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/ModifyNfsExport/not_found.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/ModifyNfsExport/success.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/ModifyNfsExport/success.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/ModifyNfsExport/success.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/ModifyNfsExport/success.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewCheckpoint/already_in_use.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewCheckpoint/already_in_use.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewCheckpoint/already_in_use.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewCheckpoint/already_in_use.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewCheckpoint/index.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewCheckpoint/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewCheckpoint/index.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewCheckpoint/index.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewCheckpoint/success.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewCheckpoint/success.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewCheckpoint/success.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewCheckpoint/success.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewCifsShare/index.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewCifsShare/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewCifsShare/index.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewCifsShare/index.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewCifsShare/invalid_path.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewCifsShare/invalid_path.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewCifsShare/invalid_path.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewCifsShare/invalid_path.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewCifsShare/success.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewCifsShare/success.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewCifsShare/success.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewCifsShare/success.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/create_fs_existed.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/create_fs_existed.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/create_fs_existed.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/create_fs_existed.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/index.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/index.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/index.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/invalid_mover_id.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/invalid_mover_id.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/invalid_mover_id.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/invalid_mover_id.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/invalid_pool.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/invalid_pool.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/invalid_pool.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/invalid_pool.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/invalid_size.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/invalid_size.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/invalid_size.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/invalid_size.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/invalid_vdm_id.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/invalid_vdm_id.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/invalid_vdm_id.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/invalid_vdm_id.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/not_enough_space.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/not_enough_space.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/not_enough_space.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/not_enough_space.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/success.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/success.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/success.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewFileSystem/success.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewMount/index.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewMount/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewMount/index.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewMount/index.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewMount/invalid_fs.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewMount/invalid_fs.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewMount/invalid_fs.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewMount/invalid_fs.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewMount/mounted.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewMount/mounted.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewMount/mounted.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewMount/mounted.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewMount/path_occupied.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewMount/path_occupied.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewMount/path_occupied.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewMount/path_occupied.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewMount/success.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewMount/success.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewMount/success.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewMount/success.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewMoverDnsDomain/index.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewMoverDnsDomain/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewMoverDnsDomain/index.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewMoverDnsDomain/index.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewMoverDnsDomain/ip_format_error.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewMoverDnsDomain/ip_format_error.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewMoverDnsDomain/ip_format_error.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewMoverDnsDomain/ip_format_error.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewMoverDnsDomain/success.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewMoverDnsDomain/success.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewMoverDnsDomain/success.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewMoverDnsDomain/success.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewMoverInterface/index.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewMoverInterface/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewMoverInterface/index.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewMoverInterface/index.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewMoverInterface/success.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewMoverInterface/success.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewMoverInterface/success.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewMoverInterface/success.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewNfsExport/index.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewNfsExport/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewNfsExport/index.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewNfsExport/index.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewNfsExport/invalid.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewNfsExport/invalid.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewNfsExport/invalid.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewNfsExport/invalid.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewNfsExport/success.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewNfsExport/success.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewNfsExport/success.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewNfsExport/success.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewStandaloneCifsServer/index.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewStandaloneCifsServer/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewStandaloneCifsServer/index.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewStandaloneCifsServer/index.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewStandaloneCifsServer/success.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewStandaloneCifsServer/success.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewStandaloneCifsServer/success.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewStandaloneCifsServer/success.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewVdm/index.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewVdm/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewVdm/index.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewVdm/index.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewVdm/invalid_mover_id.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewVdm/invalid_mover_id.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewVdm/invalid_mover_id.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewVdm/invalid_mover_id.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewVdm/success.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewVdm/success.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewVdm/success.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewVdm/success.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewW2KCifsServer/index.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewW2KCifsServer/index.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewW2KCifsServer/index.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewW2KCifsServer/index.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewW2KCifsServer/invalid_domain_name.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewW2KCifsServer/invalid_domain_name.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewW2KCifsServer/invalid_domain_name.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewW2KCifsServer/invalid_domain_name.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewW2KCifsServer/invalid_name.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewW2KCifsServer/invalid_name.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewW2KCifsServer/invalid_name.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewW2KCifsServer/invalid_name.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewW2KCifsServer/net_bios_existed.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewW2KCifsServer/net_bios_existed.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewW2KCifsServer/net_bios_existed.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewW2KCifsServer/net_bios_existed.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewW2KCifsServer/no_default_nt_server.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewW2KCifsServer/no_default_nt_server.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewW2KCifsServer/no_default_nt_server.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewW2KCifsServer/no_default_nt_server.xml diff --git a/test/vnx/testdata/nas_xml_output/StartTask/NewW2KCifsServer/success.xml b/storops_test/vnx/testdata/nas_xml_output/StartTask/NewW2KCifsServer/success.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/StartTask/NewW2KCifsServer/success.xml rename to storops_test/vnx/testdata/nas_xml_output/StartTask/NewW2KCifsServer/success.xml diff --git a/test/vnx/testdata/nas_xml_output/credential_error.html b/storops_test/vnx/testdata/nas_xml_output/credential_error.html similarity index 100% rename from test/vnx/testdata/nas_xml_output/credential_error.html rename to storops_test/vnx/testdata/nas_xml_output/credential_error.html diff --git a/test/vnx/testdata/nas_xml_output/fs_not_found.xml b/storops_test/vnx/testdata/nas_xml_output/fs_not_found.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/fs_not_found.xml rename to storops_test/vnx/testdata/nas_xml_output/fs_not_found.xml diff --git a/test/vnx/testdata/nas_xml_output/fs_single_post.xml b/storops_test/vnx/testdata/nas_xml_output/fs_single_post.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/fs_single_post.xml rename to storops_test/vnx/testdata/nas_xml_output/fs_single_post.xml diff --git a/test/vnx/testdata/nas_xml_output/invalid_data_mover.xml b/storops_test/vnx/testdata/nas_xml_output/invalid_data_mover.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/invalid_data_mover.xml rename to storops_test/vnx/testdata/nas_xml_output/invalid_data_mover.xml diff --git a/test/vnx/testdata/nas_xml_output/success.xml b/storops_test/vnx/testdata/nas_xml_output/success.xml similarity index 100% rename from test/vnx/testdata/nas_xml_output/success.xml rename to storops_test/vnx/testdata/nas_xml_output/success.xml diff --git a/test/vnx/testdata/ssh_output/nas_cel_-interconnect_-l.txt b/storops_test/vnx/testdata/ssh_output/nas_cel_-interconnect_-l.txt similarity index 100% rename from test/vnx/testdata/ssh_output/nas_cel_-interconnect_-l.txt rename to storops_test/vnx/testdata/ssh_output/nas_cel_-interconnect_-l.txt diff --git a/test/vnx/testdata/ssh_output/nas_server_-i_-vdm_VDM_ESA.txt b/storops_test/vnx/testdata/ssh_output/nas_server_-i_-vdm_VDM_ESA.txt similarity index 100% rename from test/vnx/testdata/ssh_output/nas_server_-i_-vdm_VDM_ESA.txt rename to storops_test/vnx/testdata/ssh_output/nas_server_-i_-vdm_VDM_ESA.txt diff --git a/test/vnx/testdata/ssh_output/nas_server_-vdm_myvdm_-attach_1.1.1.1-0.txt b/storops_test/vnx/testdata/ssh_output/nas_server_-vdm_myvdm_-attach_1.1.1.1-0.txt similarity index 100% rename from test/vnx/testdata/ssh_output/nas_server_-vdm_myvdm_-attach_1.1.1.1-0.txt rename to storops_test/vnx/testdata/ssh_output/nas_server_-vdm_myvdm_-attach_1.1.1.1-0.txt diff --git a/test/vnx/testdata/ssh_output/nas_server_-vdm_myvdm_-attach_1.1.1.2-0.txt b/storops_test/vnx/testdata/ssh_output/nas_server_-vdm_myvdm_-attach_1.1.1.2-0.txt similarity index 100% rename from test/vnx/testdata/ssh_output/nas_server_-vdm_myvdm_-attach_1.1.1.2-0.txt rename to storops_test/vnx/testdata/ssh_output/nas_server_-vdm_myvdm_-attach_1.1.1.2-0.txt diff --git a/test/vnx/testdata/ssh_output/nas_server_-vdm_myvdm_-detach_1.1.1.1-0.txt b/storops_test/vnx/testdata/ssh_output/nas_server_-vdm_myvdm_-detach_1.1.1.1-0.txt similarity index 100% rename from test/vnx/testdata/ssh_output/nas_server_-vdm_myvdm_-detach_1.1.1.1-0.txt rename to storops_test/vnx/testdata/ssh_output/nas_server_-vdm_myvdm_-detach_1.1.1.1-0.txt diff --git a/test/vnx/testdata/ssh_output/nas_server_-vdm_myvdm_-detach_1.1.1.2-0.txt b/storops_test/vnx/testdata/ssh_output/nas_server_-vdm_myvdm_-detach_1.1.1.2-0.txt similarity index 100% rename from test/vnx/testdata/ssh_output/nas_server_-vdm_myvdm_-detach_1.1.1.2-0.txt rename to storops_test/vnx/testdata/ssh_output/nas_server_-vdm_myvdm_-detach_1.1.1.2-0.txt diff --git a/test/vnx/testdata/ssh_output/nas_server_-vdm_myvdm_-detach_1.1.1.3-0.txt b/storops_test/vnx/testdata/ssh_output/nas_server_-vdm_myvdm_-detach_1.1.1.3-0.txt similarity index 100% rename from test/vnx/testdata/ssh_output/nas_server_-vdm_myvdm_-detach_1.1.1.3-0.txt rename to storops_test/vnx/testdata/ssh_output/nas_server_-vdm_myvdm_-detach_1.1.1.3-0.txt diff --git a/test-requirements.txt b/test-requirements.txt index 4946b523..567fcf39 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -5,7 +5,6 @@ PyHamcrest>=1.8.5 pytest>=2.8.0 pytest-cov>=2.1.0 pytest-xdist>=1.13.1 -pytest-capturelog>=0.7 xmltodict>=0.9.2 fasteners>=0.12.0 ddt>=1.0.1 # MIT diff --git a/tox.ini b/tox.ini index 8f23aa06..af6e5f23 100644 --- a/tox.ini +++ b/tox.ini @@ -8,7 +8,7 @@ deps = -rtest-requirements.txt commands = - py.test {posargs} -n2 --cov=storops --cov-config coverage.ini --cov-report=xml --cov-report term --junit-xml=junit-result.xml test + py.test {posargs} --cov=storops --cov-config coverage.ini --cov-report=xml --cov-report term --junit-xml=junit-result.xml storops_test setenv = STATICBUILD = true @@ -22,27 +22,27 @@ norecursedirs = .tox .git [testenv:pep8] deps = flake8 commands = - flake8 storops test comptest + flake8 storops storops_test storops_comptest [testenv:comptest] # all component tests commands = - py.test -n2 --cov=storops --cov-config coverage.ini --cov-report=xml --cov-report term --junit-xml=junit-result.xml comptest + py.test -n2 --cov=storops --cov-config coverage.ini --cov-report=xml --cov-report term --junit-xml=junit-result.xml storops_comptest [testenv:vnx] # component test for vnx platform commands = - py.test -n2 --cov=storops --cov-config coverage.ini --cov-report=xml --cov-report term --junit-xml=junit-result.xml comptest/vnx + py.test -n2 --cov=storops --cov-config coverage.ini --cov-report=xml --cov-report term --junit-xml=junit-result.xml storops_comptest/vnx [testenv:unity] # component test for unity platform commands = - py.test -n2 --cov=storops --cov-config coverage.ini --cov-report=xml --cov-report term --junit-xml=junit-result.xml comptest/unity + py.test -n2 --cov=storops --cov-config coverage.ini --cov-report=xml --cov-report term --junit-xml=junit-result.xml storops_comptest/unity [testenv:vnx_multi] # component for VNX features that requires more than 1 array commands = - py.test --cov=storops --cov-config coverage.ini --cov-report=xml --cov-report term --junit-xml=junit-result.xml comptest/vnx/test_mirror_view.py + py.test --cov=storops --cov-config coverage.ini --cov-report=xml --cov-report term --junit-xml=junit-result.xml storops_comptest/vnx/test_mirror_view.py