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
a37a6983
Commit
a37a6983
authored
Feb 26, 2014
by
James Tanner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Switch from skipIf to SkipTest for TestVaulLib
parent
b758ed94
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
test/units/TestVault.py
+8
-4
No files found.
test/units/TestVault.py
View file @
a37a6983
#!/usr/bin/env python
import
unittest
from
unittest
import
TestCase
import
getpass
import
os
...
...
@@ -65,8 +64,9 @@ class TestVaultLib(TestCase):
assert
v
.
cipher_name
==
'TEST'
,
"cipher name was not set"
assert
v
.
version
==
"9.9"
@unittest.skipIf
(
not
HAS_AES
,
"aes not installed"
)
def
test_encyrpt_decrypt
(
self
):
if
not
HAS_AES
:
raise
SkipTest
v
=
VaultLib
(
'ansible'
)
v
.
cipher_name
=
'AES'
enc_data
=
v
.
encrypt
(
"foobar"
)
...
...
@@ -74,8 +74,9 @@ class TestVaultLib(TestCase):
assert
enc_data
!=
"foobar"
,
"encryption failed"
assert
dec_data
==
"foobar"
,
"decryption failed"
@unittest.skipIf
(
not
HAS_AES
,
"aes not installed"
)
def
test_encrypt_encrypted
(
self
):
if
not
HAS_AES
:
raise
SkipTest
v
=
VaultLib
(
'ansible'
)
v
.
cipher_name
=
'AES'
data
=
"$ANSIBLE_VAULT;9.9;TEST
\n
%
s"
%
hexlify
(
"ansible"
)
...
...
@@ -87,6 +88,8 @@ class TestVaultLib(TestCase):
assert
error_hit
,
"No error was thrown when trying to encrypt data with a header"
def
test_decrypt_decrypted
(
self
):
if
not
HAS_AES
:
raise
SkipTest
v
=
VaultLib
(
'ansible'
)
data
=
"ansible"
error_hit
=
False
...
...
@@ -96,8 +99,9 @@ class TestVaultLib(TestCase):
error_hit
=
True
assert
error_hit
,
"No error was thrown when trying to decrypt data without a header"
@unittest.skipIf
(
not
HAS_AES
,
"aes not installed"
)
def
test_cipher_not_set
(
self
):
if
not
HAS_AES
:
raise
SkipTest
v
=
VaultLib
(
'ansible'
)
data
=
"ansible"
error_hit
=
False
...
...
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