summaryrefslogtreecommitdiff
path: root/test/integration/roles/test_subversion/tasks/main.yml
blob: 74d1113bc822f32f5e284318b90c057df072f928 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# test code for the svn module
# (c) 2014, Michael DeHaan <michael.dehaan@gmail.com>

# This file is part of Ansible
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible.  If not, see <http://www.gnu.org/licenses/>.

- name: set where to extract the repo
  set_fact: checkout_dir={{ output_dir }}/svn

- name: set what repo to use
  set_fact: repo=https://github.com/jimi-c/test_role

- name: clean out the output_dir
  shell: rm -rf {{ output_dir }}/*

- name: verify that subversion is installed so this test can continue
  shell: which svn

# checks out every branch so using a small repo

- name: initial checkout
  subversion: repo={{ repo }} dest={{ checkout_dir }}
  register: subverted

- debug: var=subverted

- shell: ls ~/ansible_testing/svn

# FIXME: the before/after logic here should be fixed to make them hashes, see GitHub 6078
# looks like this: {
#        "after": [
#            "Revision: 9", 
#            "URL: https://github.com/jimi-c/test_role"
#        ], 
#        "before": null, 
#        "changed": true, 
#        "invocation": {
#            "module_args": "repo=https://github.com/jimi-c/test_role dest=~/ansible_testing/svn", 
#            "module_name": "subversion"
#        }, 
#        "item": ""
# }

- name: verify information about the initial clone
  assert:
    that:
      - "'after' in subverted"
      - "subverted.after.1 == 'URL: https://github.com/jimi-c/test_role'"
      - "not subverted.before"
      - "subverted.changed"

- name: repeated checkout
  subversion: repo={{ repo }} dest={{ checkout_dir }}
  register: subverted2

- name: verify on a reclone things are marked unchanged
  assert:
    that:
      - "not subverted2.changed"

- name: check for tags
  stat: path={{ checkout_dir }}/tags
  register: tags

- name: check for trunk
  stat: path={{ checkout_dir }}/trunk
  register: trunk

- name: check for branches
  stat: path={{ checkout_dir }}/branches
  register: branches

- name: assert presence of tags/trunk/branches
  assert:
    that:
      - "tags.stat.isdir"
      - "trunk.stat.isdir"
      - "branches.stat.isdir"

- name: checkout with quotes in username
  subversion: repo={{ repo }} dest={{ checkout_dir }} username="quoteme'''"
  register: subverted3

- debug: var=subverted3

- name: checkout with export
  subversion: repo={{ repo }} dest={{ output_dir }}/svn-export export=True
  register: subverted4

- name: check for tags
  stat: path={{ output_dir }}/svn-export/tags
  register: export_tags

- name: check for trunk
  stat: path={{ output_dir }}/svn-export/trunk
  register: expoort_trunk

- name: check for branches
  stat: path={{ output_dir }}/svn-export/branches
  register: export_branches

- name: assert presence of tags/trunk/branches in export
  assert:
    that:
      - "export_tags.stat.isdir"
      - "export_trunk.stat.isdir"
      - "export_branches.stat.isdir"
      - "subverted4.changed"

# TBA: test for additional options or URL variants welcome