From 159b0f628d6fe838b007ab8efc2039d9822c69f1 Mon Sep 17 00:00:00 2001 From: Jordan Borean Date: Fri, 19 Jan 2018 11:42:20 +1000 Subject: [PATCH] copy tests: only create recursive symlink in tests (#35073) (cherry picked from commit 9106284c1ce4b7b298ec0c5d87ac372917e7eb94) --- .../targets/copy/files/subdir/subdir1/circles | 1 - test/integration/targets/copy/tasks/main.yml | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) delete mode 120000 test/integration/targets/copy/files/subdir/subdir1/circles diff --git a/test/integration/targets/copy/files/subdir/subdir1/circles b/test/integration/targets/copy/files/subdir/subdir1/circles deleted file mode 120000 index b870225aa0..0000000000 --- a/test/integration/targets/copy/files/subdir/subdir1/circles +++ /dev/null @@ -1 +0,0 @@ -../ \ No newline at end of file diff --git a/test/integration/targets/copy/tasks/main.yml b/test/integration/targets/copy/tasks/main.yml index 274712a7e7..9b48afab6f 100644 --- a/test/integration/targets/copy/tasks/main.yml +++ b/test/integration/targets/copy/tasks/main.yml @@ -10,6 +10,15 @@ # output_dir is hardcoded in test/runner/lib/executor.py and created there remote_dir: '{{ output_dir }}' + - file: path={{local_temp_dir}} state=directory + name: ensure temp dir exists + + # file cannot do this properly, use command instead + - name: Create ciruclar symbolic link + command: ln -s ../ circles + args: + chdir: '{{role_path}}/files/subdir/subdir1' + - name: Create remote unprivileged remote user user: name: '{{ remote_unprivileged_user }}' @@ -46,6 +55,12 @@ state: absent connection: local + - name: Remove circular symbolic link + file: + path: subdir/subdir1/circles + state: absent + connection: local + - name: Remote unprivileged remote user user: name: '{{ remote_unprivileged_user }}'