Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CIRCLE
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
94
Merge Requests
10
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
A prog2-höz tartozó friss repo anyagok itt elérhetőek:
https://git.iit.bme.hu/
Commit
d68c66a0
authored
Apr 01, 2014
by
Dudás Ádám
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vm: add tests for operations
parent
98987712
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
98 additions
and
0 deletions
+98
-0
circle/vm/tests/test_operations.py
+98
-0
No files found.
circle/vm/tests/test_operations.py
0 → 100644
View file @
d68c66a0
from
mock
import
MagicMock
,
patch
from
django.test
import
TestCase
from
vm.models
import
Instance
from
vm.operations
import
(
Operation
,
DeployOperation
,
DestroyOperation
,
MigrateOperation
,
RebootOperation
,
RedeployOperation
,
ResetOperation
,
SaveAsTemplateOperation
,
ShutdownOperation
,
ShutOffOperation
,
SleepOperation
,
WakeUpOperation
,
)
from
vm.tasks.local_tasks
import
async_operation
class
OperationTestCase
(
TestCase
):
def
test_activity_created_before_async_job
(
self
):
class
AbortEx
(
Exception
):
pass
op
=
Operation
(
MagicMock
())
op
.
activity_code_suffix
=
'test'
op
.
id
=
'test'
with
patch
.
object
(
async_operation
,
'apply_async'
,
side_effect
=
AbortEx
):
with
patch
.
object
(
Operation
,
'check_precond'
):
with
patch
.
object
(
Operation
,
'create_activity'
)
as
create_act
:
try
:
op
.
async
(
system
=
True
)
except
AbortEx
:
self
.
assertTrue
(
create_act
.
called
)
def
test_check_precond_called_before_create_activity
(
self
):
class
AbortEx
(
Exception
):
pass
op
=
Operation
(
MagicMock
())
op
.
activity_code_suffix
=
'test'
op
.
id
=
'test'
with
patch
.
object
(
Operation
,
'create_activity'
,
side_effect
=
AbortEx
):
with
patch
.
object
(
Operation
,
'check_precond'
)
as
chk_pre
:
try
:
op
.
call
(
system
=
True
)
except
AbortEx
:
self
.
assertTrue
(
chk_pre
.
called
)
class
DeployOperationTestCase
(
TestCase
):
def
test_operation_registered
(
self
):
assert
DeployOperation
.
id
in
Instance
.
_ops
class
DestroyOperationTestCase
(
TestCase
):
def
test_operation_registered
(
self
):
assert
DestroyOperation
.
id
in
Instance
.
_ops
class
MigrateOperationTestCase
(
TestCase
):
def
test_operation_registered
(
self
):
assert
MigrateOperation
.
id
in
Instance
.
_ops
class
RebootOperationTestCase
(
TestCase
):
def
test_operation_registered
(
self
):
assert
RebootOperation
.
id
in
Instance
.
_ops
class
RedeployOperationTestCase
(
TestCase
):
def
test_operation_registered
(
self
):
assert
RedeployOperation
.
id
in
Instance
.
_ops
class
ResetOperationTestCase
(
TestCase
):
def
test_operation_registered
(
self
):
assert
ResetOperation
.
id
in
Instance
.
_ops
class
SaveAsTemplateOperationTestCase
(
TestCase
):
def
test_operation_registered
(
self
):
assert
SaveAsTemplateOperation
.
id
in
Instance
.
_ops
class
ShutdownOperationTestCase
(
TestCase
):
def
test_operation_registered
(
self
):
assert
ShutdownOperation
.
id
in
Instance
.
_ops
class
ShutOffOperationTestCase
(
TestCase
):
def
test_operation_registered
(
self
):
assert
ShutOffOperation
.
id
in
Instance
.
_ops
class
SleepOperationTestCase
(
TestCase
):
def
test_operation_registered
(
self
):
assert
SleepOperation
.
id
in
Instance
.
_ops
class
WakeUpOperationTestCase
(
TestCase
):
def
test_operation_registered
(
self
):
assert
WakeUpOperation
.
id
in
Instance
.
_ops
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