diff --git a/test/integration/roles/setup_ec2 b/test/integration/roles/setup_ec2 deleted file mode 120000 index 695decee54..0000000000 --- a/test/integration/roles/setup_ec2 +++ /dev/null @@ -1 +0,0 @@ -../targets/setup_ec2 \ No newline at end of file diff --git a/test/integration/roles/setup_sshkey b/test/integration/roles/setup_sshkey deleted file mode 120000 index aaef469c2e..0000000000 --- a/test/integration/roles/setup_sshkey +++ /dev/null @@ -1 +0,0 @@ -../targets/setup_sshkey \ No newline at end of file diff --git a/test/integration/roles/test_ec2/meta/main.yml b/test/integration/targets/aws_lambda/meta/main.yml similarity index 100% rename from test/integration/roles/test_ec2/meta/main.yml rename to test/integration/targets/aws_lambda/meta/main.yml diff --git a/test/integration/targets/conditionals/vars/main.yml b/test/integration/targets/conditionals/vars/main.yml index a02b87168e..d62214781e 100644 --- a/test/integration/targets/conditionals/vars/main.yml +++ b/test/integration/targets/conditionals/vars/main.yml @@ -15,3 +15,8 @@ things1: - 1 - 2 vars_file_var: 321 + +test_bare: true +test_bare_var: 123 +test_bare_nested_good: "test_bare_var == 123" +test_bare_nested_bad: "{{test_bare_var}} == 321" diff --git a/test/integration/targets/filters/host_vars/testhost b/test/integration/targets/filters/host_vars/testhost new file mode 100644 index 0000000000..a8926a52d8 --- /dev/null +++ b/test/integration/targets/filters/host_vars/testhost @@ -0,0 +1 @@ +a: 1 diff --git a/test/integration/targets/filters/inventory b/test/integration/targets/filters/inventory new file mode 120000 index 0000000000..c743258cef --- /dev/null +++ b/test/integration/targets/filters/inventory @@ -0,0 +1 @@ +../../inventory \ No newline at end of file diff --git a/test/integration/targets/filters/runme.sh b/test/integration/targets/filters/runme.sh index c3a63730e3..49c1e1b45e 100755 --- a/test/integration/targets/filters/runme.sh +++ b/test/integration/targets/filters/runme.sh @@ -6,4 +6,4 @@ set -eux # because plugins and requirements are loaded before the task runs pip install jmespath -ANSIBLE_ROLES_PATH=../ ansible-playbook filters.yml -i ../../inventory -e @../../integration_config.yml "$@" +ANSIBLE_ROLES_PATH=../ ansible-playbook filters.yml -i inventory -e @../../integration_config.yml "$@" diff --git a/test/integration/targets/hash/group_vars/all b/test/integration/targets/hash/group_vars/all new file mode 100644 index 0000000000..805ac26a6d --- /dev/null +++ b/test/integration/targets/hash/group_vars/all @@ -0,0 +1,3 @@ +# variables used for hash merging behavior testing +test_hash: + group_vars_all: "this is in group_vars/all" diff --git a/test/integration/targets/hash/host_vars/testhost b/test/integration/targets/hash/host_vars/testhost new file mode 100644 index 0000000000..3a75ee6690 --- /dev/null +++ b/test/integration/targets/hash/host_vars/testhost @@ -0,0 +1,2 @@ +test_hash: + host_vars_testhost: "this is in host_vars/testhost" diff --git a/test/integration/targets/hash/inventory b/test/integration/targets/hash/inventory new file mode 120000 index 0000000000..c743258cef --- /dev/null +++ b/test/integration/targets/hash/inventory @@ -0,0 +1 @@ +../../inventory \ No newline at end of file diff --git a/test/integration/targets/hash/runme.sh b/test/integration/targets/hash/runme.sh index 9448e4e098..efa4331d65 100755 --- a/test/integration/targets/hash/runme.sh +++ b/test/integration/targets/hash/runme.sh @@ -4,5 +4,5 @@ set -eux JSON_ARG='{"test_hash":{"extra_args":"this is an extra arg"}}' -ANSIBLE_HASH_BEHAVIOUR=replace ansible-playbook test_hash.yml -i ../../inventory -v "$@" -e "${JSON_ARG}" -ANSIBLE_HASH_BEHAVIOUR=merge ansible-playbook test_hash.yml -i ../../inventory -v "$@" -e "${JSON_ARG}" +ANSIBLE_HASH_BEHAVIOUR=replace ansible-playbook test_hash.yml -i inventory -v "$@" -e "${JSON_ARG}" +ANSIBLE_HASH_BEHAVIOUR=merge ansible-playbook test_hash.yml -i inventory -v "$@" -e "${JSON_ARG}" diff --git a/test/integration/roles/test_ec2_eip/meta/main.yml b/test/integration/targets/lambda_policy/meta/main.yml similarity index 100% rename from test/integration/roles/test_ec2_eip/meta/main.yml rename to test/integration/targets/lambda_policy/meta/main.yml diff --git a/test/integration/group_vars/amazon b/test/integration/targets/setup_ec2/vars/main.yml similarity index 100% rename from test/integration/group_vars/amazon rename to test/integration/targets/setup_ec2/vars/main.yml diff --git a/test/integration/targets/var_blending/group_vars/all b/test/integration/targets/var_blending/group_vars/all new file mode 100644 index 0000000000..30aa3d6d56 --- /dev/null +++ b/test/integration/targets/var_blending/group_vars/all @@ -0,0 +1,9 @@ +a: 999 +b: 998 +c: 997 +d: 996 +uno: 1 +dos: 2 +tres: 3 +etest: 'from group_vars' +inventory_beats_default: 'narf' diff --git a/test/integration/targets/var_blending/group_vars/local b/test/integration/targets/var_blending/group_vars/local new file mode 100644 index 0000000000..8feb93fc99 --- /dev/null +++ b/test/integration/targets/var_blending/group_vars/local @@ -0,0 +1 @@ +tres: 'three' diff --git a/test/integration/targets/var_blending/host_vars/testhost b/test/integration/targets/var_blending/host_vars/testhost new file mode 100644 index 0000000000..49271aef5d --- /dev/null +++ b/test/integration/targets/var_blending/host_vars/testhost @@ -0,0 +1,4 @@ +a: 1 +b: 2 +c: 3 +d: 4 diff --git a/test/integration/targets/var_blending/inventory b/test/integration/targets/var_blending/inventory new file mode 120000 index 0000000000..c743258cef --- /dev/null +++ b/test/integration/targets/var_blending/inventory @@ -0,0 +1 @@ +../../inventory \ No newline at end of file diff --git a/test/integration/targets/var_blending/runme.sh b/test/integration/targets/var_blending/runme.sh index 8f09e3e919..24e523ced5 100755 --- a/test/integration/targets/var_blending/runme.sh +++ b/test/integration/targets/var_blending/runme.sh @@ -2,4 +2,4 @@ set -eux -ansible-playbook test_var_blending.yml -i ../../inventory -e @integration_config.yml -v "$@" +ansible-playbook test_var_blending.yml -i inventory -e @integration_config.yml -v "$@" diff --git a/test/integration/targets/var_precedence/host_vars/testhost b/test/integration/targets/var_precedence/host_vars/testhost new file mode 100644 index 0000000000..7d5335542a --- /dev/null +++ b/test/integration/targets/var_precedence/host_vars/testhost @@ -0,0 +1,2 @@ +# Var precedence testing +defaults_file_var_role3: "overridden from inventory" diff --git a/test/integration/Makefile b/test/legacy/Makefile similarity index 100% rename from test/integration/Makefile rename to test/legacy/Makefile diff --git a/test/integration/amazon.yml b/test/legacy/amazon.yml similarity index 100% rename from test/integration/amazon.yml rename to test/legacy/amazon.yml diff --git a/test/integration/azure.yml b/test/legacy/azure.yml similarity index 100% rename from test/integration/azure.yml rename to test/legacy/azure.yml diff --git a/test/integration/cleanup_azure.py b/test/legacy/cleanup_azure.py similarity index 100% rename from test/integration/cleanup_azure.py rename to test/legacy/cleanup_azure.py diff --git a/test/integration/cleanup_ec2.py b/test/legacy/cleanup_ec2.py similarity index 100% rename from test/integration/cleanup_ec2.py rename to test/legacy/cleanup_ec2.py diff --git a/test/integration/cleanup_gce.py b/test/legacy/cleanup_gce.py similarity index 100% rename from test/integration/cleanup_gce.py rename to test/legacy/cleanup_gce.py diff --git a/test/integration/cleanup_rax.py b/test/legacy/cleanup_rax.py similarity index 100% rename from test/integration/cleanup_rax.py rename to test/legacy/cleanup_rax.py diff --git a/test/integration/cloudflare.yml b/test/legacy/cloudflare.yml similarity index 100% rename from test/integration/cloudflare.yml rename to test/legacy/cloudflare.yml diff --git a/test/integration/cloudscale.yml b/test/legacy/cloudscale.yml similarity index 100% rename from test/integration/cloudscale.yml rename to test/legacy/cloudscale.yml diff --git a/test/integration/cnos.yaml b/test/legacy/cnos.yaml similarity index 100% rename from test/integration/cnos.yaml rename to test/legacy/cnos.yaml diff --git a/test/integration/connection-buildah.yaml b/test/legacy/connection-buildah.yaml similarity index 100% rename from test/integration/connection-buildah.yaml rename to test/legacy/connection-buildah.yaml diff --git a/test/integration/consul.yml b/test/legacy/consul.yml similarity index 100% rename from test/integration/consul.yml rename to test/legacy/consul.yml diff --git a/test/integration/consul_inventory.yml b/test/legacy/consul_inventory.yml similarity index 100% rename from test/integration/consul_inventory.yml rename to test/legacy/consul_inventory.yml diff --git a/test/integration/consul_running.py b/test/legacy/consul_running.py similarity index 100% rename from test/integration/consul_running.py rename to test/legacy/consul_running.py diff --git a/test/integration/credentials.template b/test/legacy/credentials.template similarity index 100% rename from test/integration/credentials.template rename to test/legacy/credentials.template diff --git a/test/integration/exoscale.yml b/test/legacy/exoscale.yml similarity index 100% rename from test/integration/exoscale.yml rename to test/legacy/exoscale.yml diff --git a/test/integration/galaxy_playbook.yml b/test/legacy/galaxy_playbook.yml similarity index 100% rename from test/integration/galaxy_playbook.yml rename to test/legacy/galaxy_playbook.yml diff --git a/test/integration/galaxy_playbook_git.yml b/test/legacy/galaxy_playbook_git.yml similarity index 100% rename from test/integration/galaxy_playbook_git.yml rename to test/legacy/galaxy_playbook_git.yml diff --git a/test/integration/galaxy_roles.yml b/test/legacy/galaxy_roles.yml similarity index 100% rename from test/integration/galaxy_roles.yml rename to test/legacy/galaxy_roles.yml diff --git a/test/integration/galaxy_rolesfile b/test/legacy/galaxy_rolesfile similarity index 100% rename from test/integration/galaxy_rolesfile rename to test/legacy/galaxy_rolesfile diff --git a/test/integration/gce.yml b/test/legacy/gce.yml similarity index 100% rename from test/integration/gce.yml rename to test/legacy/gce.yml diff --git a/test/integration/gce_credentials.py b/test/legacy/gce_credentials.py similarity index 100% rename from test/integration/gce_credentials.py rename to test/legacy/gce_credentials.py diff --git a/test/integration/group_vars/all b/test/legacy/group_vars/all similarity index 100% rename from test/integration/group_vars/all rename to test/legacy/group_vars/all diff --git a/test/legacy/group_vars/amazon b/test/legacy/group_vars/amazon new file mode 100644 index 0000000000..3d7209ef1b --- /dev/null +++ b/test/legacy/group_vars/amazon @@ -0,0 +1,3 @@ +--- +ec2_url: ec2.amazonaws.com +ec2_region: us-east-1 diff --git a/test/integration/group_vars/local b/test/legacy/group_vars/local similarity index 100% rename from test/integration/group_vars/local rename to test/legacy/group_vars/local diff --git a/test/integration/group_vars/vyos.yaml b/test/legacy/group_vars/vyos.yaml similarity index 100% rename from test/integration/group_vars/vyos.yaml rename to test/legacy/group_vars/vyos.yaml diff --git a/test/integration/host_vars/testhost b/test/legacy/host_vars/testhost similarity index 100% rename from test/integration/host_vars/testhost rename to test/legacy/host_vars/testhost diff --git a/test/legacy/integration_config.yml b/test/legacy/integration_config.yml new file mode 100644 index 0000000000..3159daf196 --- /dev/null +++ b/test/legacy/integration_config.yml @@ -0,0 +1,5 @@ +--- +win_output_dir: 'C:\ansible_testing' +output_dir: ~/ansible_testing +non_root_test_user: ansible +pip_test_package: isort diff --git a/test/legacy/inventory b/test/legacy/inventory new file mode 100644 index 0000000000..3534b8cb8a --- /dev/null +++ b/test/legacy/inventory @@ -0,0 +1,55 @@ +[local] +testhost ansible_ssh_host=127.0.0.1 ansible_connection=local +testhost2 ansible_ssh_host=127.0.0.1 ansible_connection=local +# For testing delegate_to +testhost3 ansible_ssh_host=127.0.0.3 +testhost4 ansible_ssh_host=127.0.0.4 +# For testing fact gathering +facthost[0:20] ansible_host=127.0.0.1 ansible_connection=local + +[binary_modules] +testhost_binary_modules ansible_host=127.0.0.1 ansible_connection=local + +[local_group] +kube-pippin.knf.local + +# the following inline declarations are accompanied +# by (preferred) group_vars/ and host_vars/ variables +# and are used in testing of variable precedence + +[inven_overridehosts] +invenoverride ansible_ssh_host=127.0.0.1 ansible_connection=local + +[all:vars] +extra_var_override=FROM_INVENTORY +inven_var=inventory_var +unicode_host_var=CaféEñyei + +[inven_overridehosts:vars] +foo=foo +var_dir=vars + +[arbitrary_parent:children] +local + +[local:vars] +parent_var=6000 +groups_tree_var=5000 + +[arbitrary_parent:vars] +groups_tree_var=4000 +overridden_in_parent=1000 + +[arbitrary_grandparent:children] +arbitrary_parent + +[arbitrary_grandparent:vars] +groups_tree_var=3000 +grandparent_var=2000 +overridden_in_parent=2000 + +[amazon] +localhost ansible_ssh_host=127.0.0.1 ansible_connection=local + +[azure] +localhost ansible_ssh_host=127.0.0.1 ansible_connection=local diff --git a/test/integration/inventory.yaml b/test/legacy/inventory.yaml similarity index 100% rename from test/integration/inventory.yaml rename to test/legacy/inventory.yaml diff --git a/test/integration/jenkins.yml b/test/legacy/jenkins.yml similarity index 100% rename from test/integration/jenkins.yml rename to test/legacy/jenkins.yml diff --git a/test/integration/netscaler.yaml b/test/legacy/netscaler.yaml similarity index 100% rename from test/integration/netscaler.yaml rename to test/legacy/netscaler.yaml diff --git a/test/integration/nuage.yaml b/test/legacy/nuage.yaml similarity index 100% rename from test/integration/nuage.yaml rename to test/legacy/nuage.yaml diff --git a/test/integration/ovs.yaml b/test/legacy/ovs.yaml similarity index 100% rename from test/integration/ovs.yaml rename to test/legacy/ovs.yaml diff --git a/test/integration/rackspace.yml b/test/legacy/rackspace.yml similarity index 100% rename from test/integration/rackspace.yml rename to test/legacy/rackspace.yml diff --git a/test/integration/roles/azure_rm_networkinterface/tasks/main.yml b/test/legacy/roles/azure_rm_networkinterface/tasks/main.yml similarity index 100% rename from test/integration/roles/azure_rm_networkinterface/tasks/main.yml rename to test/legacy/roles/azure_rm_networkinterface/tasks/main.yml diff --git a/test/integration/roles/azure_rm_resourcegroup/tasks/main.yml b/test/legacy/roles/azure_rm_resourcegroup/tasks/main.yml similarity index 100% rename from test/integration/roles/azure_rm_resourcegroup/tasks/main.yml rename to test/legacy/roles/azure_rm_resourcegroup/tasks/main.yml diff --git a/test/integration/roles/azure_rm_virtualmachine/defaults/main.yml b/test/legacy/roles/azure_rm_virtualmachine/defaults/main.yml similarity index 100% rename from test/integration/roles/azure_rm_virtualmachine/defaults/main.yml rename to test/legacy/roles/azure_rm_virtualmachine/defaults/main.yml diff --git a/test/integration/roles/azure_rm_virtualmachine/tasks/main.yml b/test/legacy/roles/azure_rm_virtualmachine/tasks/main.yml similarity index 100% rename from test/integration/roles/azure_rm_virtualmachine/tasks/main.yml rename to test/legacy/roles/azure_rm_virtualmachine/tasks/main.yml diff --git a/test/integration/roles/azure_rm_virtualmachine/tasks/virtualmachine.yml b/test/legacy/roles/azure_rm_virtualmachine/tasks/virtualmachine.yml similarity index 100% rename from test/integration/roles/azure_rm_virtualmachine/tasks/virtualmachine.yml rename to test/legacy/roles/azure_rm_virtualmachine/tasks/virtualmachine.yml diff --git a/test/integration/roles/azure_rm_virtualmachine/tasks/virtualmachine_with_defaults.yml b/test/legacy/roles/azure_rm_virtualmachine/tasks/virtualmachine_with_defaults.yml similarity index 100% rename from test/integration/roles/azure_rm_virtualmachine/tasks/virtualmachine_with_defaults.yml rename to test/legacy/roles/azure_rm_virtualmachine/tasks/virtualmachine_with_defaults.yml diff --git a/test/integration/roles/cloudscale_server/defaults/main.yml b/test/legacy/roles/cloudscale_server/defaults/main.yml similarity index 100% rename from test/integration/roles/cloudscale_server/defaults/main.yml rename to test/legacy/roles/cloudscale_server/defaults/main.yml diff --git a/test/integration/roles/cloudscale_server/meta/main.yml b/test/legacy/roles/cloudscale_server/meta/main.yml similarity index 100% rename from test/integration/roles/cloudscale_server/meta/main.yml rename to test/legacy/roles/cloudscale_server/meta/main.yml diff --git a/test/integration/roles/cloudscale_server/tasks/main.yml b/test/legacy/roles/cloudscale_server/tasks/main.yml similarity index 100% rename from test/integration/roles/cloudscale_server/tasks/main.yml rename to test/legacy/roles/cloudscale_server/tasks/main.yml diff --git a/test/integration/roles/cnos_backup/README.md b/test/legacy/roles/cnos_backup/README.md similarity index 100% rename from test/integration/roles/cnos_backup/README.md rename to test/legacy/roles/cnos_backup/README.md diff --git a/test/integration/roles/cnos_backup/cnos_backup_sample_hosts b/test/legacy/roles/cnos_backup/cnos_backup_sample_hosts similarity index 100% rename from test/integration/roles/cnos_backup/cnos_backup_sample_hosts rename to test/legacy/roles/cnos_backup/cnos_backup_sample_hosts diff --git a/test/integration/roles/cnos_backup/tasks/main.yml b/test/legacy/roles/cnos_backup/tasks/main.yml similarity index 100% rename from test/integration/roles/cnos_backup/tasks/main.yml rename to test/legacy/roles/cnos_backup/tasks/main.yml diff --git a/test/integration/roles/cnos_backup/vars/main.yml b/test/legacy/roles/cnos_backup/vars/main.yml similarity index 100% rename from test/integration/roles/cnos_backup/vars/main.yml rename to test/legacy/roles/cnos_backup/vars/main.yml diff --git a/test/integration/roles/cnos_bgp/README.md b/test/legacy/roles/cnos_bgp/README.md similarity index 100% rename from test/integration/roles/cnos_bgp/README.md rename to test/legacy/roles/cnos_bgp/README.md diff --git a/test/integration/roles/cnos_bgp/cnos_bgp_sample_hosts b/test/legacy/roles/cnos_bgp/cnos_bgp_sample_hosts similarity index 100% rename from test/integration/roles/cnos_bgp/cnos_bgp_sample_hosts rename to test/legacy/roles/cnos_bgp/cnos_bgp_sample_hosts diff --git a/test/integration/roles/cnos_bgp/tasks/main.yml b/test/legacy/roles/cnos_bgp/tasks/main.yml similarity index 100% rename from test/integration/roles/cnos_bgp/tasks/main.yml rename to test/legacy/roles/cnos_bgp/tasks/main.yml diff --git a/test/integration/roles/cnos_bgp/vars/main.yml b/test/legacy/roles/cnos_bgp/vars/main.yml similarity index 100% rename from test/integration/roles/cnos_bgp/vars/main.yml rename to test/legacy/roles/cnos_bgp/vars/main.yml diff --git a/test/integration/roles/cnos_command/README.md b/test/legacy/roles/cnos_command/README.md similarity index 100% rename from test/integration/roles/cnos_command/README.md rename to test/legacy/roles/cnos_command/README.md diff --git a/test/integration/roles/cnos_command/cnos_command_sample_hosts b/test/legacy/roles/cnos_command/cnos_command_sample_hosts similarity index 100% rename from test/integration/roles/cnos_command/cnos_command_sample_hosts rename to test/legacy/roles/cnos_command/cnos_command_sample_hosts diff --git a/test/integration/roles/cnos_command/tasks/main.yml b/test/legacy/roles/cnos_command/tasks/main.yml similarity index 100% rename from test/integration/roles/cnos_command/tasks/main.yml rename to test/legacy/roles/cnos_command/tasks/main.yml diff --git a/test/integration/roles/cnos_command/vars/main.yml b/test/legacy/roles/cnos_command/vars/main.yml similarity index 100% rename from test/integration/roles/cnos_command/vars/main.yml rename to test/legacy/roles/cnos_command/vars/main.yml diff --git a/test/integration/roles/cnos_conditional_command/README.md b/test/legacy/roles/cnos_conditional_command/README.md similarity index 100% rename from test/integration/roles/cnos_conditional_command/README.md rename to test/legacy/roles/cnos_conditional_command/README.md diff --git a/test/integration/roles/cnos_conditional_command/cnos_conditional_command_sample_hosts b/test/legacy/roles/cnos_conditional_command/cnos_conditional_command_sample_hosts similarity index 100% rename from test/integration/roles/cnos_conditional_command/cnos_conditional_command_sample_hosts rename to test/legacy/roles/cnos_conditional_command/cnos_conditional_command_sample_hosts diff --git a/test/integration/roles/cnos_conditional_command/tasks/main.yml b/test/legacy/roles/cnos_conditional_command/tasks/main.yml similarity index 100% rename from test/integration/roles/cnos_conditional_command/tasks/main.yml rename to test/legacy/roles/cnos_conditional_command/tasks/main.yml diff --git a/test/integration/roles/cnos_conditional_command/vars/main.yml b/test/legacy/roles/cnos_conditional_command/vars/main.yml similarity index 100% rename from test/integration/roles/cnos_conditional_command/vars/main.yml rename to test/legacy/roles/cnos_conditional_command/vars/main.yml diff --git a/test/integration/roles/cnos_conditional_template/README.md b/test/legacy/roles/cnos_conditional_template/README.md similarity index 100% rename from test/integration/roles/cnos_conditional_template/README.md rename to test/legacy/roles/cnos_conditional_template/README.md diff --git a/test/integration/roles/cnos_conditional_template/cnos_conditional_template_sample_hosts b/test/legacy/roles/cnos_conditional_template/cnos_conditional_template_sample_hosts similarity index 100% rename from test/integration/roles/cnos_conditional_template/cnos_conditional_template_sample_hosts rename to test/legacy/roles/cnos_conditional_template/cnos_conditional_template_sample_hosts diff --git a/test/integration/roles/cnos_conditional_template/tasks/main.yml b/test/legacy/roles/cnos_conditional_template/tasks/main.yml similarity index 100% rename from test/integration/roles/cnos_conditional_template/tasks/main.yml rename to test/legacy/roles/cnos_conditional_template/tasks/main.yml diff --git a/test/integration/roles/cnos_conditional_template/templates/demo_template.j2 b/test/legacy/roles/cnos_conditional_template/templates/demo_template.j2 similarity index 100% rename from test/integration/roles/cnos_conditional_template/templates/demo_template.j2 rename to test/legacy/roles/cnos_conditional_template/templates/demo_template.j2 diff --git a/test/integration/roles/cnos_conditional_template/vars/main.yml b/test/legacy/roles/cnos_conditional_template/vars/main.yml similarity index 100% rename from test/integration/roles/cnos_conditional_template/vars/main.yml rename to test/legacy/roles/cnos_conditional_template/vars/main.yml diff --git a/test/integration/roles/cnos_ethernet/README.md b/test/legacy/roles/cnos_ethernet/README.md similarity index 100% rename from test/integration/roles/cnos_ethernet/README.md rename to test/legacy/roles/cnos_ethernet/README.md diff --git a/test/integration/roles/cnos_ethernet/cnos_ethernet_sample_hosts b/test/legacy/roles/cnos_ethernet/cnos_ethernet_sample_hosts similarity index 100% rename from test/integration/roles/cnos_ethernet/cnos_ethernet_sample_hosts rename to test/legacy/roles/cnos_ethernet/cnos_ethernet_sample_hosts diff --git a/test/integration/roles/cnos_ethernet/tasks/main.yml b/test/legacy/roles/cnos_ethernet/tasks/main.yml similarity index 100% rename from test/integration/roles/cnos_ethernet/tasks/main.yml rename to test/legacy/roles/cnos_ethernet/tasks/main.yml diff --git a/test/integration/roles/cnos_ethernet/vars/main.yml b/test/legacy/roles/cnos_ethernet/vars/main.yml similarity index 100% rename from test/integration/roles/cnos_ethernet/vars/main.yml rename to test/legacy/roles/cnos_ethernet/vars/main.yml diff --git a/test/integration/roles/cnos_facts/README.md b/test/legacy/roles/cnos_facts/README.md similarity index 100% rename from test/integration/roles/cnos_facts/README.md rename to test/legacy/roles/cnos_facts/README.md diff --git a/test/integration/roles/cnos_facts/cnos_facts_sample_hosts b/test/legacy/roles/cnos_facts/cnos_facts_sample_hosts similarity index 100% rename from test/integration/roles/cnos_facts/cnos_facts_sample_hosts rename to test/legacy/roles/cnos_facts/cnos_facts_sample_hosts diff --git a/test/integration/roles/cnos_facts/tasks/main.yml b/test/legacy/roles/cnos_facts/tasks/main.yml similarity index 100% rename from test/integration/roles/cnos_facts/tasks/main.yml rename to test/legacy/roles/cnos_facts/tasks/main.yml diff --git a/test/integration/roles/cnos_facts/vars/main.yml b/test/legacy/roles/cnos_facts/vars/main.yml similarity index 100% rename from test/integration/roles/cnos_facts/vars/main.yml rename to test/legacy/roles/cnos_facts/vars/main.yml diff --git a/test/integration/roles/cnos_image/README.md b/test/legacy/roles/cnos_image/README.md similarity index 100% rename from test/integration/roles/cnos_image/README.md rename to test/legacy/roles/cnos_image/README.md diff --git a/test/integration/roles/cnos_image/cnos_image_sample_hosts b/test/legacy/roles/cnos_image/cnos_image_sample_hosts similarity index 100% rename from test/integration/roles/cnos_image/cnos_image_sample_hosts rename to test/legacy/roles/cnos_image/cnos_image_sample_hosts diff --git a/test/integration/roles/cnos_image/tasks/main.yml b/test/legacy/roles/cnos_image/tasks/main.yml similarity index 100% rename from test/integration/roles/cnos_image/tasks/main.yml rename to test/legacy/roles/cnos_image/tasks/main.yml diff --git a/test/integration/roles/cnos_image/vars/main.yml b/test/legacy/roles/cnos_image/vars/main.yml similarity index 100% rename from test/integration/roles/cnos_image/vars/main.yml rename to test/legacy/roles/cnos_image/vars/main.yml diff --git a/test/integration/roles/cnos_portchannel/README.md b/test/legacy/roles/cnos_portchannel/README.md similarity index 100% rename from test/integration/roles/cnos_portchannel/README.md rename to test/legacy/roles/cnos_portchannel/README.md diff --git a/test/integration/roles/cnos_portchannel/cnos_portchannel_sample_hosts b/test/legacy/roles/cnos_portchannel/cnos_portchannel_sample_hosts similarity index 100% rename from test/integration/roles/cnos_portchannel/cnos_portchannel_sample_hosts rename to test/legacy/roles/cnos_portchannel/cnos_portchannel_sample_hosts diff --git a/test/integration/roles/cnos_portchannel/tasks/main.yml b/test/legacy/roles/cnos_portchannel/tasks/main.yml similarity index 100% rename from test/integration/roles/cnos_portchannel/tasks/main.yml rename to test/legacy/roles/cnos_portchannel/tasks/main.yml diff --git a/test/integration/roles/cnos_portchannel/vars/main.yml b/test/legacy/roles/cnos_portchannel/vars/main.yml similarity index 100% rename from test/integration/roles/cnos_portchannel/vars/main.yml rename to test/legacy/roles/cnos_portchannel/vars/main.yml diff --git a/test/integration/roles/cnos_rollback/README.md b/test/legacy/roles/cnos_rollback/README.md similarity index 100% rename from test/integration/roles/cnos_rollback/README.md rename to test/legacy/roles/cnos_rollback/README.md diff --git a/test/integration/roles/cnos_rollback/cnos_rollback_sample_hosts b/test/legacy/roles/cnos_rollback/cnos_rollback_sample_hosts similarity index 100% rename from test/integration/roles/cnos_rollback/cnos_rollback_sample_hosts rename to test/legacy/roles/cnos_rollback/cnos_rollback_sample_hosts diff --git a/test/integration/roles/cnos_rollback/tasks/main.yml b/test/legacy/roles/cnos_rollback/tasks/main.yml similarity index 100% rename from test/integration/roles/cnos_rollback/tasks/main.yml rename to test/legacy/roles/cnos_rollback/tasks/main.yml diff --git a/test/integration/roles/cnos_rollback/vars/main.yml b/test/legacy/roles/cnos_rollback/vars/main.yml similarity index 100% rename from test/integration/roles/cnos_rollback/vars/main.yml rename to test/legacy/roles/cnos_rollback/vars/main.yml diff --git a/test/integration/roles/cnos_save/README.md b/test/legacy/roles/cnos_save/README.md similarity index 100% rename from test/integration/roles/cnos_save/README.md rename to test/legacy/roles/cnos_save/README.md diff --git a/test/integration/roles/cnos_save/cnos_save_sample_hosts b/test/legacy/roles/cnos_save/cnos_save_sample_hosts similarity index 100% rename from test/integration/roles/cnos_save/cnos_save_sample_hosts rename to test/legacy/roles/cnos_save/cnos_save_sample_hosts diff --git a/test/integration/roles/cnos_save/tasks/main.yml b/test/legacy/roles/cnos_save/tasks/main.yml similarity index 100% rename from test/integration/roles/cnos_save/tasks/main.yml rename to test/legacy/roles/cnos_save/tasks/main.yml diff --git a/test/integration/roles/cnos_save/vars/main.yml b/test/legacy/roles/cnos_save/vars/main.yml similarity index 100% rename from test/integration/roles/cnos_save/vars/main.yml rename to test/legacy/roles/cnos_save/vars/main.yml diff --git a/test/integration/roles/cnos_showrun/README.md b/test/legacy/roles/cnos_showrun/README.md similarity index 100% rename from test/integration/roles/cnos_showrun/README.md rename to test/legacy/roles/cnos_showrun/README.md diff --git a/test/integration/roles/cnos_showrun/cnos_showrun_sample_hosts b/test/legacy/roles/cnos_showrun/cnos_showrun_sample_hosts similarity index 100% rename from test/integration/roles/cnos_showrun/cnos_showrun_sample_hosts rename to test/legacy/roles/cnos_showrun/cnos_showrun_sample_hosts diff --git a/test/integration/roles/cnos_showrun/tasks/main.yml b/test/legacy/roles/cnos_showrun/tasks/main.yml similarity index 100% rename from test/integration/roles/cnos_showrun/tasks/main.yml rename to test/legacy/roles/cnos_showrun/tasks/main.yml diff --git a/test/integration/roles/cnos_showrun/vars/main.yml b/test/legacy/roles/cnos_showrun/vars/main.yml similarity index 100% rename from test/integration/roles/cnos_showrun/vars/main.yml rename to test/legacy/roles/cnos_showrun/vars/main.yml diff --git a/test/integration/roles/cnos_template/README.md b/test/legacy/roles/cnos_template/README.md similarity index 100% rename from test/integration/roles/cnos_template/README.md rename to test/legacy/roles/cnos_template/README.md diff --git a/test/integration/roles/cnos_template/cnos_template_sample_hosts b/test/legacy/roles/cnos_template/cnos_template_sample_hosts similarity index 100% rename from test/integration/roles/cnos_template/cnos_template_sample_hosts rename to test/legacy/roles/cnos_template/cnos_template_sample_hosts diff --git a/test/integration/roles/cnos_template/tasks/main.yml b/test/legacy/roles/cnos_template/tasks/main.yml similarity index 100% rename from test/integration/roles/cnos_template/tasks/main.yml rename to test/legacy/roles/cnos_template/tasks/main.yml diff --git a/test/integration/roles/cnos_template/templates/demo_template.j2 b/test/legacy/roles/cnos_template/templates/demo_template.j2 similarity index 100% rename from test/integration/roles/cnos_template/templates/demo_template.j2 rename to test/legacy/roles/cnos_template/templates/demo_template.j2 diff --git a/test/integration/roles/cnos_template/vars/main.yml b/test/legacy/roles/cnos_template/vars/main.yml similarity index 100% rename from test/integration/roles/cnos_template/vars/main.yml rename to test/legacy/roles/cnos_template/vars/main.yml diff --git a/test/integration/roles/cnos_vlag/README.md b/test/legacy/roles/cnos_vlag/README.md similarity index 100% rename from test/integration/roles/cnos_vlag/README.md rename to test/legacy/roles/cnos_vlag/README.md diff --git a/test/integration/roles/cnos_vlag/cnos_vlag_sample_hosts b/test/legacy/roles/cnos_vlag/cnos_vlag_sample_hosts similarity index 100% rename from test/integration/roles/cnos_vlag/cnos_vlag_sample_hosts rename to test/legacy/roles/cnos_vlag/cnos_vlag_sample_hosts diff --git a/test/integration/roles/cnos_vlag/tasks/main.yml b/test/legacy/roles/cnos_vlag/tasks/main.yml similarity index 100% rename from test/integration/roles/cnos_vlag/tasks/main.yml rename to test/legacy/roles/cnos_vlag/tasks/main.yml diff --git a/test/integration/roles/cnos_vlag/vars/main.yml b/test/legacy/roles/cnos_vlag/vars/main.yml similarity index 100% rename from test/integration/roles/cnos_vlag/vars/main.yml rename to test/legacy/roles/cnos_vlag/vars/main.yml diff --git a/test/integration/roles/cnos_vlan/README.md b/test/legacy/roles/cnos_vlan/README.md similarity index 100% rename from test/integration/roles/cnos_vlan/README.md rename to test/legacy/roles/cnos_vlan/README.md diff --git a/test/integration/roles/cnos_vlan/cnos_vlan_sample_hosts b/test/legacy/roles/cnos_vlan/cnos_vlan_sample_hosts similarity index 100% rename from test/integration/roles/cnos_vlan/cnos_vlan_sample_hosts rename to test/legacy/roles/cnos_vlan/cnos_vlan_sample_hosts diff --git a/test/integration/roles/cnos_vlan/tasks/main.yml b/test/legacy/roles/cnos_vlan/tasks/main.yml similarity index 100% rename from test/integration/roles/cnos_vlan/tasks/main.yml rename to test/legacy/roles/cnos_vlan/tasks/main.yml diff --git a/test/integration/roles/cnos_vlan/vars/main.yml b/test/legacy/roles/cnos_vlan/vars/main.yml similarity index 100% rename from test/integration/roles/cnos_vlan/vars/main.yml rename to test/legacy/roles/cnos_vlan/vars/main.yml diff --git a/test/integration/roles/ec2_elb_instance_setup/defaults/main.yml b/test/legacy/roles/ec2_elb_instance_setup/defaults/main.yml similarity index 100% rename from test/integration/roles/ec2_elb_instance_setup/defaults/main.yml rename to test/legacy/roles/ec2_elb_instance_setup/defaults/main.yml diff --git a/test/integration/roles/ec2_elb_instance_setup/files/index.html b/test/legacy/roles/ec2_elb_instance_setup/files/index.html similarity index 100% rename from test/integration/roles/ec2_elb_instance_setup/files/index.html rename to test/legacy/roles/ec2_elb_instance_setup/files/index.html diff --git a/test/integration/roles/ec2_elb_instance_setup/meta/main.yml b/test/legacy/roles/ec2_elb_instance_setup/meta/main.yml similarity index 100% rename from test/integration/roles/ec2_elb_instance_setup/meta/main.yml rename to test/legacy/roles/ec2_elb_instance_setup/meta/main.yml diff --git a/test/integration/roles/ec2_elb_instance_setup/tasks/main.yml b/test/legacy/roles/ec2_elb_instance_setup/tasks/main.yml similarity index 100% rename from test/integration/roles/ec2_elb_instance_setup/tasks/main.yml rename to test/legacy/roles/ec2_elb_instance_setup/tasks/main.yml diff --git a/test/integration/roles/ec2_provision_instances/defaults/main.yml b/test/legacy/roles/ec2_provision_instances/defaults/main.yml similarity index 100% rename from test/integration/roles/ec2_provision_instances/defaults/main.yml rename to test/legacy/roles/ec2_provision_instances/defaults/main.yml diff --git a/test/integration/roles/ec2_provision_instances/meta/main.yml b/test/legacy/roles/ec2_provision_instances/meta/main.yml similarity index 100% rename from test/integration/roles/ec2_provision_instances/meta/main.yml rename to test/legacy/roles/ec2_provision_instances/meta/main.yml diff --git a/test/integration/roles/ec2_provision_instances/tasks/main.yml b/test/legacy/roles/ec2_provision_instances/tasks/main.yml similarity index 100% rename from test/integration/roles/ec2_provision_instances/tasks/main.yml rename to test/legacy/roles/ec2_provision_instances/tasks/main.yml diff --git a/test/integration/roles/netscaler_cs_action/defaults/main.yaml b/test/legacy/roles/netscaler_cs_action/defaults/main.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_action/defaults/main.yaml rename to test/legacy/roles/netscaler_cs_action/defaults/main.yaml diff --git a/test/integration/roles/netscaler_cs_action/sample_inventory b/test/legacy/roles/netscaler_cs_action/sample_inventory similarity index 100% rename from test/integration/roles/netscaler_cs_action/sample_inventory rename to test/legacy/roles/netscaler_cs_action/sample_inventory diff --git a/test/integration/roles/netscaler_cs_action/tasks/main.yaml b/test/legacy/roles/netscaler_cs_action/tasks/main.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_action/tasks/main.yaml rename to test/legacy/roles/netscaler_cs_action/tasks/main.yaml diff --git a/test/integration/roles/netscaler_cs_action/tasks/nitro.yaml b/test/legacy/roles/netscaler_cs_action/tasks/nitro.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_action/tasks/nitro.yaml rename to test/legacy/roles/netscaler_cs_action/tasks/nitro.yaml diff --git a/test/integration/roles/netscaler_cs_action/tasks/testbed.yaml b/test/legacy/roles/netscaler_cs_action/tasks/testbed.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_action/tasks/testbed.yaml rename to test/legacy/roles/netscaler_cs_action/tasks/testbed.yaml diff --git a/test/integration/roles/netscaler_cs_action/tests/nitro/target_expression.yaml b/test/legacy/roles/netscaler_cs_action/tests/nitro/target_expression.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_action/tests/nitro/target_expression.yaml rename to test/legacy/roles/netscaler_cs_action/tests/nitro/target_expression.yaml diff --git a/test/integration/roles/netscaler_cs_action/tests/nitro/target_expression/remove.yaml b/test/legacy/roles/netscaler_cs_action/tests/nitro/target_expression/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_action/tests/nitro/target_expression/remove.yaml rename to test/legacy/roles/netscaler_cs_action/tests/nitro/target_expression/remove.yaml diff --git a/test/integration/roles/netscaler_cs_action/tests/nitro/target_expression/setup.yaml b/test/legacy/roles/netscaler_cs_action/tests/nitro/target_expression/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_action/tests/nitro/target_expression/setup.yaml rename to test/legacy/roles/netscaler_cs_action/tests/nitro/target_expression/setup.yaml diff --git a/test/integration/roles/netscaler_cs_action/tests/nitro/target_lb_vserver.yaml b/test/legacy/roles/netscaler_cs_action/tests/nitro/target_lb_vserver.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_action/tests/nitro/target_lb_vserver.yaml rename to test/legacy/roles/netscaler_cs_action/tests/nitro/target_lb_vserver.yaml diff --git a/test/integration/roles/netscaler_cs_action/tests/nitro/target_lb_vserver/remove.yaml b/test/legacy/roles/netscaler_cs_action/tests/nitro/target_lb_vserver/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_action/tests/nitro/target_lb_vserver/remove.yaml rename to test/legacy/roles/netscaler_cs_action/tests/nitro/target_lb_vserver/remove.yaml diff --git a/test/integration/roles/netscaler_cs_action/tests/nitro/target_lb_vserver/setup.yaml b/test/legacy/roles/netscaler_cs_action/tests/nitro/target_lb_vserver/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_action/tests/nitro/target_lb_vserver/setup.yaml rename to test/legacy/roles/netscaler_cs_action/tests/nitro/target_lb_vserver/setup.yaml diff --git a/test/integration/roles/netscaler_cs_action/tests/nitro/target_lb_vserver/update.yaml b/test/legacy/roles/netscaler_cs_action/tests/nitro/target_lb_vserver/update.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_action/tests/nitro/target_lb_vserver/update.yaml rename to test/legacy/roles/netscaler_cs_action/tests/nitro/target_lb_vserver/update.yaml diff --git a/test/integration/roles/netscaler_cs_policy/defaults/main.yaml b/test/legacy/roles/netscaler_cs_policy/defaults/main.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_policy/defaults/main.yaml rename to test/legacy/roles/netscaler_cs_policy/defaults/main.yaml diff --git a/test/integration/roles/netscaler_cs_policy/sample_inventory b/test/legacy/roles/netscaler_cs_policy/sample_inventory similarity index 100% rename from test/integration/roles/netscaler_cs_policy/sample_inventory rename to test/legacy/roles/netscaler_cs_policy/sample_inventory diff --git a/test/integration/roles/netscaler_cs_policy/tasks/main.yaml b/test/legacy/roles/netscaler_cs_policy/tasks/main.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_policy/tasks/main.yaml rename to test/legacy/roles/netscaler_cs_policy/tasks/main.yaml diff --git a/test/integration/roles/netscaler_cs_policy/tasks/nitro.yaml b/test/legacy/roles/netscaler_cs_policy/tasks/nitro.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_policy/tasks/nitro.yaml rename to test/legacy/roles/netscaler_cs_policy/tasks/nitro.yaml diff --git a/test/integration/roles/netscaler_cs_policy/tasks/testbed.yaml b/test/legacy/roles/netscaler_cs_policy/tasks/testbed.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_policy/tasks/testbed.yaml rename to test/legacy/roles/netscaler_cs_policy/tasks/testbed.yaml diff --git a/test/integration/roles/netscaler_cs_policy/tests/nitro/policy_domain.yaml b/test/legacy/roles/netscaler_cs_policy/tests/nitro/policy_domain.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_policy/tests/nitro/policy_domain.yaml rename to test/legacy/roles/netscaler_cs_policy/tests/nitro/policy_domain.yaml diff --git a/test/integration/roles/netscaler_cs_policy/tests/nitro/policy_domain/remove.yaml b/test/legacy/roles/netscaler_cs_policy/tests/nitro/policy_domain/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_policy/tests/nitro/policy_domain/remove.yaml rename to test/legacy/roles/netscaler_cs_policy/tests/nitro/policy_domain/remove.yaml diff --git a/test/integration/roles/netscaler_cs_policy/tests/nitro/policy_domain/setup.yaml b/test/legacy/roles/netscaler_cs_policy/tests/nitro/policy_domain/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_policy/tests/nitro/policy_domain/setup.yaml rename to test/legacy/roles/netscaler_cs_policy/tests/nitro/policy_domain/setup.yaml diff --git a/test/integration/roles/netscaler_cs_policy/tests/nitro/policy_domain/update.yaml b/test/legacy/roles/netscaler_cs_policy/tests/nitro/policy_domain/update.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_policy/tests/nitro/policy_domain/update.yaml rename to test/legacy/roles/netscaler_cs_policy/tests/nitro/policy_domain/update.yaml diff --git a/test/integration/roles/netscaler_cs_policy/tests/nitro/policy_rule.yaml b/test/legacy/roles/netscaler_cs_policy/tests/nitro/policy_rule.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_policy/tests/nitro/policy_rule.yaml rename to test/legacy/roles/netscaler_cs_policy/tests/nitro/policy_rule.yaml diff --git a/test/integration/roles/netscaler_cs_policy/tests/nitro/policy_rule/remove.yaml b/test/legacy/roles/netscaler_cs_policy/tests/nitro/policy_rule/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_policy/tests/nitro/policy_rule/remove.yaml rename to test/legacy/roles/netscaler_cs_policy/tests/nitro/policy_rule/remove.yaml diff --git a/test/integration/roles/netscaler_cs_policy/tests/nitro/policy_rule/setup.yaml b/test/legacy/roles/netscaler_cs_policy/tests/nitro/policy_rule/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_policy/tests/nitro/policy_rule/setup.yaml rename to test/legacy/roles/netscaler_cs_policy/tests/nitro/policy_rule/setup.yaml diff --git a/test/integration/roles/netscaler_cs_policy/tests/nitro/policy_url.yaml b/test/legacy/roles/netscaler_cs_policy/tests/nitro/policy_url.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_policy/tests/nitro/policy_url.yaml rename to test/legacy/roles/netscaler_cs_policy/tests/nitro/policy_url.yaml diff --git a/test/integration/roles/netscaler_cs_policy/tests/nitro/policy_url/remove.yaml b/test/legacy/roles/netscaler_cs_policy/tests/nitro/policy_url/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_policy/tests/nitro/policy_url/remove.yaml rename to test/legacy/roles/netscaler_cs_policy/tests/nitro/policy_url/remove.yaml diff --git a/test/integration/roles/netscaler_cs_policy/tests/nitro/policy_url/setup.yaml b/test/legacy/roles/netscaler_cs_policy/tests/nitro/policy_url/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_policy/tests/nitro/policy_url/setup.yaml rename to test/legacy/roles/netscaler_cs_policy/tests/nitro/policy_url/setup.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/defaults/main.yaml b/test/legacy/roles/netscaler_cs_vserver/defaults/main.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/defaults/main.yaml rename to test/legacy/roles/netscaler_cs_vserver/defaults/main.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/sample_inventory b/test/legacy/roles/netscaler_cs_vserver/sample_inventory similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/sample_inventory rename to test/legacy/roles/netscaler_cs_vserver/sample_inventory diff --git a/test/integration/roles/netscaler_cs_vserver/tasks/main.yaml b/test/legacy/roles/netscaler_cs_vserver/tasks/main.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tasks/main.yaml rename to test/legacy/roles/netscaler_cs_vserver/tasks/main.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tasks/nitro.yaml b/test/legacy/roles/netscaler_cs_vserver/tasks/nitro.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tasks/nitro.yaml rename to test/legacy/roles/netscaler_cs_vserver/tasks/nitro.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tasks/testbed.yaml b/test/legacy/roles/netscaler_cs_vserver/tasks/testbed.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tasks/testbed.yaml rename to test/legacy/roles/netscaler_cs_vserver/tasks/testbed.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_dns.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_dns.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_dns.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_dns.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_dns/remove.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_dns/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_dns/remove.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_dns/remove.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_dns/setup.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_dns/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_dns/setup.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_dns/setup.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_flap_disabled.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_flap_disabled.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_flap_disabled.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_flap_disabled.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_flap_disabled/remove.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_flap_disabled/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_flap_disabled/remove.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_flap_disabled/remove.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_flap_disabled/setup.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_flap_disabled/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_flap_disabled/setup.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_flap_disabled/setup.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_http.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_http.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_http.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_http.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_http/remove.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_http/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_http/remove.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_http/remove.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_http/setup.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_http/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_http/setup.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_http/setup.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_http/update.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_http/update.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_http/update.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_http/update.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_ippattern.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_ippattern.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_ippattern.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_ippattern.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_ippattern/remove.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_ippattern/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_ippattern/remove.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_ippattern/remove.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_ippattern/setup.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_ippattern/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_ippattern/setup.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_ippattern/setup.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_mssql.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_mssql.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_mssql.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_mssql.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_mssql/remove.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_mssql/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_mssql/remove.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_mssql/remove.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_mssql/setup.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_mssql/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_mssql/setup.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_mssql/setup.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_mysql.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_mysql.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_mysql.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_mysql.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_mysql/remove.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_mysql/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_mysql/remove.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_mysql/remove.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_mysql/setup.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_mysql/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_mysql/setup.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_mysql/setup.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_oracle.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_oracle.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_oracle.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_oracle.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_oracle/remove.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_oracle/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_oracle/remove.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_oracle/remove.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_oracle/setup.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_oracle/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_oracle/setup.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_oracle/setup.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_policies.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_policies.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_policies.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_policies.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_policies/remove.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_policies/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_policies/remove.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_policies/remove.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_policies/setup.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_policies/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_policies/setup.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_policies/setup.yaml diff --git a/test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_policies/update.yaml b/test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_policies/update.yaml similarity index 100% rename from test/integration/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_policies/update.yaml rename to test/legacy/roles/netscaler_cs_vserver/tests/nitro/cs_vserver_policies/update.yaml diff --git a/test/integration/roles/netscaler_gslb_service/defaults/main.yaml b/test/legacy/roles/netscaler_gslb_service/defaults/main.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_service/defaults/main.yaml rename to test/legacy/roles/netscaler_gslb_service/defaults/main.yaml diff --git a/test/integration/roles/netscaler_gslb_service/tasks/main.yaml b/test/legacy/roles/netscaler_gslb_service/tasks/main.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_service/tasks/main.yaml rename to test/legacy/roles/netscaler_gslb_service/tasks/main.yaml diff --git a/test/integration/roles/netscaler_gslb_service/tasks/nitro.yaml b/test/legacy/roles/netscaler_gslb_service/tasks/nitro.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_service/tasks/nitro.yaml rename to test/legacy/roles/netscaler_gslb_service/tasks/nitro.yaml diff --git a/test/integration/roles/netscaler_gslb_service/tasks/testbed.yaml b/test/legacy/roles/netscaler_gslb_service/tasks/testbed.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_service/tasks/testbed.yaml rename to test/legacy/roles/netscaler_gslb_service/tasks/testbed.yaml diff --git a/test/integration/roles/netscaler_gslb_service/tests/nitro/cname/remove.yaml b/test/legacy/roles/netscaler_gslb_service/tests/nitro/cname/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_service/tests/nitro/cname/remove.yaml rename to test/legacy/roles/netscaler_gslb_service/tests/nitro/cname/remove.yaml diff --git a/test/integration/roles/netscaler_gslb_service/tests/nitro/cname/setup.yaml b/test/legacy/roles/netscaler_gslb_service/tests/nitro/cname/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_service/tests/nitro/cname/setup.yaml rename to test/legacy/roles/netscaler_gslb_service/tests/nitro/cname/setup.yaml diff --git a/test/integration/roles/netscaler_gslb_service/tests/nitro/cname/update.yaml b/test/legacy/roles/netscaler_gslb_service/tests/nitro/cname/update.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_service/tests/nitro/cname/update.yaml rename to test/legacy/roles/netscaler_gslb_service/tests/nitro/cname/update.yaml diff --git a/test/integration/roles/netscaler_gslb_service/tests/nitro/http.yaml b/test/legacy/roles/netscaler_gslb_service/tests/nitro/http.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_service/tests/nitro/http.yaml rename to test/legacy/roles/netscaler_gslb_service/tests/nitro/http.yaml diff --git a/test/integration/roles/netscaler_gslb_service/tests/nitro/http/remove.yaml b/test/legacy/roles/netscaler_gslb_service/tests/nitro/http/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_service/tests/nitro/http/remove.yaml rename to test/legacy/roles/netscaler_gslb_service/tests/nitro/http/remove.yaml diff --git a/test/integration/roles/netscaler_gslb_service/tests/nitro/http/setup.yaml b/test/legacy/roles/netscaler_gslb_service/tests/nitro/http/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_service/tests/nitro/http/setup.yaml rename to test/legacy/roles/netscaler_gslb_service/tests/nitro/http/setup.yaml diff --git a/test/integration/roles/netscaler_gslb_service/tests/nitro/http/update.yaml b/test/legacy/roles/netscaler_gslb_service/tests/nitro/http/update.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_service/tests/nitro/http/update.yaml rename to test/legacy/roles/netscaler_gslb_service/tests/nitro/http/update.yaml diff --git a/test/integration/roles/netscaler_gslb_service/tests/nitro/servername/remove.yaml b/test/legacy/roles/netscaler_gslb_service/tests/nitro/servername/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_service/tests/nitro/servername/remove.yaml rename to test/legacy/roles/netscaler_gslb_service/tests/nitro/servername/remove.yaml diff --git a/test/integration/roles/netscaler_gslb_service/tests/nitro/servername/setup.yaml b/test/legacy/roles/netscaler_gslb_service/tests/nitro/servername/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_service/tests/nitro/servername/setup.yaml rename to test/legacy/roles/netscaler_gslb_service/tests/nitro/servername/setup.yaml diff --git a/test/integration/roles/netscaler_gslb_service/tests/nitro/servername/update.yaml b/test/legacy/roles/netscaler_gslb_service/tests/nitro/servername/update.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_service/tests/nitro/servername/update.yaml rename to test/legacy/roles/netscaler_gslb_service/tests/nitro/servername/update.yaml diff --git a/test/integration/roles/netscaler_gslb_site/defaults/main.yaml b/test/legacy/roles/netscaler_gslb_site/defaults/main.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_site/defaults/main.yaml rename to test/legacy/roles/netscaler_gslb_site/defaults/main.yaml diff --git a/test/integration/roles/netscaler_gslb_site/tasks/main.yaml b/test/legacy/roles/netscaler_gslb_site/tasks/main.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_site/tasks/main.yaml rename to test/legacy/roles/netscaler_gslb_site/tasks/main.yaml diff --git a/test/integration/roles/netscaler_gslb_site/tasks/nitro.yaml b/test/legacy/roles/netscaler_gslb_site/tasks/nitro.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_site/tasks/nitro.yaml rename to test/legacy/roles/netscaler_gslb_site/tasks/nitro.yaml diff --git a/test/integration/roles/netscaler_gslb_site/tests/nitro/gslb_site.yaml b/test/legacy/roles/netscaler_gslb_site/tests/nitro/gslb_site.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_site/tests/nitro/gslb_site.yaml rename to test/legacy/roles/netscaler_gslb_site/tests/nitro/gslb_site.yaml diff --git a/test/integration/roles/netscaler_gslb_site/tests/nitro/gslb_site/remove.yaml b/test/legacy/roles/netscaler_gslb_site/tests/nitro/gslb_site/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_site/tests/nitro/gslb_site/remove.yaml rename to test/legacy/roles/netscaler_gslb_site/tests/nitro/gslb_site/remove.yaml diff --git a/test/integration/roles/netscaler_gslb_site/tests/nitro/gslb_site/setup.yaml b/test/legacy/roles/netscaler_gslb_site/tests/nitro/gslb_site/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_site/tests/nitro/gslb_site/setup.yaml rename to test/legacy/roles/netscaler_gslb_site/tests/nitro/gslb_site/setup.yaml diff --git a/test/integration/roles/netscaler_gslb_site/tests/nitro/gslb_site/update.yaml b/test/legacy/roles/netscaler_gslb_site/tests/nitro/gslb_site/update.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_site/tests/nitro/gslb_site/update.yaml rename to test/legacy/roles/netscaler_gslb_site/tests/nitro/gslb_site/update.yaml diff --git a/test/integration/roles/netscaler_gslb_vserver/defaults/main.yaml b/test/legacy/roles/netscaler_gslb_vserver/defaults/main.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_vserver/defaults/main.yaml rename to test/legacy/roles/netscaler_gslb_vserver/defaults/main.yaml diff --git a/test/integration/roles/netscaler_gslb_vserver/tasks/main.yaml b/test/legacy/roles/netscaler_gslb_vserver/tasks/main.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_vserver/tasks/main.yaml rename to test/legacy/roles/netscaler_gslb_vserver/tasks/main.yaml diff --git a/test/integration/roles/netscaler_gslb_vserver/tasks/nitro.yaml b/test/legacy/roles/netscaler_gslb_vserver/tasks/nitro.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_vserver/tasks/nitro.yaml rename to test/legacy/roles/netscaler_gslb_vserver/tasks/nitro.yaml diff --git a/test/integration/roles/netscaler_gslb_vserver/tasks/testbed.yaml b/test/legacy/roles/netscaler_gslb_vserver/tasks/testbed.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_vserver/tasks/testbed.yaml rename to test/legacy/roles/netscaler_gslb_vserver/tasks/testbed.yaml diff --git a/test/integration/roles/netscaler_gslb_vserver/tests/nitro/flap_disabled.yaml b/test/legacy/roles/netscaler_gslb_vserver/tests/nitro/flap_disabled.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_vserver/tests/nitro/flap_disabled.yaml rename to test/legacy/roles/netscaler_gslb_vserver/tests/nitro/flap_disabled.yaml diff --git a/test/integration/roles/netscaler_gslb_vserver/tests/nitro/flap_disabled/remove.yaml b/test/legacy/roles/netscaler_gslb_vserver/tests/nitro/flap_disabled/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_vserver/tests/nitro/flap_disabled/remove.yaml rename to test/legacy/roles/netscaler_gslb_vserver/tests/nitro/flap_disabled/remove.yaml diff --git a/test/integration/roles/netscaler_gslb_vserver/tests/nitro/flap_disabled/setup.yaml b/test/legacy/roles/netscaler_gslb_vserver/tests/nitro/flap_disabled/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_vserver/tests/nitro/flap_disabled/setup.yaml rename to test/legacy/roles/netscaler_gslb_vserver/tests/nitro/flap_disabled/setup.yaml diff --git a/test/integration/roles/netscaler_gslb_vserver/tests/nitro/http.yaml b/test/legacy/roles/netscaler_gslb_vserver/tests/nitro/http.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_vserver/tests/nitro/http.yaml rename to test/legacy/roles/netscaler_gslb_vserver/tests/nitro/http.yaml diff --git a/test/integration/roles/netscaler_gslb_vserver/tests/nitro/http/remove.yaml b/test/legacy/roles/netscaler_gslb_vserver/tests/nitro/http/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_vserver/tests/nitro/http/remove.yaml rename to test/legacy/roles/netscaler_gslb_vserver/tests/nitro/http/remove.yaml diff --git a/test/integration/roles/netscaler_gslb_vserver/tests/nitro/http/setup.yaml b/test/legacy/roles/netscaler_gslb_vserver/tests/nitro/http/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_vserver/tests/nitro/http/setup.yaml rename to test/legacy/roles/netscaler_gslb_vserver/tests/nitro/http/setup.yaml diff --git a/test/integration/roles/netscaler_gslb_vserver/tests/nitro/http/update.yaml b/test/legacy/roles/netscaler_gslb_vserver/tests/nitro/http/update.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_vserver/tests/nitro/http/update.yaml rename to test/legacy/roles/netscaler_gslb_vserver/tests/nitro/http/update.yaml diff --git a/test/integration/roles/netscaler_gslb_vserver/tests/nitro/http/update_domainbinding.yaml b/test/legacy/roles/netscaler_gslb_vserver/tests/nitro/http/update_domainbinding.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_vserver/tests/nitro/http/update_domainbinding.yaml rename to test/legacy/roles/netscaler_gslb_vserver/tests/nitro/http/update_domainbinding.yaml diff --git a/test/integration/roles/netscaler_gslb_vserver/tests/nitro/http/update_gslbservice_binding.yaml b/test/legacy/roles/netscaler_gslb_vserver/tests/nitro/http/update_gslbservice_binding.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_vserver/tests/nitro/http/update_gslbservice_binding.yaml rename to test/legacy/roles/netscaler_gslb_vserver/tests/nitro/http/update_gslbservice_binding.yaml diff --git a/test/integration/roles/netscaler_gslb_vserver/tests/nitro/sourceiphash.yaml b/test/legacy/roles/netscaler_gslb_vserver/tests/nitro/sourceiphash.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_vserver/tests/nitro/sourceiphash.yaml rename to test/legacy/roles/netscaler_gslb_vserver/tests/nitro/sourceiphash.yaml diff --git a/test/integration/roles/netscaler_gslb_vserver/tests/nitro/sourceiphash/remove.yaml b/test/legacy/roles/netscaler_gslb_vserver/tests/nitro/sourceiphash/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_vserver/tests/nitro/sourceiphash/remove.yaml rename to test/legacy/roles/netscaler_gslb_vserver/tests/nitro/sourceiphash/remove.yaml diff --git a/test/integration/roles/netscaler_gslb_vserver/tests/nitro/sourceiphash/setup.yaml b/test/legacy/roles/netscaler_gslb_vserver/tests/nitro/sourceiphash/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_gslb_vserver/tests/nitro/sourceiphash/setup.yaml rename to test/legacy/roles/netscaler_gslb_vserver/tests/nitro/sourceiphash/setup.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/defaults/main.yaml b/test/legacy/roles/netscaler_lb_monitor/defaults/main.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/defaults/main.yaml rename to test/legacy/roles/netscaler_lb_monitor/defaults/main.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/sample_inventory b/test/legacy/roles/netscaler_lb_monitor/sample_inventory similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/sample_inventory rename to test/legacy/roles/netscaler_lb_monitor/sample_inventory diff --git a/test/integration/roles/netscaler_lb_monitor/tasks/main.yaml b/test/legacy/roles/netscaler_lb_monitor/tasks/main.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tasks/main.yaml rename to test/legacy/roles/netscaler_lb_monitor/tasks/main.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tasks/nitro.yaml b/test/legacy/roles/netscaler_lb_monitor/tasks/nitro.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tasks/nitro.yaml rename to test/legacy/roles/netscaler_lb_monitor/tasks/nitro.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_aac.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_aac.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_aac.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_aac.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_aac/remove.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_aac/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_aac/remove.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_aac/remove.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_aac/setup.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_aac/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_aac/setup.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_aac/setup.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_ag.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_ag.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_ag.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_ag.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_ag/remove.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_ag/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_ag/remove.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_ag/remove.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_ag/setup.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_ag/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_ag/setup.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_ag/setup.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_web_interface.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_web_interface.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_web_interface.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_web_interface.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_web_interface/remove.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_web_interface/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_web_interface/remove.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_web_interface/remove.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_web_interface/setup.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_web_interface/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_web_interface/setup.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_web_interface/setup.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_xd_doc.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_xd_doc.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_xd_doc.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_xd_doc.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_xd_doc/remove.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_xd_doc/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_xd_doc/remove.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_xd_doc/remove.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_xd_doc/setup.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_xd_doc/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_xd_doc/setup.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_xd_doc/setup.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_xml_service.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_xml_service.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_xml_service.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_xml_service.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_xml_service/remove.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_xml_service/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_xml_service/remove.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_xml_service/remove.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_xml_service/setup.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_xml_service/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_xml_service/setup.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_citrix_xml_service/setup.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_diameter.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_diameter.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_diameter.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_diameter.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_diameter/remove.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_diameter/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_diameter/remove.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_diameter/remove.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_diameter/setup.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_diameter/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_diameter/setup.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_diameter/setup.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_dns.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_dns.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_dns.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_dns.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_dns/remove.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_dns/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_dns/remove.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_dns/remove.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_dns/setup.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_dns/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_dns/setup.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_dns/setup.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_ftp.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_ftp.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_ftp.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_ftp.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_ftp/remove.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_ftp/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_ftp/remove.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_ftp/remove.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_ftp/setup.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_ftp/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_ftp/setup.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_ftp/setup.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http/remove.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http/remove.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http/remove.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http/setup.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http/setup.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http/setup.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_ecv.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_ecv.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_ecv.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_ecv.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_ecv/remove.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_ecv/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_ecv/remove.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_ecv/remove.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_ecv/setup.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_ecv/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_ecv/setup.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_ecv/setup.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_inline.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_inline.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_inline.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_inline.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_inline/remove.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_inline/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_inline/remove.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_inline/remove.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_inline/setup.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_inline/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_inline/setup.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_inline/setup.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_inline/update.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_inline/update.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_inline/update.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_http_inline/update.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_ldap.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_ldap.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_ldap.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_ldap.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_ldap/remove.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_ldap/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_ldap/remove.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_ldap/remove.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_ldap/setup.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_ldap/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_ldap/setup.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_ldap/setup.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_load.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_load.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_load.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_load.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_load/remove.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_load/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_load/remove.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_load/remove.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_load/setup.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_load/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_load/setup.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_load/setup.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_nntp.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_nntp.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_nntp.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_nntp.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_nntp/remove.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_nntp/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_nntp/remove.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_nntp/remove.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_nntp/setup.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_nntp/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_nntp/setup.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_nntp/setup.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_radius.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_radius.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_radius.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_radius.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_radius/remove.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_radius/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_radius/remove.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_radius/remove.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_radius/setup.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_radius/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_radius/setup.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_radius/setup.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_radius_accounting.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_radius_accounting.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_radius_accounting.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_radius_accounting.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_radius_accounting/remove.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_radius_accounting/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_radius_accounting/remove.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_radius_accounting/remove.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_radius_accounting/setup.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_radius_accounting/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_radius_accounting/setup.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_radius_accounting/setup.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_rtsp.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_rtsp.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_rtsp.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_rtsp.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_rtsp/remove.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_rtsp/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_rtsp/remove.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_rtsp/remove.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_rtsp/setup.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_rtsp/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_rtsp/setup.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_rtsp/setup.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_sip.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_sip.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_sip.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_sip.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_sip/remove.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_sip/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_sip/remove.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_sip/remove.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_sip/setup.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_sip/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_sip/setup.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_sip/setup.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_snmp.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_snmp.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_snmp.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_snmp.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_snmp/remove.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_snmp/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_snmp/remove.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_snmp/remove.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_snmp/setup.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_snmp/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_snmp/setup.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_snmp/setup.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_storefront.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_storefront.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_storefront.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_storefront.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_storefront/remove.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_storefront/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_storefront/remove.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_storefront/remove.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_storefront/setup.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_storefront/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_storefront/setup.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_storefront/setup.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_tcp.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_tcp.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_tcp.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_tcp.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_tcp/remove.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_tcp/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_tcp/remove.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_tcp/remove.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_tcp/setup.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_tcp/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_tcp/setup.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_tcp/setup.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_user.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_user.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_user.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_user.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_user/remove.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_user/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_user/remove.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_user/remove.yaml diff --git a/test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_user/setup.yaml b/test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_user/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_user/setup.yaml rename to test/legacy/roles/netscaler_lb_monitor/tests/nitro/lb_monitor_user/setup.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/defaults/main.yaml b/test/legacy/roles/netscaler_lb_vserver/defaults/main.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/defaults/main.yaml rename to test/legacy/roles/netscaler_lb_vserver/defaults/main.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/sample_inventory b/test/legacy/roles/netscaler_lb_vserver/sample_inventory similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/sample_inventory rename to test/legacy/roles/netscaler_lb_vserver/sample_inventory diff --git a/test/integration/roles/netscaler_lb_vserver/tasks/main.yaml b/test/legacy/roles/netscaler_lb_vserver/tasks/main.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tasks/main.yaml rename to test/legacy/roles/netscaler_lb_vserver/tasks/main.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tasks/nitro.yaml b/test/legacy/roles/netscaler_lb_vserver/tasks/nitro.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tasks/nitro.yaml rename to test/legacy/roles/netscaler_lb_vserver/tasks/nitro.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tasks/testbed_setup.yaml b/test/legacy/roles/netscaler_lb_vserver/tasks/testbed_setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tasks/testbed_setup.yaml rename to test/legacy/roles/netscaler_lb_vserver/tasks/testbed_setup.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_any.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_any.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_any.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_any.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_any/remove.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_any/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_any/remove.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_any/remove.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_any/setup.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_any/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_any/setup.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_any/setup.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_dns.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_dns.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_dns.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_dns.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_dns/remove.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_dns/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_dns/remove.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_dns/remove.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_dns/setup.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_dns/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_dns/setup.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_dns/setup.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_flap_disabled.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_flap_disabled.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_flap_disabled.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_flap_disabled.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_flap_disabled/remove.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_flap_disabled/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_flap_disabled/remove.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_flap_disabled/remove.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_flap_disabled/setup.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_flap_disabled/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_flap_disabled/setup.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_flap_disabled/setup.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_http.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_http.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_http.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_http.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_http/remove.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_http/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_http/remove.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_http/remove.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_http/setup.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_http/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_http/setup.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_http/setup.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_http/update.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_http/update.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_http/update.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_http/update.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_iphash.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_iphash.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_iphash.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_iphash.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_iphash/remove.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_iphash/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_iphash/remove.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_iphash/remove.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_iphash/setup.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_iphash/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_iphash/setup.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_iphash/setup.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_ippattern.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_ippattern.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_ippattern.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_ippattern.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_ippattern/remove.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_ippattern/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_ippattern/remove.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_ippattern/remove.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_ippattern/setup.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_ippattern/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_ippattern/setup.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_ippattern/setup.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_mssql.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_mssql.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_mssql.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_mssql.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_mssql/remove.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_mssql/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_mssql/remove.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_mssql/remove.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_mssql/setup.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_mssql/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_mssql/setup.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_mssql/setup.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_mysql.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_mysql.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_mysql.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_mysql.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_mysql/remove.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_mysql/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_mysql/remove.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_mysql/remove.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_mysql/setup.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_mysql/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_mysql/setup.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_mysql/setup.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_oracle.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_oracle.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_oracle.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_oracle.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_oracle/remove.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_oracle/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_oracle/remove.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_oracle/remove.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_oracle/setup.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_oracle/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_oracle/setup.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_oracle/setup.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_push.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_push.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_push.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_push.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_push/remove.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_push/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_push/remove.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_push/remove.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_push/setup.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_push/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_push/setup.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_push/setup.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_rtspnat.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_rtspnat.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_rtspnat.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_rtspnat.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_rtspnat/remove.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_rtspnat/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_rtspnat/remove.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_rtspnat/remove.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_rtspnat/setup.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_rtspnat/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_rtspnat/setup.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_rtspnat/setup.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_servicegroup.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_servicegroup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_servicegroup.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_servicegroup.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_servicegroup/remove.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_servicegroup/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_servicegroup/remove.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_servicegroup/remove.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_servicegroup/setup.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_servicegroup/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_servicegroup/setup.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_servicegroup/setup.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_servicegroup/update.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_servicegroup/update.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_servicegroup/update.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_servicegroup/update.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_servicegroup/update_service.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_servicegroup/update_service.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_servicegroup/update_service.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_servicegroup/update_service.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_tcp.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_tcp.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_tcp.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_tcp.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_tcp/remove.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_tcp/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_tcp/remove.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_tcp/remove.yaml diff --git a/test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_tcp/setup.yaml b/test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_tcp/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_tcp/setup.yaml rename to test/legacy/roles/netscaler_lb_vserver/tests/nitro/lb_vserver_tcp/setup.yaml diff --git a/test/integration/roles/netscaler_save_config/defaults/main.yaml b/test/legacy/roles/netscaler_save_config/defaults/main.yaml similarity index 100% rename from test/integration/roles/netscaler_save_config/defaults/main.yaml rename to test/legacy/roles/netscaler_save_config/defaults/main.yaml diff --git a/test/integration/roles/netscaler_save_config/sample_inventory b/test/legacy/roles/netscaler_save_config/sample_inventory similarity index 100% rename from test/integration/roles/netscaler_save_config/sample_inventory rename to test/legacy/roles/netscaler_save_config/sample_inventory diff --git a/test/integration/roles/netscaler_save_config/tasks/main.yaml b/test/legacy/roles/netscaler_save_config/tasks/main.yaml similarity index 100% rename from test/integration/roles/netscaler_save_config/tasks/main.yaml rename to test/legacy/roles/netscaler_save_config/tasks/main.yaml diff --git a/test/integration/roles/netscaler_save_config/tasks/nitro.yaml b/test/legacy/roles/netscaler_save_config/tasks/nitro.yaml similarity index 100% rename from test/integration/roles/netscaler_save_config/tasks/nitro.yaml rename to test/legacy/roles/netscaler_save_config/tasks/nitro.yaml diff --git a/test/integration/roles/netscaler_save_config/tests/nitro/save_config.yaml b/test/legacy/roles/netscaler_save_config/tests/nitro/save_config.yaml similarity index 100% rename from test/integration/roles/netscaler_save_config/tests/nitro/save_config.yaml rename to test/legacy/roles/netscaler_save_config/tests/nitro/save_config.yaml diff --git a/test/integration/roles/netscaler_server/defaults/main.yaml b/test/legacy/roles/netscaler_server/defaults/main.yaml similarity index 100% rename from test/integration/roles/netscaler_server/defaults/main.yaml rename to test/legacy/roles/netscaler_server/defaults/main.yaml diff --git a/test/integration/roles/netscaler_server/sample_inventory b/test/legacy/roles/netscaler_server/sample_inventory similarity index 100% rename from test/integration/roles/netscaler_server/sample_inventory rename to test/legacy/roles/netscaler_server/sample_inventory diff --git a/test/integration/roles/netscaler_server/tasks/main.yaml b/test/legacy/roles/netscaler_server/tasks/main.yaml similarity index 100% rename from test/integration/roles/netscaler_server/tasks/main.yaml rename to test/legacy/roles/netscaler_server/tasks/main.yaml diff --git a/test/integration/roles/netscaler_server/tasks/nitro.yaml b/test/legacy/roles/netscaler_server/tasks/nitro.yaml similarity index 100% rename from test/integration/roles/netscaler_server/tasks/nitro.yaml rename to test/legacy/roles/netscaler_server/tasks/nitro.yaml diff --git a/test/integration/roles/netscaler_server/tests/nitro/server.yaml b/test/legacy/roles/netscaler_server/tests/nitro/server.yaml similarity index 100% rename from test/integration/roles/netscaler_server/tests/nitro/server.yaml rename to test/legacy/roles/netscaler_server/tests/nitro/server.yaml diff --git a/test/integration/roles/netscaler_server/tests/nitro/server/remove.yaml b/test/legacy/roles/netscaler_server/tests/nitro/server/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_server/tests/nitro/server/remove.yaml rename to test/legacy/roles/netscaler_server/tests/nitro/server/remove.yaml diff --git a/test/integration/roles/netscaler_server/tests/nitro/server/setup.yaml b/test/legacy/roles/netscaler_server/tests/nitro/server/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_server/tests/nitro/server/setup.yaml rename to test/legacy/roles/netscaler_server/tests/nitro/server/setup.yaml diff --git a/test/integration/roles/netscaler_server/tests/nitro/server/update.yaml b/test/legacy/roles/netscaler_server/tests/nitro/server/update.yaml similarity index 100% rename from test/integration/roles/netscaler_server/tests/nitro/server/update.yaml rename to test/legacy/roles/netscaler_server/tests/nitro/server/update.yaml diff --git a/test/integration/roles/netscaler_server/tests/nitro/server_domain.yaml b/test/legacy/roles/netscaler_server/tests/nitro/server_domain.yaml similarity index 100% rename from test/integration/roles/netscaler_server/tests/nitro/server_domain.yaml rename to test/legacy/roles/netscaler_server/tests/nitro/server_domain.yaml diff --git a/test/integration/roles/netscaler_server/tests/nitro/server_domain/remove.yaml b/test/legacy/roles/netscaler_server/tests/nitro/server_domain/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_server/tests/nitro/server_domain/remove.yaml rename to test/legacy/roles/netscaler_server/tests/nitro/server_domain/remove.yaml diff --git a/test/integration/roles/netscaler_server/tests/nitro/server_domain/setup.yaml b/test/legacy/roles/netscaler_server/tests/nitro/server_domain/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_server/tests/nitro/server_domain/setup.yaml rename to test/legacy/roles/netscaler_server/tests/nitro/server_domain/setup.yaml diff --git a/test/integration/roles/netscaler_server/tests/nitro/server_domain/update.yaml b/test/legacy/roles/netscaler_server/tests/nitro/server_domain/update.yaml similarity index 100% rename from test/integration/roles/netscaler_server/tests/nitro/server_domain/update.yaml rename to test/legacy/roles/netscaler_server/tests/nitro/server_domain/update.yaml diff --git a/test/integration/roles/netscaler_server/tests/nitro/server_ipv6.yaml b/test/legacy/roles/netscaler_server/tests/nitro/server_ipv6.yaml similarity index 100% rename from test/integration/roles/netscaler_server/tests/nitro/server_ipv6.yaml rename to test/legacy/roles/netscaler_server/tests/nitro/server_ipv6.yaml diff --git a/test/integration/roles/netscaler_server/tests/nitro/server_ipv6/remove.yaml b/test/legacy/roles/netscaler_server/tests/nitro/server_ipv6/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_server/tests/nitro/server_ipv6/remove.yaml rename to test/legacy/roles/netscaler_server/tests/nitro/server_ipv6/remove.yaml diff --git a/test/integration/roles/netscaler_server/tests/nitro/server_ipv6/setup.yaml b/test/legacy/roles/netscaler_server/tests/nitro/server_ipv6/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_server/tests/nitro/server_ipv6/setup.yaml rename to test/legacy/roles/netscaler_server/tests/nitro/server_ipv6/setup.yaml diff --git a/test/integration/roles/netscaler_server/tests/nitro/server_ipv6/update.yaml b/test/legacy/roles/netscaler_server/tests/nitro/server_ipv6/update.yaml similarity index 100% rename from test/integration/roles/netscaler_server/tests/nitro/server_ipv6/update.yaml rename to test/legacy/roles/netscaler_server/tests/nitro/server_ipv6/update.yaml diff --git a/test/integration/roles/netscaler_service/defaults/main.yaml b/test/legacy/roles/netscaler_service/defaults/main.yaml similarity index 100% rename from test/integration/roles/netscaler_service/defaults/main.yaml rename to test/legacy/roles/netscaler_service/defaults/main.yaml diff --git a/test/integration/roles/netscaler_service/sample_inventory b/test/legacy/roles/netscaler_service/sample_inventory similarity index 100% rename from test/integration/roles/netscaler_service/sample_inventory rename to test/legacy/roles/netscaler_service/sample_inventory diff --git a/test/integration/roles/netscaler_service/tasks/main.yaml b/test/legacy/roles/netscaler_service/tasks/main.yaml similarity index 100% rename from test/integration/roles/netscaler_service/tasks/main.yaml rename to test/legacy/roles/netscaler_service/tasks/main.yaml diff --git a/test/integration/roles/netscaler_service/tasks/nitro.yaml b/test/legacy/roles/netscaler_service/tasks/nitro.yaml similarity index 100% rename from test/integration/roles/netscaler_service/tasks/nitro.yaml rename to test/legacy/roles/netscaler_service/tasks/nitro.yaml diff --git a/test/integration/roles/netscaler_service/tests/nitro/adns_service.yaml b/test/legacy/roles/netscaler_service/tests/nitro/adns_service.yaml similarity index 100% rename from test/integration/roles/netscaler_service/tests/nitro/adns_service.yaml rename to test/legacy/roles/netscaler_service/tests/nitro/adns_service.yaml diff --git a/test/integration/roles/netscaler_service/tests/nitro/adns_service/remove.yaml b/test/legacy/roles/netscaler_service/tests/nitro/adns_service/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_service/tests/nitro/adns_service/remove.yaml rename to test/legacy/roles/netscaler_service/tests/nitro/adns_service/remove.yaml diff --git a/test/integration/roles/netscaler_service/tests/nitro/adns_service/setup.yaml b/test/legacy/roles/netscaler_service/tests/nitro/adns_service/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_service/tests/nitro/adns_service/setup.yaml rename to test/legacy/roles/netscaler_service/tests/nitro/adns_service/setup.yaml diff --git a/test/integration/roles/netscaler_service/tests/nitro/flap_disabled.yaml b/test/legacy/roles/netscaler_service/tests/nitro/flap_disabled.yaml similarity index 100% rename from test/integration/roles/netscaler_service/tests/nitro/flap_disabled.yaml rename to test/legacy/roles/netscaler_service/tests/nitro/flap_disabled.yaml diff --git a/test/integration/roles/netscaler_service/tests/nitro/flap_disabled/remove.yaml b/test/legacy/roles/netscaler_service/tests/nitro/flap_disabled/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_service/tests/nitro/flap_disabled/remove.yaml rename to test/legacy/roles/netscaler_service/tests/nitro/flap_disabled/remove.yaml diff --git a/test/integration/roles/netscaler_service/tests/nitro/flap_disabled/setup.yaml b/test/legacy/roles/netscaler_service/tests/nitro/flap_disabled/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_service/tests/nitro/flap_disabled/setup.yaml rename to test/legacy/roles/netscaler_service/tests/nitro/flap_disabled/setup.yaml diff --git a/test/integration/roles/netscaler_service/tests/nitro/http_service.yaml b/test/legacy/roles/netscaler_service/tests/nitro/http_service.yaml similarity index 100% rename from test/integration/roles/netscaler_service/tests/nitro/http_service.yaml rename to test/legacy/roles/netscaler_service/tests/nitro/http_service.yaml diff --git a/test/integration/roles/netscaler_service/tests/nitro/http_service/remove.yaml b/test/legacy/roles/netscaler_service/tests/nitro/http_service/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_service/tests/nitro/http_service/remove.yaml rename to test/legacy/roles/netscaler_service/tests/nitro/http_service/remove.yaml diff --git a/test/integration/roles/netscaler_service/tests/nitro/http_service/setup.yaml b/test/legacy/roles/netscaler_service/tests/nitro/http_service/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_service/tests/nitro/http_service/setup.yaml rename to test/legacy/roles/netscaler_service/tests/nitro/http_service/setup.yaml diff --git a/test/integration/roles/netscaler_service/tests/nitro/http_service/update.yaml b/test/legacy/roles/netscaler_service/tests/nitro/http_service/update.yaml similarity index 100% rename from test/integration/roles/netscaler_service/tests/nitro/http_service/update.yaml rename to test/legacy/roles/netscaler_service/tests/nitro/http_service/update.yaml diff --git a/test/integration/roles/netscaler_service/tests/nitro/ssl_service.yaml b/test/legacy/roles/netscaler_service/tests/nitro/ssl_service.yaml similarity index 100% rename from test/integration/roles/netscaler_service/tests/nitro/ssl_service.yaml rename to test/legacy/roles/netscaler_service/tests/nitro/ssl_service.yaml diff --git a/test/integration/roles/netscaler_service/tests/nitro/ssl_service/remove.yaml b/test/legacy/roles/netscaler_service/tests/nitro/ssl_service/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_service/tests/nitro/ssl_service/remove.yaml rename to test/legacy/roles/netscaler_service/tests/nitro/ssl_service/remove.yaml diff --git a/test/integration/roles/netscaler_service/tests/nitro/ssl_service/setup.yaml b/test/legacy/roles/netscaler_service/tests/nitro/ssl_service/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_service/tests/nitro/ssl_service/setup.yaml rename to test/legacy/roles/netscaler_service/tests/nitro/ssl_service/setup.yaml diff --git a/test/integration/roles/netscaler_servicegroup/defaults/main.yaml b/test/legacy/roles/netscaler_servicegroup/defaults/main.yaml similarity index 100% rename from test/integration/roles/netscaler_servicegroup/defaults/main.yaml rename to test/legacy/roles/netscaler_servicegroup/defaults/main.yaml diff --git a/test/integration/roles/netscaler_servicegroup/sample_inventory b/test/legacy/roles/netscaler_servicegroup/sample_inventory similarity index 100% rename from test/integration/roles/netscaler_servicegroup/sample_inventory rename to test/legacy/roles/netscaler_servicegroup/sample_inventory diff --git a/test/integration/roles/netscaler_servicegroup/tasks/main.yaml b/test/legacy/roles/netscaler_servicegroup/tasks/main.yaml similarity index 100% rename from test/integration/roles/netscaler_servicegroup/tasks/main.yaml rename to test/legacy/roles/netscaler_servicegroup/tasks/main.yaml diff --git a/test/integration/roles/netscaler_servicegroup/tasks/nitro.yaml b/test/legacy/roles/netscaler_servicegroup/tasks/nitro.yaml similarity index 100% rename from test/integration/roles/netscaler_servicegroup/tasks/nitro.yaml rename to test/legacy/roles/netscaler_servicegroup/tasks/nitro.yaml diff --git a/test/integration/roles/netscaler_servicegroup/tasks/testbed.yaml b/test/legacy/roles/netscaler_servicegroup/tasks/testbed.yaml similarity index 100% rename from test/integration/roles/netscaler_servicegroup/tasks/testbed.yaml rename to test/legacy/roles/netscaler_servicegroup/tasks/testbed.yaml diff --git a/test/integration/roles/netscaler_servicegroup/tests/nitro/flap_disabled.yaml b/test/legacy/roles/netscaler_servicegroup/tests/nitro/flap_disabled.yaml similarity index 100% rename from test/integration/roles/netscaler_servicegroup/tests/nitro/flap_disabled.yaml rename to test/legacy/roles/netscaler_servicegroup/tests/nitro/flap_disabled.yaml diff --git a/test/integration/roles/netscaler_servicegroup/tests/nitro/flap_disabled/remove.yaml b/test/legacy/roles/netscaler_servicegroup/tests/nitro/flap_disabled/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_servicegroup/tests/nitro/flap_disabled/remove.yaml rename to test/legacy/roles/netscaler_servicegroup/tests/nitro/flap_disabled/remove.yaml diff --git a/test/integration/roles/netscaler_servicegroup/tests/nitro/flap_disabled/setup.yaml b/test/legacy/roles/netscaler_servicegroup/tests/nitro/flap_disabled/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_servicegroup/tests/nitro/flap_disabled/setup.yaml rename to test/legacy/roles/netscaler_servicegroup/tests/nitro/flap_disabled/setup.yaml diff --git a/test/integration/roles/netscaler_servicegroup/tests/nitro/servicegroup.yaml b/test/legacy/roles/netscaler_servicegroup/tests/nitro/servicegroup.yaml similarity index 100% rename from test/integration/roles/netscaler_servicegroup/tests/nitro/servicegroup.yaml rename to test/legacy/roles/netscaler_servicegroup/tests/nitro/servicegroup.yaml diff --git a/test/integration/roles/netscaler_servicegroup/tests/nitro/servicegroup/remove.yaml b/test/legacy/roles/netscaler_servicegroup/tests/nitro/servicegroup/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_servicegroup/tests/nitro/servicegroup/remove.yaml rename to test/legacy/roles/netscaler_servicegroup/tests/nitro/servicegroup/remove.yaml diff --git a/test/integration/roles/netscaler_servicegroup/tests/nitro/servicegroup/setup.yaml b/test/legacy/roles/netscaler_servicegroup/tests/nitro/servicegroup/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_servicegroup/tests/nitro/servicegroup/setup.yaml rename to test/legacy/roles/netscaler_servicegroup/tests/nitro/servicegroup/setup.yaml diff --git a/test/integration/roles/netscaler_servicegroup/tests/nitro/servicegroup/update.yaml b/test/legacy/roles/netscaler_servicegroup/tests/nitro/servicegroup/update.yaml similarity index 100% rename from test/integration/roles/netscaler_servicegroup/tests/nitro/servicegroup/update.yaml rename to test/legacy/roles/netscaler_servicegroup/tests/nitro/servicegroup/update.yaml diff --git a/test/integration/roles/netscaler_servicegroup/tests/nitro/servicegroup_monitors.yaml b/test/legacy/roles/netscaler_servicegroup/tests/nitro/servicegroup_monitors.yaml similarity index 100% rename from test/integration/roles/netscaler_servicegroup/tests/nitro/servicegroup_monitors.yaml rename to test/legacy/roles/netscaler_servicegroup/tests/nitro/servicegroup_monitors.yaml diff --git a/test/integration/roles/netscaler_servicegroup/tests/nitro/servicegroup_monitors/default_only.yaml b/test/legacy/roles/netscaler_servicegroup/tests/nitro/servicegroup_monitors/default_only.yaml similarity index 100% rename from test/integration/roles/netscaler_servicegroup/tests/nitro/servicegroup_monitors/default_only.yaml rename to test/legacy/roles/netscaler_servicegroup/tests/nitro/servicegroup_monitors/default_only.yaml diff --git a/test/integration/roles/netscaler_servicegroup/tests/nitro/servicegroup_monitors/remove.yaml b/test/legacy/roles/netscaler_servicegroup/tests/nitro/servicegroup_monitors/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_servicegroup/tests/nitro/servicegroup_monitors/remove.yaml rename to test/legacy/roles/netscaler_servicegroup/tests/nitro/servicegroup_monitors/remove.yaml diff --git a/test/integration/roles/netscaler_servicegroup/tests/nitro/servicegroup_monitors/setup.yaml b/test/legacy/roles/netscaler_servicegroup/tests/nitro/servicegroup_monitors/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_servicegroup/tests/nitro/servicegroup_monitors/setup.yaml rename to test/legacy/roles/netscaler_servicegroup/tests/nitro/servicegroup_monitors/setup.yaml diff --git a/test/integration/roles/netscaler_servicegroup/tests/nitro/servicegroup_monitors/update.yaml b/test/legacy/roles/netscaler_servicegroup/tests/nitro/servicegroup_monitors/update.yaml similarity index 100% rename from test/integration/roles/netscaler_servicegroup/tests/nitro/servicegroup_monitors/update.yaml rename to test/legacy/roles/netscaler_servicegroup/tests/nitro/servicegroup_monitors/update.yaml diff --git a/test/integration/roles/netscaler_ssl_certkey/defaults/main.yaml b/test/legacy/roles/netscaler_ssl_certkey/defaults/main.yaml similarity index 100% rename from test/integration/roles/netscaler_ssl_certkey/defaults/main.yaml rename to test/legacy/roles/netscaler_ssl_certkey/defaults/main.yaml diff --git a/test/integration/roles/netscaler_ssl_certkey/sample_inventory b/test/legacy/roles/netscaler_ssl_certkey/sample_inventory similarity index 100% rename from test/integration/roles/netscaler_ssl_certkey/sample_inventory rename to test/legacy/roles/netscaler_ssl_certkey/sample_inventory diff --git a/test/integration/roles/netscaler_ssl_certkey/tasks/main.yaml b/test/legacy/roles/netscaler_ssl_certkey/tasks/main.yaml similarity index 100% rename from test/integration/roles/netscaler_ssl_certkey/tasks/main.yaml rename to test/legacy/roles/netscaler_ssl_certkey/tasks/main.yaml diff --git a/test/integration/roles/netscaler_ssl_certkey/tasks/nitro.yaml b/test/legacy/roles/netscaler_ssl_certkey/tasks/nitro.yaml similarity index 100% rename from test/integration/roles/netscaler_ssl_certkey/tasks/nitro.yaml rename to test/legacy/roles/netscaler_ssl_certkey/tasks/nitro.yaml diff --git a/test/integration/roles/netscaler_ssl_certkey/tests/nitro/certkey.yaml b/test/legacy/roles/netscaler_ssl_certkey/tests/nitro/certkey.yaml similarity index 100% rename from test/integration/roles/netscaler_ssl_certkey/tests/nitro/certkey.yaml rename to test/legacy/roles/netscaler_ssl_certkey/tests/nitro/certkey.yaml diff --git a/test/integration/roles/netscaler_ssl_certkey/tests/nitro/certkey/remove.yaml b/test/legacy/roles/netscaler_ssl_certkey/tests/nitro/certkey/remove.yaml similarity index 100% rename from test/integration/roles/netscaler_ssl_certkey/tests/nitro/certkey/remove.yaml rename to test/legacy/roles/netscaler_ssl_certkey/tests/nitro/certkey/remove.yaml diff --git a/test/integration/roles/netscaler_ssl_certkey/tests/nitro/certkey/setup.yaml b/test/legacy/roles/netscaler_ssl_certkey/tests/nitro/certkey/setup.yaml similarity index 100% rename from test/integration/roles/netscaler_ssl_certkey/tests/nitro/certkey/setup.yaml rename to test/legacy/roles/netscaler_ssl_certkey/tests/nitro/certkey/setup.yaml diff --git a/test/integration/roles/prepare_rax_tests/defaults/main.yml b/test/legacy/roles/prepare_rax_tests/defaults/main.yml similarity index 100% rename from test/integration/roles/prepare_rax_tests/defaults/main.yml rename to test/legacy/roles/prepare_rax_tests/defaults/main.yml diff --git a/test/integration/roles/prepare_tests/tasks/main.yml b/test/legacy/roles/prepare_tests/tasks/main.yml similarity index 100% rename from test/integration/roles/prepare_tests/tasks/main.yml rename to test/legacy/roles/prepare_tests/tasks/main.yml diff --git a/test/legacy/roles/setup_ec2 b/test/legacy/roles/setup_ec2 new file mode 120000 index 0000000000..6dd2acb9e8 --- /dev/null +++ b/test/legacy/roles/setup_ec2 @@ -0,0 +1 @@ +../../integration/targets/setup_ec2 \ No newline at end of file diff --git a/test/legacy/roles/setup_sshkey b/test/legacy/roles/setup_sshkey new file mode 120000 index 0000000000..7f1d3b39fa --- /dev/null +++ b/test/legacy/roles/setup_sshkey @@ -0,0 +1 @@ +../../integration/targets/setup_sshkey \ No newline at end of file diff --git a/test/integration/roles/test_azure/defaults/main.yml b/test/legacy/roles/test_azure/defaults/main.yml similarity index 100% rename from test/integration/roles/test_azure/defaults/main.yml rename to test/legacy/roles/test_azure/defaults/main.yml diff --git a/test/integration/roles/test_azure/tasks/main.yml b/test/legacy/roles/test_azure/tasks/main.yml similarity index 100% rename from test/integration/roles/test_azure/tasks/main.yml rename to test/legacy/roles/test_azure/tasks/main.yml diff --git a/test/integration/roles/test_cloudflare_dns/defaults/main.yml b/test/legacy/roles/test_cloudflare_dns/defaults/main.yml similarity index 100% rename from test/integration/roles/test_cloudflare_dns/defaults/main.yml rename to test/legacy/roles/test_cloudflare_dns/defaults/main.yml diff --git a/test/integration/roles/test_cloudflare_dns/tasks/a_record.yml b/test/legacy/roles/test_cloudflare_dns/tasks/a_record.yml similarity index 100% rename from test/integration/roles/test_cloudflare_dns/tasks/a_record.yml rename to test/legacy/roles/test_cloudflare_dns/tasks/a_record.yml diff --git a/test/integration/roles/test_cloudflare_dns/tasks/aaaa_record.yml b/test/legacy/roles/test_cloudflare_dns/tasks/aaaa_record.yml similarity index 100% rename from test/integration/roles/test_cloudflare_dns/tasks/aaaa_record.yml rename to test/legacy/roles/test_cloudflare_dns/tasks/aaaa_record.yml diff --git a/test/integration/roles/test_cloudflare_dns/tasks/cname_record.yml b/test/legacy/roles/test_cloudflare_dns/tasks/cname_record.yml similarity index 100% rename from test/integration/roles/test_cloudflare_dns/tasks/cname_record.yml rename to test/legacy/roles/test_cloudflare_dns/tasks/cname_record.yml diff --git a/test/integration/roles/test_cloudflare_dns/tasks/main.yml b/test/legacy/roles/test_cloudflare_dns/tasks/main.yml similarity index 100% rename from test/integration/roles/test_cloudflare_dns/tasks/main.yml rename to test/legacy/roles/test_cloudflare_dns/tasks/main.yml diff --git a/test/integration/roles/test_cloudflare_dns/tasks/mx_record.yml b/test/legacy/roles/test_cloudflare_dns/tasks/mx_record.yml similarity index 100% rename from test/integration/roles/test_cloudflare_dns/tasks/mx_record.yml rename to test/legacy/roles/test_cloudflare_dns/tasks/mx_record.yml diff --git a/test/integration/roles/test_cloudflare_dns/tasks/ns_record.yml b/test/legacy/roles/test_cloudflare_dns/tasks/ns_record.yml similarity index 100% rename from test/integration/roles/test_cloudflare_dns/tasks/ns_record.yml rename to test/legacy/roles/test_cloudflare_dns/tasks/ns_record.yml diff --git a/test/integration/roles/test_cloudflare_dns/tasks/spf_record.yml b/test/legacy/roles/test_cloudflare_dns/tasks/spf_record.yml similarity index 100% rename from test/integration/roles/test_cloudflare_dns/tasks/spf_record.yml rename to test/legacy/roles/test_cloudflare_dns/tasks/spf_record.yml diff --git a/test/integration/roles/test_cloudflare_dns/tasks/srv_record.yml b/test/legacy/roles/test_cloudflare_dns/tasks/srv_record.yml similarity index 100% rename from test/integration/roles/test_cloudflare_dns/tasks/srv_record.yml rename to test/legacy/roles/test_cloudflare_dns/tasks/srv_record.yml diff --git a/test/integration/roles/test_cloudflare_dns/tasks/txt_record.yml b/test/legacy/roles/test_cloudflare_dns/tasks/txt_record.yml similarity index 100% rename from test/integration/roles/test_cloudflare_dns/tasks/txt_record.yml rename to test/legacy/roles/test_cloudflare_dns/tasks/txt_record.yml diff --git a/test/integration/roles/test_consul_acl/tasks/create-acl-with-rules.yml b/test/legacy/roles/test_consul_acl/tasks/create-acl-with-rules.yml similarity index 100% rename from test/integration/roles/test_consul_acl/tasks/create-acl-with-rules.yml rename to test/legacy/roles/test_consul_acl/tasks/create-acl-with-rules.yml diff --git a/test/integration/roles/test_consul_acl/tasks/create-acl-with-token.yml b/test/legacy/roles/test_consul_acl/tasks/create-acl-with-token.yml similarity index 100% rename from test/integration/roles/test_consul_acl/tasks/create-acl-with-token.yml rename to test/legacy/roles/test_consul_acl/tasks/create-acl-with-token.yml diff --git a/test/integration/roles/test_consul_acl/tasks/create-acl-without-rules.yml b/test/legacy/roles/test_consul_acl/tasks/create-acl-without-rules.yml similarity index 100% rename from test/integration/roles/test_consul_acl/tasks/create-acl-without-rules.yml rename to test/legacy/roles/test_consul_acl/tasks/create-acl-without-rules.yml diff --git a/test/integration/roles/test_consul_acl/tasks/main.yml b/test/legacy/roles/test_consul_acl/tasks/main.yml similarity index 100% rename from test/integration/roles/test_consul_acl/tasks/main.yml rename to test/legacy/roles/test_consul_acl/tasks/main.yml diff --git a/test/integration/roles/test_consul_acl/tasks/remove-acl.yml b/test/legacy/roles/test_consul_acl/tasks/remove-acl.yml similarity index 100% rename from test/integration/roles/test_consul_acl/tasks/remove-acl.yml rename to test/legacy/roles/test_consul_acl/tasks/remove-acl.yml diff --git a/test/integration/roles/test_consul_acl/tasks/update-acl.yml b/test/legacy/roles/test_consul_acl/tasks/update-acl.yml similarity index 100% rename from test/integration/roles/test_consul_acl/tasks/update-acl.yml rename to test/legacy/roles/test_consul_acl/tasks/update-acl.yml diff --git a/test/integration/roles/test_consul_acl/vars/main.yml b/test/legacy/roles/test_consul_acl/vars/main.yml similarity index 100% rename from test/integration/roles/test_consul_acl/vars/main.yml rename to test/legacy/roles/test_consul_acl/vars/main.yml diff --git a/test/integration/roles/test_consul_inventory/tasks/main.yml b/test/legacy/roles/test_consul_inventory/tasks/main.yml similarity index 100% rename from test/integration/roles/test_consul_inventory/tasks/main.yml rename to test/legacy/roles/test_consul_inventory/tasks/main.yml diff --git a/test/integration/roles/test_consul_kv/tasks/main.yml b/test/legacy/roles/test_consul_kv/tasks/main.yml similarity index 100% rename from test/integration/roles/test_consul_kv/tasks/main.yml rename to test/legacy/roles/test_consul_kv/tasks/main.yml diff --git a/test/integration/roles/test_consul_service/tasks/main.yml b/test/legacy/roles/test_consul_service/tasks/main.yml similarity index 100% rename from test/integration/roles/test_consul_service/tasks/main.yml rename to test/legacy/roles/test_consul_service/tasks/main.yml diff --git a/test/integration/roles/test_consul_session/tasks/main.yml b/test/legacy/roles/test_consul_session/tasks/main.yml similarity index 100% rename from test/integration/roles/test_consul_session/tasks/main.yml rename to test/legacy/roles/test_consul_session/tasks/main.yml diff --git a/test/integration/roles/test_ec2/README.md b/test/legacy/roles/test_ec2/README.md similarity index 100% rename from test/integration/roles/test_ec2/README.md rename to test/legacy/roles/test_ec2/README.md diff --git a/test/integration/roles/test_ec2/defaults/main.yml b/test/legacy/roles/test_ec2/defaults/main.yml similarity index 100% rename from test/integration/roles/test_ec2/defaults/main.yml rename to test/legacy/roles/test_ec2/defaults/main.yml diff --git a/test/integration/roles/test_ec2/handlers/main.yml b/test/legacy/roles/test_ec2/handlers/main.yml similarity index 100% rename from test/integration/roles/test_ec2/handlers/main.yml rename to test/legacy/roles/test_ec2/handlers/main.yml diff --git a/test/legacy/roles/test_ec2/meta/main.yml b/test/legacy/roles/test_ec2/meta/main.yml new file mode 100644 index 0000000000..1f64f1169a --- /dev/null +++ b/test/legacy/roles/test_ec2/meta/main.yml @@ -0,0 +1,3 @@ +dependencies: + - prepare_tests + - setup_ec2 diff --git a/test/integration/roles/test_ec2/tasks/main.yml b/test/legacy/roles/test_ec2/tasks/main.yml similarity index 100% rename from test/integration/roles/test_ec2/tasks/main.yml rename to test/legacy/roles/test_ec2/tasks/main.yml diff --git a/test/integration/roles/test_ec2/vars/main.yml b/test/legacy/roles/test_ec2/vars/main.yml similarity index 100% rename from test/integration/roles/test_ec2/vars/main.yml rename to test/legacy/roles/test_ec2/vars/main.yml diff --git a/test/integration/roles/test_ec2_asg/tasks/main.yml b/test/legacy/roles/test_ec2_asg/tasks/main.yml similarity index 100% rename from test/integration/roles/test_ec2_asg/tasks/main.yml rename to test/legacy/roles/test_ec2_asg/tasks/main.yml diff --git a/test/integration/roles/test_ec2_eip/defaults/main.yml b/test/legacy/roles/test_ec2_eip/defaults/main.yml similarity index 100% rename from test/integration/roles/test_ec2_eip/defaults/main.yml rename to test/legacy/roles/test_ec2_eip/defaults/main.yml diff --git a/test/legacy/roles/test_ec2_eip/meta/main.yml b/test/legacy/roles/test_ec2_eip/meta/main.yml new file mode 100644 index 0000000000..1f64f1169a --- /dev/null +++ b/test/legacy/roles/test_ec2_eip/meta/main.yml @@ -0,0 +1,3 @@ +dependencies: + - prepare_tests + - setup_ec2 diff --git a/test/integration/roles/test_ec2_eip/tasks/main.yml b/test/legacy/roles/test_ec2_eip/tasks/main.yml similarity index 100% rename from test/integration/roles/test_ec2_eip/tasks/main.yml rename to test/legacy/roles/test_ec2_eip/tasks/main.yml diff --git a/test/integration/roles/test_ec2_eip/vars/main.yml b/test/legacy/roles/test_ec2_eip/vars/main.yml similarity index 100% rename from test/integration/roles/test_ec2_eip/vars/main.yml rename to test/legacy/roles/test_ec2_eip/vars/main.yml diff --git a/test/integration/roles/test_ec2_elb/defaults/main.yml b/test/legacy/roles/test_ec2_elb/defaults/main.yml similarity index 100% rename from test/integration/roles/test_ec2_elb/defaults/main.yml rename to test/legacy/roles/test_ec2_elb/defaults/main.yml diff --git a/test/integration/roles/test_ec2_elb/meta/main.yml b/test/legacy/roles/test_ec2_elb/meta/main.yml similarity index 100% rename from test/integration/roles/test_ec2_elb/meta/main.yml rename to test/legacy/roles/test_ec2_elb/meta/main.yml diff --git a/test/integration/roles/test_ec2_elb/tasks/main.yml b/test/legacy/roles/test_ec2_elb/tasks/main.yml similarity index 100% rename from test/integration/roles/test_ec2_elb/tasks/main.yml rename to test/legacy/roles/test_ec2_elb/tasks/main.yml diff --git a/test/integration/roles/test_ec2_vpc_nat_gateway/tasks/main.yml b/test/legacy/roles/test_ec2_vpc_nat_gateway/tasks/main.yml similarity index 100% rename from test/integration/roles/test_ec2_vpc_nat_gateway/tasks/main.yml rename to test/legacy/roles/test_ec2_vpc_nat_gateway/tasks/main.yml diff --git a/test/integration/roles/test_ec2_vpc_nat_gateway/vars/main.yml b/test/legacy/roles/test_ec2_vpc_nat_gateway/vars/main.yml similarity index 100% rename from test/integration/roles/test_ec2_vpc_nat_gateway/vars/main.yml rename to test/legacy/roles/test_ec2_vpc_nat_gateway/vars/main.yml diff --git a/test/integration/roles/test_exoscale_dns/defaults/main.yml b/test/legacy/roles/test_exoscale_dns/defaults/main.yml similarity index 100% rename from test/integration/roles/test_exoscale_dns/defaults/main.yml rename to test/legacy/roles/test_exoscale_dns/defaults/main.yml diff --git a/test/integration/roles/test_exoscale_dns/tasks/main.yml b/test/legacy/roles/test_exoscale_dns/tasks/main.yml similarity index 100% rename from test/integration/roles/test_exoscale_dns/tasks/main.yml rename to test/legacy/roles/test_exoscale_dns/tasks/main.yml diff --git a/test/integration/roles/test_gcdns/defaults/main.yml b/test/legacy/roles/test_gcdns/defaults/main.yml similarity index 100% rename from test/integration/roles/test_gcdns/defaults/main.yml rename to test/legacy/roles/test_gcdns/defaults/main.yml diff --git a/test/integration/roles/test_gcdns/tasks/main.yml b/test/legacy/roles/test_gcdns/tasks/main.yml similarity index 100% rename from test/integration/roles/test_gcdns/tasks/main.yml rename to test/legacy/roles/test_gcdns/tasks/main.yml diff --git a/test/integration/roles/test_gce/defaults/main.yml b/test/legacy/roles/test_gce/defaults/main.yml similarity index 100% rename from test/integration/roles/test_gce/defaults/main.yml rename to test/legacy/roles/test_gce/defaults/main.yml diff --git a/test/integration/roles/test_gce/tasks/main.yml b/test/legacy/roles/test_gce/tasks/main.yml similarity index 100% rename from test/integration/roles/test_gce/tasks/main.yml rename to test/legacy/roles/test_gce/tasks/main.yml diff --git a/test/integration/roles/test_gce_labels/defaults/main.yml b/test/legacy/roles/test_gce_labels/defaults/main.yml similarity index 100% rename from test/integration/roles/test_gce_labels/defaults/main.yml rename to test/legacy/roles/test_gce_labels/defaults/main.yml diff --git a/test/integration/roles/test_gce_labels/tasks/main.yml b/test/legacy/roles/test_gce_labels/tasks/main.yml similarity index 100% rename from test/integration/roles/test_gce_labels/tasks/main.yml rename to test/legacy/roles/test_gce_labels/tasks/main.yml diff --git a/test/integration/roles/test_gce_labels/tasks/setup.yml b/test/legacy/roles/test_gce_labels/tasks/setup.yml similarity index 100% rename from test/integration/roles/test_gce_labels/tasks/setup.yml rename to test/legacy/roles/test_gce_labels/tasks/setup.yml diff --git a/test/integration/roles/test_gce_labels/tasks/teardown.yml b/test/legacy/roles/test_gce_labels/tasks/teardown.yml similarity index 100% rename from test/integration/roles/test_gce_labels/tasks/teardown.yml rename to test/legacy/roles/test_gce_labels/tasks/teardown.yml diff --git a/test/integration/roles/test_gce_labels/tasks/test.yml b/test/legacy/roles/test_gce_labels/tasks/test.yml similarity index 100% rename from test/integration/roles/test_gce_labels/tasks/test.yml rename to test/legacy/roles/test_gce_labels/tasks/test.yml diff --git a/test/integration/roles/test_gce_mig/defaults/main.yml b/test/legacy/roles/test_gce_mig/defaults/main.yml similarity index 100% rename from test/integration/roles/test_gce_mig/defaults/main.yml rename to test/legacy/roles/test_gce_mig/defaults/main.yml diff --git a/test/integration/roles/test_gce_mig/tasks/main.yml b/test/legacy/roles/test_gce_mig/tasks/main.yml similarity index 100% rename from test/integration/roles/test_gce_mig/tasks/main.yml rename to test/legacy/roles/test_gce_mig/tasks/main.yml diff --git a/test/integration/roles/test_gce_net/defaults/main.yml b/test/legacy/roles/test_gce_net/defaults/main.yml similarity index 100% rename from test/integration/roles/test_gce_net/defaults/main.yml rename to test/legacy/roles/test_gce_net/defaults/main.yml diff --git a/test/integration/roles/test_gce_net/tasks/main.yml b/test/legacy/roles/test_gce_net/tasks/main.yml similarity index 100% rename from test/integration/roles/test_gce_net/tasks/main.yml rename to test/legacy/roles/test_gce_net/tasks/main.yml diff --git a/test/integration/roles/test_gce_pd/defaults/main.yml b/test/legacy/roles/test_gce_pd/defaults/main.yml similarity index 100% rename from test/integration/roles/test_gce_pd/defaults/main.yml rename to test/legacy/roles/test_gce_pd/defaults/main.yml diff --git a/test/integration/roles/test_gce_pd/tasks/main.yml b/test/legacy/roles/test_gce_pd/tasks/main.yml similarity index 100% rename from test/integration/roles/test_gce_pd/tasks/main.yml rename to test/legacy/roles/test_gce_pd/tasks/main.yml diff --git a/test/integration/roles/test_gce_tag/defaults/main.yml b/test/legacy/roles/test_gce_tag/defaults/main.yml similarity index 100% rename from test/integration/roles/test_gce_tag/defaults/main.yml rename to test/legacy/roles/test_gce_tag/defaults/main.yml diff --git a/test/integration/roles/test_gce_tag/tasks/main.yml b/test/legacy/roles/test_gce_tag/tasks/main.yml similarity index 100% rename from test/integration/roles/test_gce_tag/tasks/main.yml rename to test/legacy/roles/test_gce_tag/tasks/main.yml diff --git a/test/integration/roles/test_gce_tag/tasks/setup.yml b/test/legacy/roles/test_gce_tag/tasks/setup.yml similarity index 100% rename from test/integration/roles/test_gce_tag/tasks/setup.yml rename to test/legacy/roles/test_gce_tag/tasks/setup.yml diff --git a/test/integration/roles/test_gce_tag/tasks/teardown.yml b/test/legacy/roles/test_gce_tag/tasks/teardown.yml similarity index 100% rename from test/integration/roles/test_gce_tag/tasks/teardown.yml rename to test/legacy/roles/test_gce_tag/tasks/teardown.yml diff --git a/test/integration/roles/test_gce_tag/tasks/test.yml b/test/legacy/roles/test_gce_tag/tasks/test.yml similarity index 100% rename from test/integration/roles/test_gce_tag/tasks/test.yml rename to test/legacy/roles/test_gce_tag/tasks/test.yml diff --git a/test/integration/roles/test_gcp_glb/defaults/main.yml b/test/legacy/roles/test_gcp_glb/defaults/main.yml similarity index 100% rename from test/integration/roles/test_gcp_glb/defaults/main.yml rename to test/legacy/roles/test_gcp_glb/defaults/main.yml diff --git a/test/integration/roles/test_gcp_glb/tasks/main.yml b/test/legacy/roles/test_gcp_glb/tasks/main.yml similarity index 100% rename from test/integration/roles/test_gcp_glb/tasks/main.yml rename to test/legacy/roles/test_gcp_glb/tasks/main.yml diff --git a/test/integration/roles/test_gcp_glb/tasks/teardown.yml b/test/legacy/roles/test_gcp_glb/tasks/teardown.yml similarity index 100% rename from test/integration/roles/test_gcp_glb/tasks/teardown.yml rename to test/legacy/roles/test_gcp_glb/tasks/teardown.yml diff --git a/test/integration/roles/test_gcp_glb/tasks/test.yml b/test/legacy/roles/test_gcp_glb/tasks/test.yml similarity index 100% rename from test/integration/roles/test_gcp_glb/tasks/test.yml rename to test/legacy/roles/test_gcp_glb/tasks/test.yml diff --git a/test/integration/roles/test_gcp_healthcheck/defaults/main.yml b/test/legacy/roles/test_gcp_healthcheck/defaults/main.yml similarity index 100% rename from test/integration/roles/test_gcp_healthcheck/defaults/main.yml rename to test/legacy/roles/test_gcp_healthcheck/defaults/main.yml diff --git a/test/integration/roles/test_gcp_healthcheck/tasks/main.yml b/test/legacy/roles/test_gcp_healthcheck/tasks/main.yml similarity index 100% rename from test/integration/roles/test_gcp_healthcheck/tasks/main.yml rename to test/legacy/roles/test_gcp_healthcheck/tasks/main.yml diff --git a/test/integration/roles/test_gcp_url_map/defaults/main.yml b/test/legacy/roles/test_gcp_url_map/defaults/main.yml similarity index 100% rename from test/integration/roles/test_gcp_url_map/defaults/main.yml rename to test/legacy/roles/test_gcp_url_map/defaults/main.yml diff --git a/test/integration/roles/test_gcp_url_map/tasks/main.yml b/test/legacy/roles/test_gcp_url_map/tasks/main.yml similarity index 100% rename from test/integration/roles/test_gcp_url_map/tasks/main.yml rename to test/legacy/roles/test_gcp_url_map/tasks/main.yml diff --git a/test/integration/roles/test_jenkins_job/defaults/main.yml b/test/legacy/roles/test_jenkins_job/defaults/main.yml similarity index 100% rename from test/integration/roles/test_jenkins_job/defaults/main.yml rename to test/legacy/roles/test_jenkins_job/defaults/main.yml diff --git a/test/integration/roles/test_jenkins_job/tasks/main.yml b/test/legacy/roles/test_jenkins_job/tasks/main.yml similarity index 100% rename from test/integration/roles/test_jenkins_job/tasks/main.yml rename to test/legacy/roles/test_jenkins_job/tasks/main.yml diff --git a/test/integration/roles/test_jenkins_job/templates/config.xml.j2 b/test/legacy/roles/test_jenkins_job/templates/config.xml.j2 similarity index 100% rename from test/integration/roles/test_jenkins_job/templates/config.xml.j2 rename to test/legacy/roles/test_jenkins_job/templates/config.xml.j2 diff --git a/test/integration/roles/test_rax/meta/main.yml b/test/legacy/roles/test_rax/meta/main.yml similarity index 100% rename from test/integration/roles/test_rax/meta/main.yml rename to test/legacy/roles/test_rax/meta/main.yml diff --git a/test/integration/roles/test_rax/tasks/main.yml b/test/legacy/roles/test_rax/tasks/main.yml similarity index 100% rename from test/integration/roles/test_rax/tasks/main.yml rename to test/legacy/roles/test_rax/tasks/main.yml diff --git a/test/integration/roles/test_rax_cbs/meta/main.yml b/test/legacy/roles/test_rax_cbs/meta/main.yml similarity index 100% rename from test/integration/roles/test_rax_cbs/meta/main.yml rename to test/legacy/roles/test_rax_cbs/meta/main.yml diff --git a/test/integration/roles/test_rax_cbs/tasks/main.yml b/test/legacy/roles/test_rax_cbs/tasks/main.yml similarity index 100% rename from test/integration/roles/test_rax_cbs/tasks/main.yml rename to test/legacy/roles/test_rax_cbs/tasks/main.yml diff --git a/test/integration/roles/test_rax_cbs_attachments/meta/main.yml b/test/legacy/roles/test_rax_cbs_attachments/meta/main.yml similarity index 100% rename from test/integration/roles/test_rax_cbs_attachments/meta/main.yml rename to test/legacy/roles/test_rax_cbs_attachments/meta/main.yml diff --git a/test/integration/roles/test_rax_cbs_attachments/tasks/main.yml b/test/legacy/roles/test_rax_cbs_attachments/tasks/main.yml similarity index 100% rename from test/integration/roles/test_rax_cbs_attachments/tasks/main.yml rename to test/legacy/roles/test_rax_cbs_attachments/tasks/main.yml diff --git a/test/integration/roles/test_rax_cdb/meta/main.yml b/test/legacy/roles/test_rax_cdb/meta/main.yml similarity index 100% rename from test/integration/roles/test_rax_cdb/meta/main.yml rename to test/legacy/roles/test_rax_cdb/meta/main.yml diff --git a/test/integration/roles/test_rax_cdb/tasks/main.yml b/test/legacy/roles/test_rax_cdb/tasks/main.yml similarity index 100% rename from test/integration/roles/test_rax_cdb/tasks/main.yml rename to test/legacy/roles/test_rax_cdb/tasks/main.yml diff --git a/test/integration/roles/test_rax_cdb_database/meta/main.yml b/test/legacy/roles/test_rax_cdb_database/meta/main.yml similarity index 100% rename from test/integration/roles/test_rax_cdb_database/meta/main.yml rename to test/legacy/roles/test_rax_cdb_database/meta/main.yml diff --git a/test/integration/roles/test_rax_cdb_database/tasks/main.yml b/test/legacy/roles/test_rax_cdb_database/tasks/main.yml similarity index 100% rename from test/integration/roles/test_rax_cdb_database/tasks/main.yml rename to test/legacy/roles/test_rax_cdb_database/tasks/main.yml diff --git a/test/integration/roles/test_rax_clb/meta/main.yml b/test/legacy/roles/test_rax_clb/meta/main.yml similarity index 100% rename from test/integration/roles/test_rax_clb/meta/main.yml rename to test/legacy/roles/test_rax_clb/meta/main.yml diff --git a/test/integration/roles/test_rax_clb/tasks/main.yml b/test/legacy/roles/test_rax_clb/tasks/main.yml similarity index 100% rename from test/integration/roles/test_rax_clb/tasks/main.yml rename to test/legacy/roles/test_rax_clb/tasks/main.yml diff --git a/test/integration/roles/test_rax_clb_nodes/meta/main.yml b/test/legacy/roles/test_rax_clb_nodes/meta/main.yml similarity index 100% rename from test/integration/roles/test_rax_clb_nodes/meta/main.yml rename to test/legacy/roles/test_rax_clb_nodes/meta/main.yml diff --git a/test/integration/roles/test_rax_clb_nodes/tasks/main.yml b/test/legacy/roles/test_rax_clb_nodes/tasks/main.yml similarity index 100% rename from test/integration/roles/test_rax_clb_nodes/tasks/main.yml rename to test/legacy/roles/test_rax_clb_nodes/tasks/main.yml diff --git a/test/integration/roles/test_rax_facts/meta/main.yml b/test/legacy/roles/test_rax_facts/meta/main.yml similarity index 100% rename from test/integration/roles/test_rax_facts/meta/main.yml rename to test/legacy/roles/test_rax_facts/meta/main.yml diff --git a/test/integration/roles/test_rax_facts/tasks/main.yml b/test/legacy/roles/test_rax_facts/tasks/main.yml similarity index 100% rename from test/integration/roles/test_rax_facts/tasks/main.yml rename to test/legacy/roles/test_rax_facts/tasks/main.yml diff --git a/test/integration/roles/test_rax_identity/meta/main.yml b/test/legacy/roles/test_rax_identity/meta/main.yml similarity index 100% rename from test/integration/roles/test_rax_identity/meta/main.yml rename to test/legacy/roles/test_rax_identity/meta/main.yml diff --git a/test/integration/roles/test_rax_identity/tasks/main.yml b/test/legacy/roles/test_rax_identity/tasks/main.yml similarity index 100% rename from test/integration/roles/test_rax_identity/tasks/main.yml rename to test/legacy/roles/test_rax_identity/tasks/main.yml diff --git a/test/integration/roles/test_rax_keypair/meta/main.yml b/test/legacy/roles/test_rax_keypair/meta/main.yml similarity index 100% rename from test/integration/roles/test_rax_keypair/meta/main.yml rename to test/legacy/roles/test_rax_keypair/meta/main.yml diff --git a/test/integration/roles/test_rax_keypair/tasks/main.yml b/test/legacy/roles/test_rax_keypair/tasks/main.yml similarity index 100% rename from test/integration/roles/test_rax_keypair/tasks/main.yml rename to test/legacy/roles/test_rax_keypair/tasks/main.yml diff --git a/test/integration/roles/test_rax_meta/meta/main.yml b/test/legacy/roles/test_rax_meta/meta/main.yml similarity index 100% rename from test/integration/roles/test_rax_meta/meta/main.yml rename to test/legacy/roles/test_rax_meta/meta/main.yml diff --git a/test/integration/roles/test_rax_meta/tasks/main.yml b/test/legacy/roles/test_rax_meta/tasks/main.yml similarity index 100% rename from test/integration/roles/test_rax_meta/tasks/main.yml rename to test/legacy/roles/test_rax_meta/tasks/main.yml diff --git a/test/integration/roles/test_rax_network/meta/main.yml b/test/legacy/roles/test_rax_network/meta/main.yml similarity index 100% rename from test/integration/roles/test_rax_network/meta/main.yml rename to test/legacy/roles/test_rax_network/meta/main.yml diff --git a/test/integration/roles/test_rax_network/tasks/main.yml b/test/legacy/roles/test_rax_network/tasks/main.yml similarity index 100% rename from test/integration/roles/test_rax_network/tasks/main.yml rename to test/legacy/roles/test_rax_network/tasks/main.yml diff --git a/test/integration/roles/test_rax_scaling_group/files/test.txt b/test/legacy/roles/test_rax_scaling_group/files/test.txt similarity index 100% rename from test/integration/roles/test_rax_scaling_group/files/test.txt rename to test/legacy/roles/test_rax_scaling_group/files/test.txt diff --git a/test/integration/roles/test_rax_scaling_group/meta/main.yml b/test/legacy/roles/test_rax_scaling_group/meta/main.yml similarity index 100% rename from test/integration/roles/test_rax_scaling_group/meta/main.yml rename to test/legacy/roles/test_rax_scaling_group/meta/main.yml diff --git a/test/integration/roles/test_rax_scaling_group/tasks/main.yml b/test/legacy/roles/test_rax_scaling_group/tasks/main.yml similarity index 100% rename from test/integration/roles/test_rax_scaling_group/tasks/main.yml rename to test/legacy/roles/test_rax_scaling_group/tasks/main.yml diff --git a/test/integration/setup_gce.py b/test/legacy/setup_gce.py similarity index 100% rename from test/integration/setup_gce.py rename to test/legacy/setup_gce.py diff --git a/test/integration/vars/test_var_encrypted.yml b/test/legacy/vars/test_var_encrypted.yml similarity index 100% rename from test/integration/vars/test_var_encrypted.yml rename to test/legacy/vars/test_var_encrypted.yml diff --git a/test/runner/lib/classification.py b/test/runner/lib/classification.py index 42fcfd56e5..d63fc1c290 100644 --- a/test/runner/lib/classification.py +++ b/test/runner/lib/classification.py @@ -375,6 +375,9 @@ class PathMapper(object): if path.startswith('test/results/'): return minimal + if path.startswith('test/legacy/'): + return minimal + if path.startswith('test/integration/roles/'): return minimal @@ -405,6 +408,9 @@ class PathMapper(object): if self.prefixes.get(name) == 'network' and ext == '.yaml': return minimal # network integration test playbooks are not used by ansible-test + if filename == 'network-all.yaml': + return minimal # network integration test playbook not used by ansible-test + if filename == 'platform_agnostic.yaml': return minimal # network integration test playbook not used by ansible-test