Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
Kubespray
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirror
Kubespray
Commits
d5c33e6d
Commit
d5c33e6d
authored
6 years ago
by
Maxime Guyot
Committed by
Kubernetes Prow Robot
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Refactor test cases (#4655)
parent
338eb4ce
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/scripts/testcases_run.sh
+15
-11
15 additions, 11 deletions
tests/scripts/testcases_run.sh
with
15 additions
and
11 deletions
tests/scripts/testcases_run.sh
+
15
−
11
View file @
d5c33e6d
...
...
@@ -9,56 +9,60 @@ ls
echo
${
PWD
}
cd
tests
&&
make create-
${
CI_PLATFORM
}
-s
;
cd
-
export
ANSIBLE_REMOTE_USER
=
$SSH_USER
export
ANSIBLE_BECOME
=
true
export
ANSIBLE_BECOME_USER
=
root
# Check out latest tag if testing upgrade
test
"
${
UPGRADE_TEST
}
"
!=
"false"
&&
git fetch
--all
&&
git checkout
"
$KUBESPRAY_VERSION
"
# Checkout the CI vars file so it is available
test
"
${
UPGRADE_TEST
}
"
!=
"false"
&&
git checkout
"
${
CI_BUILD_REF
}
"
tests/files/
${
CI_JOB_NAME
}
.yml
# Create cluster
ansible-playbook
-i
${
ANSIBLE_INVENTORY
}
-b
--become-user
=
root
--private-key
=
${
HOME
}
/.ssh/id_rsa
-u
$SSH_USER
${
LOG_LEVEL
}
-e
@
${
CI_TEST_VARS
}
-e
ansible_ssh_user
=
${
SSH_USER
}
-e
local_release_dir
=
${
PWD
}
/downloads
--limit
"all:!fake_hosts"
cluster.yml
ansible-playbook
${
LOG_LEVEL
}
-e
@
${
CI_TEST_VARS
}
-e
ansible_ssh_user
=
${
SSH_USER
}
-e
local_release_dir
=
${
PWD
}
/downloads
--limit
"all:!fake_hosts"
cluster.yml
# Repeat deployment if testing upgrade
if
[
"
${
UPGRADE_TEST
}
"
!=
"false"
]
;
then
test
"
${
UPGRADE_TEST
}
"
==
"basic"
&&
PLAYBOOK
=
"cluster.yml"
test
"
${
UPGRADE_TEST
}
"
==
"graceful"
&&
PLAYBOOK
=
"upgrade-cluster.yml"
git checkout
"
${
CI_BUILD_REF
}
"
ansible-playbook
-i
${
ANSIBLE_INVENTORY
}
-b
--become-user
=
root
--private-key
=
${
HOME
}
/.ssh/id_rsa
-u
$SSH_USER
${
LOG_LEVEL
}
-e
@
${
CI_TEST_VARS
}
-e
ansible_ssh_user
=
${
SSH_USER
}
-e
local_release_dir
=
${
PWD
}
/downloads
--limit
"all:!fake_hosts"
$PLAYBOOK
ansible-playbook
${
LOG_LEVEL
}
-e
@
${
CI_TEST_VARS
}
-e
ansible_ssh_user
=
${
SSH_USER
}
-e
local_release_dir
=
${
PWD
}
/downloads
--limit
"all:!fake_hosts"
$PLAYBOOK
fi
# Tests Cases
## Test Master API
ansible-playbook
-i
${
ANSIBLE_INVENTORY
}
-e
ansible_python_interpreter
=
${
PYPATH
}
-u
$SSH_USER
-e
ansible_ssh_user
=
$SSH_USER
-b
--become-user
=
root
--limit
"all:!fake_hosts"
tests/testcases/010_check-apiserver.yml
$LOG_LEVEL
ansible-playbook
-e
ansible_python_interpreter
=
${
PYPATH
}
--limit
"all:!fake_hosts"
tests/testcases/010_check-apiserver.yml
$LOG_LEVEL
## Test that all pods are Running
ansible-playbook
-i
${
ANSIBLE_INVENTORY
}
-e
ansible_python_interpreter
=
${
PYPATH
}
-u
$SSH_USER
-e
ansible_ssh_user
=
$SSH_USER
-b
--become-user
=
root
--limit
"all:!fake_hosts"
tests/testcases/015_check-pods-running.yml
$LOG_LEVEL
ansible-playbook
-e
ansible_python_interpreter
=
${
PYPATH
}
--limit
"all:!fake_hosts"
tests/testcases/015_check-pods-running.yml
$LOG_LEVEL
## Test pod creation and ping between them
ansible-playbook
-i
${
ANSIBLE_INVENTORY
}
-e
ansible_python_interpreter
=
${
PYPATH
}
-u
$SSH_USER
-e
ansible_ssh_user
=
$SSH_USER
-b
--become-user
=
root
--limit
"all:!fake_hosts"
tests/testcases/030_check-network.yml
$LOG_LEVEL
ansible-playbook
-e
ansible_python_interpreter
=
${
PYPATH
}
--limit
"all:!fake_hosts"
tests/testcases/030_check-network.yml
$LOG_LEVEL
## Advanced DNS checks
ansible-playbook
-i
${
ANSIBLE_INVENTORY
}
-e
ansible_python_interpreter
=
${
PYPATH
}
-u
$SSH_USER
-e
ansible_ssh_user
=
$SSH_USER
-b
--become-user
=
root
--limit
"all:!fake_hosts"
tests/testcases/040_check-network-adv.yml
$LOG_LEVEL
ansible-playbook
-e
ansible_python_interpreter
=
${
PYPATH
}
--limit
"all:!fake_hosts"
tests/testcases/040_check-network-adv.yml
$LOG_LEVEL
## Idempotency checks 1/5 (repeat deployment)
if
[
"
${
IDEMPOT_CHECK
}
"
=
"true"
]
;
then
ansible-playbook
-i
${
ANSIBLE_INVENTORY
}
-b
--become-user
=
root
--private-key
=
${
HOME
}
/.ssh/id_rsa
-u
$SSH_USER
${
LOG_LEVEL
}
-e
@
${
CI_TEST_VARS
}
-e
ansible_python_interpreter
=
${
PYPATH
}
-e
local_release_dir
=
${
PWD
}
/downloads
--limit
"all:!fake_hosts"
cluster.yml
ansible-playbook
${
LOG_LEVEL
}
-e
@
${
CI_TEST_VARS
}
-e
ansible_python_interpreter
=
${
PYPATH
}
-e
local_release_dir
=
${
PWD
}
/downloads
--limit
"all:!fake_hosts"
cluster.yml
fi
## Idempotency checks 2/5 (Advanced DNS checks)
if
[
"
${
IDEMPOT_CHECK
}
"
=
"true"
]
;
then
ansible-playbook
-i
${
ANSIBLE_INVENTORY
}
-b
--become-user
=
root
--private-key
=
${
HOME
}
/.ssh/id_rsa
-u
$SSH_USER
${
LOG_LEVEL
}
-e
@
${
CI_TEST_VARS
}
--limit
"all:!fake_hosts"
tests/testcases/040_check-network-adv.yml
ansible-playbook
${
LOG_LEVEL
}
-e
@
${
CI_TEST_VARS
}
--limit
"all:!fake_hosts"
tests/testcases/040_check-network-adv.yml
fi
## Idempotency checks 3/5 (reset deployment)
if
[
"
${
IDEMPOT_CHECK
}
"
=
"true"
-a
"
${
RESET_CHECK
}
"
=
"true"
]
;
then
ansible-playbook
-i
${
ANSIBLE_INVENTORY
}
-b
--become-user
=
root
--private-key
=
${
HOME
}
/.ssh/id_rsa
-u
$SSH_USER
${
LOG_LEVEL
}
-e
@
${
CI_TEST_VARS
}
-e
ansible_python_interpreter
=
${
PYPATH
}
-e
reset_confirmation
=
yes
--limit
"all:!fake_hosts"
reset.yml
ansible-playbook
${
LOG_LEVEL
}
-e
@
${
CI_TEST_VARS
}
-e
ansible_python_interpreter
=
${
PYPATH
}
-e
reset_confirmation
=
yes
--limit
"all:!fake_hosts"
reset.yml
fi
## Idempotency checks 4/5 (redeploy after reset)
if
[
"
${
IDEMPOT_CHECK
}
"
=
"true"
-a
"
${
RESET_CHECK
}
"
=
"true"
]
;
then
ansible-playbook
-i
${
ANSIBLE_INVENTORY
}
-b
--become-user
=
root
--private-key
=
${
HOME
}
/.ssh/id_rsa
-u
$SSH_USER
${
LOG_LEVEL
}
-e
@
${
CI_TEST_VARS
}
-e
ansible_python_interpreter
=
${
PYPATH
}
-e
local_release_dir
=
${
PWD
}
/downloads
--limit
"all:!fake_hosts"
cluster.yml
ansible-playbook
${
LOG_LEVEL
}
-e
@
${
CI_TEST_VARS
}
-e
ansible_python_interpreter
=
${
PYPATH
}
-e
local_release_dir
=
${
PWD
}
/downloads
--limit
"all:!fake_hosts"
cluster.yml
fi
## Idempotency checks 5/5 (Advanced DNS checks)
if
[
"
${
IDEMPOT_CHECK
}
"
=
"true"
-a
"
${
RESET_CHECK
}
"
=
"true"
]
;
then
ansible-playbook
-i
${
ANSIBLE_INVENTORY
}
-e
ansible_python_interpreter
=
${
PYPATH
}
-u
$SSH_USER
-e
ansible_ssh_user
=
$SSH_USER
-b
--become-user
=
root
--limit
"all:!fake_hosts"
tests/testcases/040_check-network-adv.yml
$LOG_LEVEL
ansible-playbook
-e
ansible_python_interpreter
=
${
PYPATH
}
--limit
"all:!fake_hosts"
tests/testcases/040_check-network-adv.yml
$LOG_LEVEL
fi
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment