Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
7e89a4cf
Commit
7e89a4cf
authored
Feb 19, 2014
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add tests for subversion module. Should be approximate pattern for git and hg modules.
parent
d11d9fd6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
101 additions
and
0 deletions
+101
-0
tests_new/integration/non_destructive.yml
+1
-0
tests_new/integration/roles/test_subversion/meta/main.yml
+3
-0
tests_new/integration/roles/test_subversion/tasks/main.yml
+97
-0
No files found.
tests_new/integration/non_destructive.yml
View file @
7e89a4cf
...
@@ -7,4 +7,5 @@
...
@@ -7,4 +7,5 @@
-
{
role
:
test_file
,
tags
:
test_file
}
-
{
role
:
test_file
,
tags
:
test_file
}
-
{
role
:
test_fetch
,
tags
:
test_fetch
}
-
{
role
:
test_fetch
,
tags
:
test_fetch
}
-
{
role
:
test_synchronize
,
tags
:
test_synchronize
}
-
{
role
:
test_synchronize
,
tags
:
test_synchronize
}
-
{
role
:
test_subversion
,
tags
:
test_subversion
}
tests_new/integration/roles/test_subversion/meta/main.yml
0 → 100644
View file @
7e89a4cf
dependencies
:
-
prepare_tests
tests_new/integration/roles/test_subversion/tasks/main.yml
0 → 100644
View file @
7e89a4cf
# 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"
# ],
# "befbore": 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
:
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 presense of tags/trunk/branches
assert
:
that
:
-
"
tags.stat.isdir"
-
"
trunk.stat.isdir"
-
"
branches.stat.isdir"
# FIXME: this needs to be fixed in the code see GitHub 6079
#- name: verify on a reclone things are marked unchanged
# assert:
# that:
# - "not subverted.changed"
# TBA: test for additional options or URL variants welcome
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment