Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
beat.core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
beat
beat.core
Commits
ec6242b7
Commit
ec6242b7
authored
6 years ago
by
Samuel GAIST
Browse files
Options
Downloads
Patches
Plain Diff
[test][algorithm_loading] Code cleanup
parent
95c6787a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!62
Code cleanup
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
beat/core/test/test_algorithm_loading.py
+32
-17
32 additions, 17 deletions
beat/core/test/test_algorithm_loading.py
with
32 additions
and
17 deletions
beat/core/test/test_algorithm_loading.py
+
32
−
17
View file @
ec6242b7
...
...
@@ -34,7 +34,6 @@
###################################################################################
import
six
import
nose.tools
from
..algorithm
import
Algorithm
...
...
@@ -49,7 +48,9 @@ from .utils import cleanup
def
test_load_default_algorithm
():
algorithm
=
Algorithm
(
prefix
,
data
=
None
)
assert
algorithm
.
valid
,
"
\n
* %s
"
%
"
\n
*
"
.
join
(
algorithm
.
errors
)
nose
.
tools
.
assert_true
(
algorithm
.
valid
,
"
\n
* %s
"
%
"
\n
*
"
.
join
(
algorithm
.
errors
)
)
# ----------------------------------------------------------
...
...
@@ -58,8 +59,10 @@ def test_load_default_algorithm():
def
test_missing_inputs
():
algorithm
=
Algorithm
(
prefix
,
"
user/no_inputs_declarations/1
"
)
assert
algorithm
.
valid
is
False
assert
algorithm
.
errors
[
0
].
find
(
"'
inputs
'
is a required property
"
)
!=
-
1
nose
.
tools
.
assert_false
(
algorithm
.
valid
)
nose
.
tools
.
assert_not_equal
(
algorithm
.
errors
[
0
].
find
(
"'
inputs
'
is a required property
"
),
-
1
)
# ----------------------------------------------------------
...
...
@@ -68,8 +71,10 @@ def test_missing_inputs():
def
test_missing_outputs
():
algorithm
=
Algorithm
(
prefix
,
"
user/no_outputs_declarations/1
"
)
assert
algorithm
.
valid
is
False
assert
algorithm
.
errors
[
0
].
find
(
"'
outputs
'
is a required property
"
)
!=
-
1
nose
.
tools
.
assert_false
(
algorithm
.
valid
)
nose
.
tools
.
assert_not_equal
(
algorithm
.
errors
[
0
].
find
(
"'
outputs
'
is a required property
"
),
-
1
)
# ----------------------------------------------------------
...
...
@@ -78,8 +83,10 @@ def test_missing_outputs():
def
test_invalid_loop_channel
():
algorithm
=
Algorithm
(
prefix
,
"
schema/invalid_loop_channel/1
"
)
assert
algorithm
.
valid
is
False
assert
algorithm
.
errors
[
0
].
find
(
"'
request
'
is a required property
"
)
!=
-
1
nose
.
tools
.
assert_false
(
algorithm
.
valid
)
nose
.
tools
.
assert_not_equal
(
algorithm
.
errors
[
0
].
find
(
"'
request
'
is a required property
"
),
-
1
)
# ----------------------------------------------------------
...
...
@@ -88,33 +95,41 @@ def test_invalid_loop_channel():
def
test_v2
():
algorithm
=
Algorithm
(
prefix
,
"
user/integers_add_v2/1
"
)
assert
algorithm
.
valid
,
"
\n
* %s
"
%
"
\n
*
"
.
join
(
algorithm
.
errors
)
nose
.
tools
.
assert_true
(
algorithm
.
valid
,
"
\n
* %s
"
%
"
\n
*
"
.
join
(
algorithm
.
errors
)
)
def
test_analyzer_v2
():
algorithm
=
Algorithm
(
prefix
,
"
user/integers_echo_analyzer_v2/1
"
)
assert
algorithm
.
valid
,
"
\n
* %s
"
%
"
\n
*
"
.
join
(
algorithm
.
errors
)
nose
.
tools
.
assert_true
(
algorithm
.
valid
,
"
\n
* %s
"
%
"
\n
*
"
.
join
(
algorithm
.
errors
)
)
def
test_v3
():
algorithm
=
Algorithm
(
prefix
,
"
autonomous/loop/1
"
)
assert
algorithm
.
valid
,
"
\n
* %s
"
%
"
\n
*
"
.
join
(
algorithm
.
errors
)
nose
.
tools
.
assert_true
(
algorithm
.
valid
,
"
\n
* %s
"
%
"
\n
*
"
.
join
(
algorithm
.
errors
)
)
algorithm
=
Algorithm
(
prefix
,
"
autonomous/loop_user/1
"
)
assert
algorithm
.
valid
,
"
\n
* %s
"
%
"
\n
*
"
.
join
(
algorithm
.
errors
)
nose
.
tools
.
assert_true
(
algorithm
.
valid
,
"
\n
* %s
"
%
"
\n
*
"
.
join
(
algorithm
.
errors
)
)
def
test_invalid_v3
():
algorithm
=
Algorithm
(
prefix
,
"
schema/invalid_loop_output/1
"
)
assert
not
algorithm
.
valid
nose
.
tools
.
assert_false
(
algorithm
.
valid
)
algorithm
=
Algorithm
(
prefix
,
"
schema/invalid_loop_type/1
"
)
assert
not
algorithm
.
valid
nose
.
tools
.
assert_false
(
algorithm
.
valid
)
algorithm
=
Algorithm
(
prefix
,
"
schema/invalid_loop_user_type/1
"
)
assert
not
algorithm
.
valid
nose
.
tools
.
assert_false
(
algorithm
.
valid
)
# ----------------------------------------------------------
...
...
@@ -125,10 +140,10 @@ def test_export():
name
=
"
user/for_dep/1
"
obj
=
Algorithm
(
prefix
,
name
)
assert
obj
.
valid
,
"
\n
* %s
"
%
"
\n
*
"
.
join
(
obj
.
errors
)
nose
.
tools
.
assert_true
(
obj
.
valid
,
"
\n
* %s
"
%
"
\n
*
"
.
join
(
obj
.
errors
)
)
obj
.
export
(
tmp_prefix
)
# load from tmp_prefix and validates
exported
=
Algorithm
(
tmp_prefix
,
name
)
assert
exported
.
valid
,
"
\n
* %s
"
%
"
\n
*
"
.
join
(
exported
.
errors
)
nose
.
tools
.
assert_true
(
exported
.
valid
,
"
\n
* %s
"
%
"
\n
*
"
.
join
(
exported
.
errors
)
)
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