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.examples
Commits
7fc54f7d
Commit
7fc54f7d
authored
May 08, 2016
by
André Anjos
💬
Browse files
[test] New test cases with algorithms that sleep for a longer time
parent
66189f02
Pipeline
#1865
skipped
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
test/algorithms/username/integers_echo_sleep/1.json
0 → 100644
View file @
7fc54f7d
{
"language"
:
"python"
,
"splittable"
:
true
,
"groups"
:
[
{
"name"
:
"main"
,
"inputs"
:
{
"in_data"
:
{
"type"
:
"{{ system_user.username }}/integer/1"
}
},
"outputs"
:
{
"out_data"
:
{
"type"
:
"{{ system_user.username }}/integer/1"
}
}
}
],
"parameters"
:
{
"delay"
:
{
"default"
:
"30"
,
"type"
:
"uint32"
,
"description"
:
"Time to sleep in seconds"
}
}
}
test/algorithms/username/integers_echo_sleep/1.py
0 → 100644
View file @
7fc54f7d
###############################################################################
# #
# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ #
# Contact: beat.support@idiap.ch #
# #
# This file is part of the beat.core module of the BEAT platform. #
# #
# Commercial License Usage #
# Licensees holding valid commercial BEAT licenses may use this file in #
# accordance with the terms contained in a written agreement between you #
# and Idiap. For further information contact tto@idiap.ch #
# #
# Alternatively, this file may be used under the terms of the GNU Affero #
# Public License version 3 as published by the Free Software and appearing #
# in the file LICENSE.AGPL included in the packaging of this file. #
# The BEAT platform is distributed in the hope that it will be useful, but #
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY #
# or FITNESS FOR A PARTICULAR PURPOSE. #
# #
# You should have received a copy of the GNU Affero Public License along #
# with the BEAT platform. If not, see http://www.gnu.org/licenses/. #
# #
###############################################################################
import
time
class
Algorithm
:
def
setup
(
self
,
parameters
):
self
.
delay
=
parameters
[
'delay'
]
def
process
(
self
,
inputs
,
outputs
):
time
.
sleep
(
self
.
delay
)
outputs
[
'out_data'
].
write
(
inputs
[
'in_data'
].
data
)
return
True
test/experiments/username/username/single/1/single_sleep.json
0 → 100644
View file @
7fc54f7d
{
"analyzers"
:
{
"analysis"
:
{
"algorithm"
:
"{{ user.username }}/integers_echo_analyzer/1"
,
"inputs"
:
{
"in_data"
:
"in"
}
}
},
"blocks"
:
{
"echo"
:
{
"algorithm"
:
"{{ user.username }}/integers_echo_sleep/1"
,
"inputs"
:
{
"in_data"
:
"in"
},
"outputs"
:
{
"out_data"
:
"out"
}
}
},
"datasets"
:
{
"set"
:
{
"database"
:
"simple/1"
,
"protocol"
:
"protocol"
,
"set"
:
"set"
}
},
"globals"
:
{
"queue"
:
"{{ queue }}"
,
"environment"
:
{
"name"
:
"{{ environment.name }}"
,
"version"
:
"{{ environment.version }}"
}
}
}
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