Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
e3-require
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
Anders Lindh Olsson
e3-require
Commits
0a08a07c
Commit
0a08a07c
authored
2 years ago
by
Simon Rose
Browse files
Options
Downloads
Patches
Plain Diff
Remove sequencer tests
These will be moved to the e3-sequencer module.
parent
5f0067de
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/test_sequencer.py
+0
-130
0 additions, 130 deletions
tests/test_sequencer.py
with
0 additions
and
130 deletions
tests/test_sequencer.py
deleted
100644 → 0
+
0
−
130
View file @
5f0067de
import
pathlib
import
pytest
from
.utils
import
Wrapper
GITLAB_URL
=
"
https://gitlab.esss.lu.se
"
TEST_SEQ_SRC
=
"""
program test
ss ss1 {{
state init {{
when(delay(1)) {{
printf({});
}}
state init
}}
}}
"""
class
Sequencer
(
Wrapper
):
sequencer_url
=
f
"
{
GITLAB_URL
}
/e3/wrappers/core/e3-sequencer.git
"
def
__init__
(
self
,
path
:
pathlib
.
Path
):
super
().
__init__
(
path
,
name
=
"
sequencer
"
,
url
=
self
.
sequencer_url
)
self
.
version
=
"
sequencer_test
"
self
.
write_dot_local_data
(
"
RELEASE
"
,
{
"
EPICS_BASE
"
:
self
.
epics_base
,
"
E3_REQUIRE_VERSION
"
:
self
.
require_version
},
)
self
.
write_dot_local_data
(
"
CONFIG_MODULE
"
,
{
"
E3_MODULE_VERSION
"
:
self
.
version
})
self
.
cell_path
=
self
.
path
/
"
cellMods
"
rc
,
*
_
=
self
.
run_make
(
"
init
"
)
assert
rc
==
0
rc
,
*
_
=
self
.
run_make
(
"
patch
"
)
assert
rc
==
0
rc
,
*
_
=
self
.
run_make
(
"
build
"
)
assert
rc
==
0
rc
,
*
_
=
self
.
run_make
(
"
cellinstall
"
,
cell_path
=
self
.
cell_path
)
assert
rc
==
0
self
.
snc_path
=
(
self
.
cell_path
/
f
"
base-
{
self
.
base_version
}
"
/
f
"
require-
{
self
.
require_version
}
"
/
"
sequencer
"
/
self
.
version
/
"
bin
"
/
self
.
host_arch
/
"
snc
"
)
assert
self
.
snc_path
.
is_file
()
@pytest.fixture
(
scope
=
"
module
"
)
def
sequencer
(
tmp_path_factory
):
path
=
tmp_path_factory
.
mktemp
(
"
sequencer_build
"
)
yield
Sequencer
(
path
)
class
SNLWrapper
(
Wrapper
):
def
__init__
(
self
,
sequencer
:
Sequencer
,
path
:
pathlib
.
Path
):
super
().
__init__
(
path
)
self
.
sequencer
=
sequencer
self
.
add_var_to_config_module
(
"
SEQUENCER_DEP_VERSION
"
,
self
.
sequencer
.
version
)
def
run_make
(
self
,
*
args
):
return
super
().
run_make
(
*
args
,
f
"
E3_CELL_PATH=
{
self
.
sequencer
.
cell_path
}
"
,
f
"
SNC=
{
self
.
sequencer
.
snc_path
}
"
,
)
@pytest.fixture
def
snl_wrapper
(
sequencer
,
tmp_path
):
yield
SNLWrapper
(
sequencer
,
tmp_path
)
@pytest.mark.parametrize
(
"
extension
"
,
[
"
st
"
,
"
stt
"
])
def
test_compile_snl_file
(
snl_wrapper
:
SNLWrapper
,
extension
):
snl_filename
=
"
test_filename
"
seq_source
=
snl_wrapper
.
module_dir
/
f
"
{
snl_filename
}
.
{
extension
}
"
seq_source
.
write_text
(
TEST_SEQ_SRC
.
format
(
'""'
))
snl_wrapper
.
add_var_to_module_makefile
(
"
SOURCES
"
,
f
"
{
snl_filename
}
.
{
extension
}
"
)
rc
,
*
_
=
snl_wrapper
.
run_make
(
"
cellbuild
"
)
assert
rc
==
0
assert
(
snl_wrapper
.
build_dir
/
f
"
{
snl_filename
}
.o
"
).
is_file
()
assert
(
snl_wrapper
.
build_dir
/
f
"
{
snl_filename
}
_snl.dbd
"
).
is_file
()
def
test_preprocess_st_file
(
snl_wrapper
:
SNLWrapper
):
snl_filename
=
"
test_file.st
"
seq_src
=
snl_wrapper
.
module_dir
/
snl_filename
seq_src
.
write_text
(
'
#define MESSAGE
"
waiting
\\
n
"
\n
'
+
TEST_SEQ_SRC
.
format
(
"
MESSAGE
"
)
)
snl_wrapper
.
add_var_to_module_makefile
(
"
SOURCES
"
,
snl_filename
)
rc
,
*
_
=
snl_wrapper
.
run_make
(
"
cellbuild
"
)
assert
rc
==
0
def
test_do_not_preprocess_stt_file
(
snl_wrapper
:
SNLWrapper
):
snl_filename
=
"
test_file
"
seq_src
=
snl_wrapper
.
module_dir
/
f
"
{
snl_filename
}
.stt
"
seq_src
.
write_text
(
'
#define MESSAGE
"
waiting
\\
n
"
\n
'
+
TEST_SEQ_SRC
.
format
(
"
MESSAGE
"
)
)
snl_wrapper
.
add_var_to_module_makefile
(
"
SOURCES
"
,
f
"
{
snl_filename
}
.stt
"
)
rc
,
_
,
errs
=
snl_wrapper
.
run_make
(
"
cellbuild
"
)
assert
rc
==
2
assert
(
f
"
No rule to make target `
{
snl_filename
}
.c
'
, needed by `
{
snl_filename
}
_snl.dbd
'"
in
errs
)
assert
not
(
snl_wrapper
.
build_dir
/
f
"
{
snl_filename
}
.i
"
).
is_file
()
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