Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
beat
beat.cmdline
Commits
693a8030
Commit
693a8030
authored
May 03, 2019
by
Samuel GAIST
Browse files
[test][toolchains] Moved local test to AssetLocalTest
parent
7bf7a46a
Pipeline
#29869
passed with stage
in 6 minutes and 11 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
beat/cmdline/test/test_toolchains.py
View file @
693a8030
...
...
@@ -39,154 +39,129 @@
import
os
import
nose.tools
import
click
from
click.testing
import
CliRunner
from
.
import
platform
,
disconnected
,
prefix
,
tmp_prefix
,
user
,
token
from
..common
import
Selector
from
beat.cmdline.scripts
import
main_cli
from
beat.core.test.utils
import
slow
,
cleanup
,
skipif
from
beat.core.toolchain
import
Storage
,
Toolchain
from
.
import
core
from
.
import
platform
,
disconnected
,
prefix
,
tmp_prefix
,
user
,
token
def
call
(
*
args
,
**
kwargs
):
'''A central mechanism to call the main routine with the right parameters'''
use_prefix
=
kwargs
.
get
(
'prefix'
,
prefix
)
use_platform
=
kwargs
.
get
(
'platform'
,
platform
)
runner
=
CliRunner
()
with
runner
.
isolated_filesystem
():
result
=
runner
.
invoke
(
main_cli
.
main
,
[
'--test-mode'
,
'--prefix'
,
use_prefix
,
'--token'
,
token
,
'--user'
,
user
,
'--platform'
,
use_platform
,
'toolchains'
]
+
list
(
args
)
)
if
result
.
exit_code
!=
0
:
click
.
echo
(
result
.
output
)
return
result
.
exit_code
"""A central mechanism to call the main routine with the right parameters"""
use_prefix
=
kwargs
.
get
(
"prefix"
,
prefix
)
use_platform
=
kwargs
.
get
(
"platform"
,
platform
)
runner
=
CliRunner
()
with
runner
.
isolated_filesystem
():
result
=
runner
.
invoke
(
main_cli
.
main
,
[
"--test-mode"
,
"--prefix"
,
use_prefix
,
"--token"
,
token
,
"--user"
,
user
,
"--platform"
,
use_platform
,
"toolchains"
,
]
+
list
(
args
),
)
if
result
.
exit_code
!=
0
:
click
.
echo
(
result
.
output
)
return
result
.
exit_code
@
slow
@
nose
.
tools
.
with_setup
(
teardown
=
cleanup
)
@
skipif
(
disconnected
,
"missing test platform (%s)"
%
platform
)
def
test_remote_list
():
nose
.
tools
.
eq_
(
call
(
'
list
'
,
'
--remote
'
),
0
)
nose
.
tools
.
eq_
(
call
(
"
list
"
,
"
--remote
"
),
0
)
@
slow
@
nose
.
tools
.
with_setup
(
teardown
=
cleanup
)
@
skipif
(
disconnected
,
"missing test platform (%s)"
%
platform
)
def
test_pull_one
(
obj
=
None
):
obj
=
obj
or
'
user/single/1
'
nose
.
tools
.
eq_
(
call
(
'
pull
'
,
obj
,
prefix
=
tmp_prefix
),
0
)
s
=
Storage
(
tmp_prefix
,
obj
)
assert
s
.
exists
()
obj
=
obj
or
"
user/single/1
"
nose
.
tools
.
eq_
(
call
(
"
pull
"
,
obj
,
prefix
=
tmp_prefix
),
0
)
s
=
Storage
(
tmp_prefix
,
obj
)
nose
.
tools
.
assert_true
(
s
.
exists
()
)
@
slow
@
nose
.
tools
.
with_setup
(
teardown
=
cleanup
)
@
skipif
(
disconnected
,
"missing test platform (%s)"
%
platform
)
def
test_pull_all
():
nose
.
tools
.
eq_
(
call
(
'
pull
'
,
prefix
=
tmp_prefix
),
0
)
nose
.
tools
.
eq_
(
call
(
"
pull
"
,
prefix
=
tmp_prefix
),
0
)
@
slow
@
nose
.
tools
.
with_setup
(
teardown
=
cleanup
)
@
skipif
(
disconnected
,
"missing test platform (%s)"
%
platform
)
def
test_diff
():
obj
=
'
user/single/1
'
nose
.
tools
.
eq_
(
call
(
'
pull
'
,
obj
,
prefix
=
tmp_prefix
),
0
)
obj
=
"
user/single/1
"
nose
.
tools
.
eq_
(
call
(
"
pull
"
,
obj
,
prefix
=
tmp_prefix
),
0
)
# quickly modify the user toolchain:
f
=
Toolchain
(
tmp_prefix
,
obj
)
f
.
data
[
'
representation
'
][
'
blocks
'
][
'
echo
'
][
'
height
'
]
=
2
f
.
write
()
# quickly modify the user toolchain:
f
=
Toolchain
(
tmp_prefix
,
obj
)
f
.
data
[
"
representation
"
][
"
blocks
"
][
"
echo
"
][
"
height
"
]
=
2
f
.
write
()
nose
.
tools
.
eq_
(
call
(
'
diff
'
,
obj
,
prefix
=
tmp_prefix
),
0
)
nose
.
tools
.
eq_
(
call
(
"
diff
"
,
obj
,
prefix
=
tmp_prefix
),
0
)
@
slow
@
nose
.
tools
.
with_setup
(
teardown
=
cleanup
)
@
skipif
(
disconnected
,
"missing test platform (%s)"
%
platform
)
def
test_status
():
test_diff
()
test_pull_one
()
nose
.
tools
.
eq_
(
call
(
'status'
,
prefix
=
tmp_prefix
),
0
)
def
test_check_valid
():
obj
=
'user/single/1'
nose
.
tools
.
eq_
(
call
(
'check'
,
obj
),
0
)
def
test_check_invalid
():
obj
=
'user/does_not_exist/1'
nose
.
tools
.
eq_
(
call
(
'check'
,
obj
),
1
)
@
nose
.
tools
.
with_setup
(
teardown
=
cleanup
)
def
test_create
(
obj
=
None
):
obj
=
obj
or
'user/toolchain/1'
nose
.
tools
.
eq_
(
call
(
'create'
,
obj
,
prefix
=
tmp_prefix
),
0
)
s
=
Storage
(
tmp_prefix
,
obj
)
assert
s
.
exists
()
return
s
@
nose
.
tools
.
with_setup
(
teardown
=
cleanup
)
def
test_new_version
():
obj
=
'user/toolchain/1'
test_create
(
obj
)
obj2
=
'user/toolchain/2'
nose
.
tools
.
eq_
(
call
(
'version'
,
obj
,
prefix
=
tmp_prefix
),
0
)
s
=
Storage
(
tmp_prefix
,
obj2
)
assert
s
.
exists
()
# check version status
with
Selector
(
tmp_prefix
)
as
selector
:
assert
selector
.
version_of
(
'toolchain'
,
obj2
)
==
obj
@
nose
.
tools
.
with_setup
(
teardown
=
cleanup
)
def
test_fork
():
obj
=
'user/toolchain/1'
test_create
(
obj
)
obj2
=
'user/different/1'
nose
.
tools
.
eq_
(
call
(
'fork'
,
obj
,
obj2
,
prefix
=
tmp_prefix
),
0
)
s
=
Storage
(
tmp_prefix
,
obj2
)
assert
s
.
exists
()
# check fork status
with
Selector
(
tmp_prefix
)
as
selector
:
assert
selector
.
forked_from
(
'toolchain'
,
obj2
)
==
obj
@
nose
.
tools
.
with_setup
(
teardown
=
cleanup
)
def
test_delete_local
():
obj
=
'user/toolchain/1'
storage
=
test_create
(
obj
)
nose
.
tools
.
eq_
(
call
(
'rm'
,
obj
,
prefix
=
tmp_prefix
),
0
)
assert
not
storage
.
exists
()
test_diff
()
test_pull_one
()
nose
.
tools
.
eq_
(
call
(
"status"
,
prefix
=
tmp_prefix
),
0
)
@
nose
.
tools
.
with_setup
(
teardown
=
cleanup
)
@
skipif
(
disconnected
,
"missing test platform (%s)"
%
platform
)
def
test_push_and_delete
():
obj
=
'
user/newobject/1
'
test_
create
(
obj
)
obj
=
"
user/newobject/1
"
TestToolchainLocal
.
create
(
obj
)
# now push the new object and then delete it remotely
nose
.
tools
.
eq_
(
call
(
'
push
'
,
obj
,
prefix
=
tmp_prefix
),
0
)
nose
.
tools
.
eq_
(
call
(
'
rm
'
,
'
--remote
'
,
obj
,
prefix
=
tmp_prefix
),
0
)
# now push the new object and then delete it remotely
nose
.
tools
.
eq_
(
call
(
"
push
"
,
obj
,
prefix
=
tmp_prefix
),
0
)
nose
.
tools
.
eq_
(
call
(
"
rm
"
,
"
--remote
"
,
obj
,
prefix
=
tmp_prefix
),
0
)
@
nose
.
tools
.
with_setup
(
teardown
=
cleanup
)
@
skipif
(
disconnected
,
"missing test platform (%s)"
%
platform
)
def
test_draw
():
obj
=
'user/double_triangle/1'
test_pull_one
(
obj
)
obj
=
"user/double_triangle/1"
test_pull_one
(
obj
)
# now push the new object and then delete it remotely
nose
.
tools
.
eq_
(
call
(
"draw"
,
"--path=%s"
%
tmp_prefix
,
prefix
=
tmp_prefix
),
0
)
nose
.
tools
.
assert_true
(
os
.
path
.
exists
(
os
.
path
.
join
(
tmp_prefix
,
"toolchains"
,
obj
+
".png"
))
)
nose
.
tools
.
assert_true
(
os
.
path
.
exists
(
os
.
path
.
join
(
tmp_prefix
,
"toolchains"
,
obj
+
".dot"
))
)
# now push the new object and then delete it remotely
nose
.
tools
.
eq_
(
call
(
'draw'
,
'--path=%s'
%
tmp_prefix
,
prefix
=
tmp_prefix
),
0
)
assert
os
.
path
.
exists
(
os
.
path
.
join
(
tmp_prefix
,
'toolchains'
,
obj
+
'.dot'
))
assert
os
.
path
.
exists
(
os
.
path
.
join
(
tmp_prefix
,
'toolchains'
,
obj
+
'.png'
))
class
TestToolchainLocal
(
core
.
AssetLocalTest
):
storage_cls
=
Storage
asset_type
=
"toolchain"
object_map
=
{
"valid"
:
"user/double_triangle/1"
,
"invalid"
:
"user/invalid/1"
,
"create"
:
"user/new_toolchain/1"
,
"new"
:
"user/new_toolchain/2"
,
"fork"
:
"user/forked_toolchain/1"
,
}
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