Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mpsd-software-manager
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
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
Service Desk
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
MPSD Computational Science
mpsd-software-manager
Commits
2a748831
Commit
2a748831
authored
1 year ago
by
Ashwin Kumar Karnad
Browse files
Options
Downloads
Plain Diff
Merge branch 'try-remove-cmd' into 'main'
Try remove cmd See merge request
!57
parents
5f92e7bd
2d25fe62
No related branches found
No related tags found
1 merge request
!57
Try remove cmd
Pipeline
#371865
passed
1 year ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
mpsd-software.py
+33
-5
33 additions, 5 deletions
mpsd-software.py
test_mpsd-software.py
+57
-13
57 additions, 13 deletions
test_mpsd-software.py
with
90 additions
and
18 deletions
mpsd-software.py
+
33
−
5
View file @
2a748831
...
...
@@ -15,6 +15,7 @@ import time
from
pathlib
import
Path
from
typing
import
List
,
Tuple
,
Union
import
re
import
shutil
# If 'rich' is available ("pip install rich" or "apt-get install python3-rich"),
# then use coloured output, otherwise proceed as before
...
...
@@ -979,13 +980,40 @@ def install_environment(
)
def
remove_environment
(
release
,
package_sets
,
target_dir
):
def
remove_environment
(
mpsd_
release
,
root_dir
,
package_sets
=
"
NONE
"
,
force_remove
=
False
):
"""
Remove release from installation.
"""
msg
=
(
f
"
Removing release
{
release
}
with package_sets
{
package_sets
}
from
{
target_dir
}
"
f
"
Removing release
{
mpsd_release
}
"
f
"
with package_sets
{
package_sets
}
from
{
root_dir
}
"
)
logging
.
info
(
msg
)
raise
NotImplementedError
(
msg
)
logging
.
warning
(
msg
)
if
package_sets
==
"
NONE
"
:
logging
.
warning
(
"
Please specify package_sets to remove, or
'
ALL
'
to remove all toolchains
"
)
sys
.
exit
(
1
)
if
"
ALL
"
in
package_sets
:
# we need to remove the entire release folder
logging
.
warning
(
f
"
Removing release
{
mpsd_release
}
from
{
root_dir
}
"
"
do you want to continue? [y/n]
"
)
if
force_remove
or
input
().
lower
()
==
"
y
"
:
folders_to_remove
=
os
.
listdir
(
root_dir
/
mpsd_release
)
# skip logs folder
if
"
logs
"
in
folders_to_remove
:
folders_to_remove
.
remove
(
"
logs
"
)
for
folder
in
folders_to_remove
:
shutil
.
rmtree
(
root_dir
/
mpsd_release
/
folder
)
sys
.
exit
(
0
)
for
package_set
in
package_sets
:
# we load the spack environment and remove the package_set
spack_env
=
""
commands_to_execute
=
[
f
"
source
{
spack_env
}
"
,
f
"
spack env remove -y
{
package_set
}
"
,
]
run
(
"
&&
"
.
join
(
commands_to_execute
),
shell
=
True
,
check
=
True
)
def
start_new_environment
(
release
,
from_release
,
target_dir
):
...
...
@@ -1179,7 +1207,7 @@ def main():
# Check the command and run related function
if
args
.
action
==
"
remove
"
:
remove_environment
(
args
.
release
,
args
.
package_set
,
root_dir
)
remove_environment
(
args
.
release
,
root_dir
,
args
.
package_set
)
elif
args
.
action
==
"
start-new
"
:
start_new_environment
(
args
.
from_release
,
args
.
to_release
,
root_dir
)
elif
args
.
action
==
"
install
"
:
...
...
This diff is collapsed.
Click to expand it.
test_mpsd-software.py
+
57
−
13
View file @
2a748831
...
...
@@ -344,6 +344,14 @@ def test_install_environment_zlib():
)
assert
len
(
build_log
)
==
4
# test that the removal now works
# mod.remove_environment(
# mpsd_release=mpsd_release_to_test,
# package_sets=[package_set_to_test],
# root_dir=root_dir,
# )
# # ensure that the module files are removed
def
test_metadata_logging
(
tmp_path
):
"""
Test that metadata is logged and read correctly.
"""
...
...
@@ -446,32 +454,68 @@ def test_create_log_file_names():
assert
build_log_file_name
is
None
def
test_environment_status
(
tmp_path
):
"""
Test that the environment status is correct.
"""
toolchain_map
=
mod
.
environment_status
(
"
fake-release
"
,
tmp_path
)
assert
toolchain_map
is
None
# create a fake environment
mpsd_release
=
"
dev-23a
"
test_microarch
=
mod
.
get_native_microarchitecture
()
expected_toolchain_map
=
{
test_microarch
:
[
"
foss2021a
"
,
"
intel2021a
"
]}
def
create_fake_environment
(
tmp_path
,
mpsd_release
,
expected_toolchain_map
=
None
):
"""
Create a fake environment with toolchains for testing.
"""
if
not
expected_toolchain_map
:
test_microarch
=
mod
.
get_native_microarchitecture
()
expected_toolchain_map
=
{
test_microarch
:
[
"
foss2021a
"
,
"
intel2021a
"
]}
for
microarch
in
expected_toolchain_map
.
keys
():
toolchain_lmod_folder
=
(
tmp_path
/
mpsd_release
/
microarch
/
"
lmod
"
/
"
Core
"
/
"
toolchains
"
)
toolchain_lmod_folder
.
mkdir
(
parents
=
True
)
toolchain_lmod_folder
.
mkdir
(
parents
=
True
,
exist_ok
=
True
)
spack_folder
=
tmp_path
/
mpsd_release
/
microarch
/
"
spack
"
spack_folder
.
mkdir
(
parents
=
True
)
spack_folder
.
mkdir
(
parents
=
True
,
exist_ok
=
True
)
logs_folder
=
tmp_path
/
mpsd_release
/
microarch
/
"
logs
"
logs_folder
.
mkdir
(
parents
=
True
,
exist_ok
=
True
)
for
toolchain
in
expected_toolchain_map
[
microarch
]:
toolchain_file
=
toolchain_lmod_folder
/
f
"
{
toolchain
}
.lua
"
toolchain_file
.
touch
()
toolchain_
lua_
file
=
toolchain_lmod_folder
/
f
"
{
toolchain
}
.lua
"
toolchain_
lua_
file
.
touch
()
# check that the environment status is correct
return
expected_toolchain_map
def
test_environment_status
(
tmp_path
):
"""
Test that the environment status is correct.
"""
toolchain_map
=
mod
.
environment_status
(
"
fake-release
"
,
tmp_path
)
assert
toolchain_map
is
None
mpsd_release
=
"
dev-23a
"
expected_toolchain_map
=
create_fake_environment
(
tmp_path
,
mpsd_release
)
# check that the environment statuxis is correct
toolchain_map
=
mod
.
environment_status
(
mpsd_release
,
tmp_path
)
# convert each list to a set to ensure that the order doesn't matter
for
microarch
in
expected_toolchain_map
.
keys
():
assert
set
(
toolchain_map
[
microarch
])
==
set
(
expected_toolchain_map
[
microarch
])
@pytest.mark.skip
(
reason
=
"
not implemented yet
"
)
def
test_remove_environment
(
tmp_path
):
"""
Test that the remove_environment works as expected.
"""
mpsd_release
=
"
dev-23a
"
# create a fake environment
create_fake_environment
(
tmp_path
,
mpsd_release
)
# check that the environment status is correct
toolchain_map
=
mod
.
environment_status
(
mpsd_release
,
tmp_path
)
assert
toolchain_map
is
not
None
# test removal without arguments (should sys.exit(1))
create_fake_environment
(
tmp_path
,
mpsd_release
)
with
pytest
.
raises
(
SystemExit
):
mod
.
remove_environment
(
mpsd_release
,
tmp_path
,
force_remove
=
True
)
# test removal of the complete environment
mod
.
remove_environment
(
mpsd_release
,
tmp_path
,
[
"
ALL
"
],
force_remove
=
True
)
toolchain_map
=
mod
.
environment_status
(
mpsd_release
,
tmp_path
)
assert
toolchain_map
is
None
# ensure that logs folder remains
logs_folder
=
tmp_path
/
mpsd_release
/
"
logs
"
assert
logs_folder
.
exists
()
# test removal of a single toolchain
# done in test_install_environment_zlib
def
test_interface
(
tmp_path
):
"""
Test other things (not implemented yet).
"""
pass
...
...
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