--- /dev/null
+../default/Dockerfile.j2
\ No newline at end of file
 
--- /dev/null
+---
+dependency:
+  name: galaxy
+driver:
+  name: docker
+lint:
+  name: yamllint
+platforms:
+  - name: instance
+    image: centos:7
+provisioner:
+  name: ansible
+  env:
+    ANSIBLE_ROLES_PATH: ../../../../test/roles
+  inventory:
+    group_vars:
+      all:
+        app_name: moleculetestapp
+        app_data_path: "/opt/{{ app_name }}"
+        app_helm_release_name: "{{ app_name }}"
+        app_kubernetes_namespace: "{{ app_name }}"
+        app_helm_charts_install_directory: application/helm_charts
+        app_helm_plugins_directory: "{{ app_helm_charts_install_directory}}/helm/plugins/"
+        app_helm_charts_infra_directory: "{{ app_data_path }}/helm_charts"
+        helm_bin_dir: /usr/local/bin
+        app_helm_build_targets:
+          - all
+          - onap
+        app_helm_chart_name: "{{ app_name }}"
+        application_pre_install_role: application/test-patch-role
+        application_post_install_role: application/test-patch-role
+  lint:
+    name: ansible-lint
+  playbooks:
+    prepare: ../default/prepare.yml
+    converge: ../default/playbook.yml
+scenario:
+  name: custom_role
+  test_sequence:
+    - lint
+    - cleanup
+    - destroy
+    - dependency
+    - syntax
+    - create
+    - prepare
+    - converge
+    - verify
+    - cleanup
+    - destroy
+verifier:
+  name: testinfra
+  lint:
+    name: flake8
 
--- /dev/null
+../default/tests/
\ No newline at end of file
 
           - all
           - onap
         app_helm_chart_name: "{{ app_name }}"
-        application_pre_install_role:
-        application_post_install_role:
   lint:
     name: ansible-lint
 scenario:
 
 ---
 simulate_helm: true
 app_helm_charts_install_directory: application/helm_charts
-helm_simulation_output_file: /tmp/helm_simu_output
\ No newline at end of file
+helm_simulation_output_file: /tmp/helm_simu_output
+application_pre_install_role: application/test-patch-role
+application_post_install_role: application/test-patch-role
 
 ---
-- name: Create Application helm charts directory
+- name: Create application role mocked artifacts directories
   file:
-    path: "{{ app_helm_charts_install_directory }}"
+    path: "{{ item }}"
     state: directory
   delegate_to: localhost
+  loop:
+    - "{{ app_helm_charts_install_directory }}"
+    - certs
+    - "{{ application_pre_install_role + '/tasks/' }}"
+    - "{{ application_post_install_role + '/tasks/' }}"
 
 - name: Create Makefile to simulate helm charts dir and make building
   copy:
     name: make
     state: present
 
-- name: Create local certs dir for dummy certs
-  file:
-    path: certs
-    state: directory
-  delegate_to: localhost
-
 - name: Create dummy cert file to simulate offline server certificates in helm install with override.yml file
   copy:
     content: |
       this is dummy server certificate value
     dest: certs/rootCA.crt
   delegate_to: localhost
+
+- name: Create test patch role files
+  copy:
+    content: |
+      ---
+      - name: Mocked up patch role
+        debug:
+          msg: "Noop task to mock up patch role"
+    dest: application/test-patch-role/tasks/main.yml
+  delegate_to: localhost