Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
swh-vault
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
David Douard
swh-vault
Commits
029012d1
Commit
029012d1
authored
5 months ago
by
David Douard
Browse files
Options
Downloads
Patches
Plain Diff
test: make test_server.py immune to existing SWH_CONFIG_FILENAME env var
parent
e1e755c9
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#11459
failed
5 months ago
Stage: external
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
swh/vault/tests/test_server.py
+7
-4
7 additions, 4 deletions
swh/vault/tests/test_server.py
with
7 additions
and
4 deletions
swh/vault/tests/test_server.py
+
7
−
4
View file @
029012d1
# Copyright (C) 2020-202
2
The Software Heritage developers
# Copyright (C) 2020-202
4
The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information
...
...
@@ -38,12 +38,14 @@ def swh_vault_server_config_file(swh_vault_server_config, monkeypatch, tmp_path)
return
conf_path
def
test_make_app_from_file_missing
():
def
test_make_app_from_file_missing
(
monkeypatch
):
monkeypatch
.
delenv
(
"
SWH_CONFIG_FILENAME
"
)
with
pytest
.
raises
(
ValueError
,
match
=
"
Missing configuration path.
"
):
make_app_from_configfile
()
def
test_make_app_from_file_does_not_exist
(
tmp_path
):
def
test_make_app_from_file_does_not_exist
(
tmp_path
,
monkeypatch
):
monkeypatch
.
delenv
(
"
SWH_CONFIG_FILENAME
"
)
conf_path
=
os
.
path
.
join
(
str
(
tmp_path
),
"
vault-server.yml
"
)
assert
os
.
path
.
exists
(
conf_path
)
is
False
...
...
@@ -64,8 +66,9 @@ def test_make_app_from_env_variable(swh_vault_server_config_file):
swh
.
vault
.
api
.
server
.
vault
=
None
def
test_make_app_from_file
(
swh_vault_server_config
,
tmp_path
):
def
test_make_app_from_file
(
swh_vault_server_config
,
tmp_path
,
monkeypatch
):
"""
Server initialization happens through path if provided
"""
monkeypatch
.
delenv
(
"
SWH_CONFIG_FILENAME
"
)
conf_path
=
os
.
path
.
join
(
str
(
tmp_path
),
"
vault-server.yml
"
)
with
open
(
conf_path
,
"
w
"
)
as
f
:
f
.
write
(
yaml
.
dump
(
swh_vault_server_config
))
...
...
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