Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gutyán Gábor
/
circlestack
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
ec8a25ba
authored
Aug 02, 2016
by
Dudás Ádám
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'issue-457' into 'master'
Terminal icon See merge request !382
parents
3cff165b
870fde3d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
circle/dashboard/tests/test_mockedviews.py
+4
-2
circle/dashboard/views/vm.py
+3
-0
No files found.
circle/dashboard/tests/test_mockedviews.py
View file @
ec8a25ba
...
...
@@ -52,7 +52,8 @@ class ViewUserTestCase(unittest.TestCase):
def
test_not_superuser
(
self
):
request
=
FakeRequestFactory
(
superuser
=
False
)
with
patch
.
object
(
InstanceActivityDetail
,
'get_object'
)
as
go
:
go
.
return_value
=
MagicMock
(
spec
=
InstanceActivity
)
go
.
return_value
=
MagicMock
(
spec
=
InstanceActivity
,
activity_code
=
'test.test'
)
go
.
return_value
.
_meta
.
object_name
=
"InstanceActivity"
view
=
InstanceActivityDetail
.
as_view
()
self
.
assertEquals
(
view
(
request
,
pk
=
1234
)
.
status_code
,
200
)
...
...
@@ -61,7 +62,8 @@ class ViewUserTestCase(unittest.TestCase):
request
=
FakeRequestFactory
(
superuser
=
True
)
with
patch
.
object
(
InstanceActivityDetail
,
'get_object'
)
as
go
:
act
=
MagicMock
(
spec
=
InstanceActivity
)
act
=
MagicMock
(
spec
=
InstanceActivity
,
activity_code
=
'test.test'
)
act
.
_meta
.
object_name
=
"InstanceActivity"
act
.
user
.
pk
=
1
go
.
return_value
=
act
...
...
circle/dashboard/views/vm.py
View file @
ec8a25ba
...
...
@@ -46,6 +46,7 @@ from braces.views import SuperuserRequiredMixin, LoginRequiredMixin
from
common.models
import
(
create_readable
,
HumanReadableException
,
fetch_human_exception
,
split_activity_code
,
)
from
firewall.models
import
Vlan
,
Host
,
Rule
from
manager.scheduler
import
SchedulerError
...
...
@@ -798,6 +799,8 @@ def _get_activity_icon(act):
op
=
act
.
get_operation
()
if
op
and
op
.
id
in
vm_ops
:
return
vm_ops
[
op
.
id
]
.
icon
elif
split_activity_code
(
act
.
activity_code
)[
-
1
]
==
u'console-accessed'
:
return
"terminal"
else
:
return
"cog"
...
...
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