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
Iterations
Wiki
Jira
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
ESS EPICS Environment
wrappers
e3-require
Commits
55c15865
Commit
55c15865
authored
3 years ago
by
Simon Rose
Browse files
Options
Downloads
Patches
Plain Diff
Fixed old tests
parent
e38f3603
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!83
E3-752: Fetch dependencies recursively
Pipeline
#109778
passed
3 years ago
Stage: check
Stage: build
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/conftest.py
+9
-0
9 additions, 0 deletions
tests/conftest.py
tests/test_build.py
+7
-8
7 additions, 8 deletions
tests/test_build.py
with
16 additions
and
8 deletions
tests/conftest.py
+
9
−
0
View file @
55c15865
...
@@ -24,6 +24,9 @@ class Wrapper:
...
@@ -24,6 +24,9 @@ class Wrapper:
self
.
config_dir
=
self
.
path
/
"
configure
"
self
.
config_dir
=
self
.
path
/
"
configure
"
self
.
config_dir
.
mkdir
()
self
.
config_dir
.
mkdir
()
self
.
config_module
=
self
.
path
/
"
CONFIG_MODULE
"
self
.
config_module
.
touch
()
self
.
makefile
=
self
.
path
/
f
"
{
name
}
.Makefile
"
self
.
makefile
=
self
.
path
/
f
"
{
name
}
.Makefile
"
makefile_contents
=
f
"""
makefile_contents
=
f
"""
...
@@ -34,6 +37,8 @@ E3_MODULE_VERSION?=0.0.0+0
...
@@ -34,6 +37,8 @@ E3_MODULE_VERSION?=0.0.0+0
E3_MODULE_SRC_PATH:=
{
module_path
}
E3_MODULE_SRC_PATH:=
{
module_path
}
E3_MODULE_MAKEFILE:=
{
name
}
.Makefile
E3_MODULE_MAKEFILE:=
{
name
}
.Makefile
include $(TOP)/CONFIG_MODULE
include $(REQUIRE_CONFIG)/CONFIG
include $(REQUIRE_CONFIG)/CONFIG
include $(REQUIRE_CONFIG)/RULES_SITEMODS
include $(REQUIRE_CONFIG)/RULES_SITEMODS
"""
"""
...
@@ -62,6 +67,10 @@ include $(E3_REQUIRE_TOOLS)/driver.makefile
...
@@ -62,6 +67,10 @@ include $(E3_REQUIRE_TOOLS)/driver.makefile
for
var
,
value
in
config_vars
.
items
():
for
var
,
value
in
config_vars
.
items
():
f
.
write
(
f
"
{
var
}
=
{
value
}
\n
"
)
f
.
write
(
f
"
{
var
}
=
{
value
}
\n
"
)
def
add_var_to_config_module
(
self
,
makefile_var
:
str
,
value
:
str
,
modifier
=
"
+
"
):
with
open
(
self
.
config_module
,
"
a
"
)
as
f
:
f
.
write
(
f
"
{
makefile_var
}
{
modifier
}
=
{
value
}
\n
"
)
def
add_var_to_makefile
(
self
,
makefile_var
:
str
,
value
:
str
,
modifier
=
"
+
"
):
def
add_var_to_makefile
(
self
,
makefile_var
:
str
,
value
:
str
,
modifier
=
"
+
"
):
with
open
(
self
.
makefile
,
"
a
"
)
as
f
:
with
open
(
self
.
makefile
,
"
a
"
)
as
f
:
f
.
write
(
f
"
{
makefile_var
}
{
modifier
}
=
{
value
}
\n
"
)
f
.
write
(
f
"
{
makefile_var
}
{
modifier
}
=
{
value
}
\n
"
)
...
...
This diff is collapsed.
Click to expand it.
tests/test_build.py
+
7
−
8
View file @
55c15865
...
@@ -88,11 +88,11 @@ def test_missing_source_file(wrapper):
...
@@ -88,11 +88,11 @@ def test_missing_source_file(wrapper):
def
test_missing_requirement
(
wrapper
):
def
test_missing_requirement
(
wrapper
):
wrapper
.
add_var_to_
makefile
(
"
REQUIRED
"
,
"
foo
"
)
wrapper
.
add_var_to_
config_module
(
"
FOO_DEP_VERSION
"
,
"
bar
"
)
rc
,
_
,
errs
=
wrapper
.
run_make
(
"
build
"
)
rc
,
_
,
errs
=
wrapper
.
run_make
(
"
build
"
)
assert
rc
==
2
assert
rc
==
0
assert
"
REQUIRED module
'
foo
'
version
''
does not exist
"
in
errs
assert
'
Invalid dependency
"
FOO_DEP_VERSION
"
; pruning
'
in
errs
def
test_header_install_location
(
wrapper
):
def
test_header_install_location
(
wrapper
):
...
@@ -125,9 +125,8 @@ def test_updated_dependencies(wrappers):
...
@@ -125,9 +125,8 @@ def test_updated_dependencies(wrappers):
old_version
=
"
0.0.0+0
"
old_version
=
"
0.0.0+0
"
wrapper_main
.
add_var_to_makefile
(
"
REQUIRED
"
,
wrapper_dep
.
name
)
wrapper_main
.
add_var_to_config_module
(
wrapper_main
.
add_var_to_makefile
(
f
"
{
wrapper_dep
.
name
}
_DEP_VERSION
"
,
old_version
,
modifier
=
""
f
"
{
wrapper_dep
.
name
}
_VERSION
"
,
old_version
,
modifier
=
""
)
)
rc
,
*
_
=
wrapper_dep
.
run_make
(
rc
,
*
_
=
wrapper_dep
.
run_make
(
...
@@ -149,8 +148,8 @@ def test_updated_dependencies(wrappers):
...
@@ -149,8 +148,8 @@ def test_updated_dependencies(wrappers):
)
)
assert
rc
==
0
assert
rc
==
0
wrapper_main
.
add_var_to_
makefi
le
(
wrapper_main
.
add_var_to_
config_modu
le
(
f
"
{
wrapper_dep
.
name
}
_VERSION
"
,
new_version
,
modifier
=
""
f
"
{
wrapper_dep
.
name
}
_
DEP_
VERSION
"
,
new_version
,
modifier
=
""
)
)
rc
,
*
_
=
wrapper_main
.
run_make
(
"
cellinstall
"
,
module_version
=
new_version
)
rc
,
*
_
=
wrapper_main
.
run_make
(
"
cellinstall
"
,
module_version
=
new_version
)
...
...
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