Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
envsetup
Manage
Activity
Members
Plan
Redmine
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor 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
mediaserver
envsetup
Commits
1fad0c77
Verified
Commit
1fad0c77
authored
5 years ago
by
Nicolas KAROLAK
Browse files
Options
Downloads
Patches
Plain Diff
do install packages in tests
parent
234ea151
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
1.Base/1.Utilities/0_setup.py
+31
-9
31 additions, 9 deletions
1.Base/1.Utilities/0_setup.py
tests/test_email.py
+3
-12
3 additions, 12 deletions
tests/test_email.py
with
34 additions
and
21 deletions
1.Base/1.Utilities/0_setup.py
+
31
−
9
View file @
1fad0c77
#!/usr/bin/env python3
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import
utils
import
utils
packages
=
[
"
bmon
"
,
"
curl
"
,
"
git
"
,
"
host
"
,
"
htop
"
,
"
iotop
"
,
"
ipython3
"
,
"
lm-sensors
"
,
"
make
"
,
"
net-tools
"
,
"
netcat
"
,
"
nfs-client
"
,
"
pciutils
"
,
"
pwgen
"
,
"
python3-openssl
"
,
"
python3-requests
"
,
"
python3-spf
"
,
"
smartmontools
"
,
"
vim
"
,
]
def
setup
(
interactive
=
True
):
def
setup
(
interactive
=
True
):
dir_path
=
utils
.
get_dir
(
__file__
)
dir_path
=
utils
.
get_dir
(
__file__
)
cmds
=
[
cmds
=
[
'
apt-get clean
'
,
"
apt-get clean
"
,
'
apt-get update
'
,
"
apt-get update
"
,
'
apt-get install --yes
make ipython3 vim netcat git htop iotop bmon net-tools host lm-sensors pciutils nfs-client smartmontools pwgen curl python3-requests
'
,
"
apt-get install --yes
{}
"
.
format
(
"
"
.
join
(
packages
))
,
# Locale
# Locale
'
locale-gen en_GB.UTF-8
'
,
"
locale-gen en_GB.UTF-8
"
,
'
update-locale LANG=en_GB.UTF-8 LANGUAGE=en_GB.UTF-8 LC_ALL=en_GB.UTF-8 LC_MESSAGES=en_GB.UTF-8
'
,
"
update-locale LANG=en_GB.UTF-8 LANGUAGE=en_GB.UTF-8 LC_ALL=en_GB.UTF-8 LC_MESSAGES=en_GB.UTF-8
"
,
# Copy vimrc file
# Copy vimrc file
'
cp
"
%s
/vimrc
"
"
/root/.vimrc
"
'
%
dir_path
,
"
cp
'
{}
/vimrc
'
/root/.vimrc
"
.
format
(
dir_path
)
,
# Copy bashrc file
# Copy bashrc file
'
cp
"
%s
/bashrc
"
"
/root/.bashrc
"
'
%
dir_path
,
"
cp
'
{}
/bashrc
'
/root/.bashrc
"
.
format
(
dir_path
)
,
# Generate SSH key if not already done
# Generate SSH key if not already done
'
[ -f /root/.ssh/id_rsa ] || ssh-keygen -b 4096 -t rsa -f /root/.ssh/id_rsa -P
""'
,
"
[ -f /root/.ssh/id_rsa ] || ssh-keygen -b 4096 -t rsa -f /root/.ssh/id_rsa -P
''"
,
]
]
utils
.
run_commands
(
cmds
)
utils
.
run_commands
(
cmds
)
This diff is collapsed.
Click to expand it.
tests/test_email.py
+
3
−
12
View file @
1fad0c77
...
@@ -5,23 +5,14 @@ Criticality: High
...
@@ -5,23 +5,14 @@ Criticality: High
Checks that emails can be sent.
Checks that emails can be sent.
"""
"""
from
pathlib
import
Path
import
os
import
os
from
pathlib
import
Path
import
random
import
subprocess
import
subprocess
import
sys
import
sys
import
random
import
time
import
time
# install spf lib if not present
import
spf
try
:
import
spf
except
ImportError
:
subprocess
.
check_call
([
"
apt-get
"
,
"
-qq
"
,
"
-y
"
,
"
install
"
,
"
python3-spf
"
])
import
spf
# install netstat if not present
if
subprocess
.
call
([
"
which
"
,
"
netstat
"
],
stdout
=
subprocess
.
DEVNULL
)
!=
0
:
subprocess
.
check_call
([
"
apt-get
"
,
"
-qq
"
,
"
-y
"
,
"
install
"
,
"
net-tools
"
])
sys
.
path
.
append
(
str
(
Path
(
__file__
).
parents
[
1
].
resolve
()))
sys
.
path
.
append
(
str
(
Path
(
__file__
).
parents
[
1
].
resolve
()))
...
...
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