vantage6 5.0.0a19__py3-none-any.whl → 5.0.0a21__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of vantage6 might be problematic. Click here for more details.
- tests_cli/test_node_cli.py +1 -2
- vantage6/cli/__build__ +1 -1
- vantage6/cli/configuration_wizard.py +4 -3
- vantage6/cli/node/common/__init__.py +7 -3
- vantage6/cli/test/feature_tester.py +33 -7
- {vantage6-5.0.0a19.dist-info → vantage6-5.0.0a21.dist-info}/METADATA +8 -4
- {vantage6-5.0.0a19.dist-info → vantage6-5.0.0a21.dist-info}/RECORD +10 -10
- {vantage6-5.0.0a19.dist-info → vantage6-5.0.0a21.dist-info}/WHEEL +0 -0
- {vantage6-5.0.0a19.dist-info → vantage6-5.0.0a21.dist-info}/entry_points.txt +0 -0
- {vantage6-5.0.0a19.dist-info → vantage6-5.0.0a21.dist-info}/top_level.txt +0 -0
tests_cli/test_node_cli.py
CHANGED
|
@@ -417,8 +417,7 @@ class NodeCLITest(unittest.TestCase):
|
|
|
417
417
|
@patch("vantage6.cli.node.common.debug")
|
|
418
418
|
@patch("vantage6.cli.node.common.error")
|
|
419
419
|
@patch("vantage6.cli.node.common.UserClient")
|
|
420
|
-
|
|
421
|
-
def test_client(self, q, client, error, debug, info):
|
|
420
|
+
def test_client(self, client, error, debug, info):
|
|
422
421
|
ctx = MagicMock(
|
|
423
422
|
config={
|
|
424
423
|
"server_url": "localhost",
|
vantage6/cli/__build__
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
21
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import os
|
|
1
2
|
from pathlib import Path
|
|
2
3
|
|
|
3
4
|
import questionary as q
|
|
@@ -9,6 +10,7 @@ from vantage6.common.globals import (
|
|
|
9
10
|
NodePolicy,
|
|
10
11
|
Ports,
|
|
11
12
|
DEFAULT_API_PATH,
|
|
13
|
+
RequiredNodeEnvVars,
|
|
12
14
|
)
|
|
13
15
|
from vantage6.common.client.node_client import NodeClient
|
|
14
16
|
from vantage6.common.context import AppContext
|
|
@@ -171,9 +173,8 @@ def node_configuration_questionaire(dirs: dict, instance_name: str) -> dict:
|
|
|
171
173
|
client = NodeClient(
|
|
172
174
|
instance_name,
|
|
173
175
|
config["api_key"],
|
|
174
|
-
config[
|
|
175
|
-
|
|
176
|
-
config["api_path"],
|
|
176
|
+
server_url=f"{config['server_url']}:{config['port']}{config['api_path']}",
|
|
177
|
+
auth_url=os.environ.get(RequiredNodeEnvVars.KEYCLOAK_URL.value),
|
|
177
178
|
)
|
|
178
179
|
try:
|
|
179
180
|
client.authenticate()
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
Common functions that are used in node CLI commands
|
|
3
3
|
"""
|
|
4
4
|
|
|
5
|
-
import
|
|
5
|
+
import os
|
|
6
6
|
import docker
|
|
7
7
|
from colorama import Fore, Style
|
|
8
8
|
|
|
9
9
|
from vantage6.common import error, info, debug
|
|
10
|
-
from vantage6.common.globals import APPNAME, InstanceType
|
|
10
|
+
from vantage6.common.globals import APPNAME, InstanceType, RequiredNodeEnvVars
|
|
11
11
|
from vantage6.client import UserClient
|
|
12
12
|
|
|
13
13
|
from vantage6.cli.context.node import NodeContext
|
|
@@ -35,7 +35,11 @@ def create_client(ctx: NodeContext) -> UserClient:
|
|
|
35
35
|
port = ctx.config["port"]
|
|
36
36
|
api_path = ctx.config["api_path"]
|
|
37
37
|
info(f"Connecting to server at '{host}:{port}{api_path}'")
|
|
38
|
-
return UserClient(
|
|
38
|
+
return UserClient(
|
|
39
|
+
server_url=f"{host}:{port}{api_path}",
|
|
40
|
+
auth_url=os.environ.get(RequiredNodeEnvVars.KEYCLOAK_URL.value),
|
|
41
|
+
log_level="warn",
|
|
42
|
+
)
|
|
39
43
|
|
|
40
44
|
|
|
41
45
|
def create_client_and_authenticate(ctx: NodeContext) -> UserClient:
|
|
@@ -8,11 +8,30 @@ from vantage6.cli.test.common.diagnostic_runner import DiagnosticRunner
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
@click.command()
|
|
11
|
-
@click.option("--host", type=str, default="http://localhost", help="URL of the server")
|
|
12
11
|
@click.option(
|
|
13
|
-
"--
|
|
12
|
+
"--server-url",
|
|
13
|
+
type=str,
|
|
14
|
+
default=f"http://localhost:{Ports.DEV_SERVER.value}/api",
|
|
15
|
+
help="URL of the server",
|
|
16
|
+
)
|
|
17
|
+
@click.option(
|
|
18
|
+
"--auth-url",
|
|
19
|
+
type=str,
|
|
20
|
+
default="http://localhost:8080",
|
|
21
|
+
help="URL of the authentication server (Keycloak)",
|
|
22
|
+
)
|
|
23
|
+
@click.option(
|
|
24
|
+
"--auth-realm",
|
|
25
|
+
type=str,
|
|
26
|
+
default="vantage6",
|
|
27
|
+
help="Realm of the authentication server (Keycloak)",
|
|
28
|
+
)
|
|
29
|
+
@click.option(
|
|
30
|
+
"--auth-client",
|
|
31
|
+
type=str,
|
|
32
|
+
default="public_client",
|
|
33
|
+
help="Client ID of the authentication server (Keycloak)",
|
|
14
34
|
)
|
|
15
|
-
@click.option("--api-path", type=str, default="/api", help="API path of the server")
|
|
16
35
|
@click.option(
|
|
17
36
|
"--collaboration",
|
|
18
37
|
type=int,
|
|
@@ -45,9 +64,10 @@ from vantage6.cli.test.common.diagnostic_runner import DiagnosticRunner
|
|
|
45
64
|
help="Path to the private key for end-to-end encryption",
|
|
46
65
|
)
|
|
47
66
|
def cli_test_features(
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
67
|
+
server_url: str,
|
|
68
|
+
auth_url: str,
|
|
69
|
+
auth_realm: str,
|
|
70
|
+
auth_client: str,
|
|
51
71
|
collaboration: int,
|
|
52
72
|
organizations: list[int] | None,
|
|
53
73
|
all_nodes: bool,
|
|
@@ -68,7 +88,13 @@ def cli_test_features(
|
|
|
68
88
|
if all_nodes or not organizations:
|
|
69
89
|
organizations = None
|
|
70
90
|
|
|
71
|
-
client = UserClient(
|
|
91
|
+
client = UserClient(
|
|
92
|
+
server_url=server_url,
|
|
93
|
+
auth_url=auth_url,
|
|
94
|
+
auth_realm=auth_realm,
|
|
95
|
+
auth_client=auth_client,
|
|
96
|
+
log_level="critical",
|
|
97
|
+
)
|
|
72
98
|
client.authenticate()
|
|
73
99
|
client.setup_encryption(private_key)
|
|
74
100
|
diagnose = DiagnosticRunner(client, collaboration, organizations, online_only)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: vantage6
|
|
3
|
-
Version: 5.0.
|
|
3
|
+
Version: 5.0.0a21
|
|
4
4
|
Summary: vantage6 command line interface
|
|
5
5
|
Home-page: https://github.com/vantage6/vantage6
|
|
6
6
|
Requires-Python: >=3.10
|
|
@@ -16,8 +16,8 @@ Requires-Dist: questionary==1.10.0
|
|
|
16
16
|
Requires-Dist: rich==13.5.2
|
|
17
17
|
Requires-Dist: schema==0.7.5
|
|
18
18
|
Requires-Dist: sqlalchemy==2.0.37
|
|
19
|
-
Requires-Dist: vantage6-common==5.0.
|
|
20
|
-
Requires-Dist: vantage6-client==5.0.
|
|
19
|
+
Requires-Dist: vantage6-common==5.0.0a21
|
|
20
|
+
Requires-Dist: vantage6-client==5.0.0a21
|
|
21
21
|
Provides-Extra: dev
|
|
22
22
|
Requires-Dist: coverage==6.4.4; extra == "dev"
|
|
23
23
|
Requires-Dist: black; extra == "dev"
|
|
@@ -128,7 +128,11 @@ For example, you can create a new organization by running:
|
|
|
128
128
|
```python
|
|
129
129
|
from vantage6.client import Client
|
|
130
130
|
|
|
131
|
-
client = Client(
|
|
131
|
+
client = Client(
|
|
132
|
+
server_url='http://127.0.0.1:7601/api',
|
|
133
|
+
auth_url='http://127.0.0.1:8080',
|
|
134
|
+
log_level='debug'
|
|
135
|
+
)
|
|
132
136
|
client.authenticate()
|
|
133
137
|
client.setup_encryption(None)
|
|
134
138
|
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
tests_cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
tests_cli/test_example.py,sha256=0fw_v-lgZEacshWSDwLNyLMA1_xc48bKUGM3ll-n1L0,146
|
|
3
|
-
tests_cli/test_node_cli.py,sha256=
|
|
3
|
+
tests_cli/test_node_cli.py,sha256=jM-nZkcvdEwwHVgQi8C7cYAbTJOzVmFl60MFXYVH9ig,16798
|
|
4
4
|
tests_cli/test_server_cli.py,sha256=Yv6k0mkqElrpPgFtro_OH2Bjixz7mDXioxhvXr9VsAQ,6550
|
|
5
5
|
tests_cli/test_wizard.py,sha256=D0bIMqYJ8vgl4_hTQOH5Tb8JAFt1bIfPzU9zNSvYf8o,5009
|
|
6
|
-
vantage6/cli/__build__,sha256=
|
|
6
|
+
vantage6/cli/__build__,sha256=b0tmEhJfs6Da7NJ5nf1snCmUJP2SD5swgRCiwfvY9EM,2
|
|
7
7
|
vantage6/cli/__init__.py,sha256=ZXbeQ_-g2-M4XYteWZkoO5lMFYhqjm5doQgGy1fq8i0,125
|
|
8
8
|
vantage6/cli/_version.py,sha256=iDijqhgy5jzZ0LAyzW1LlXeeuMcHWMyg9D8xbXtV7Ck,696
|
|
9
9
|
vantage6/cli/cli.py,sha256=B0F328FSBBslwplMPk8lIlr0r-taKuCgb8v9DIdyE3Q,5699
|
|
10
10
|
vantage6/cli/configuration_manager.py,sha256=CHGyYkHT8sIaEZjRrmWuiiDPfFdpFEbpl-yV5jG7OgM,3563
|
|
11
|
-
vantage6/cli/configuration_wizard.py,sha256=
|
|
11
|
+
vantage6/cli/configuration_wizard.py,sha256=aNpddEbUAye9HTVgo63_bwvnyKlC6FydDgURcmkkpzI,21048
|
|
12
12
|
vantage6/cli/globals.py,sha256=ZmZHYG5Zm38L5eBSNXUaEznmL9bZHOU6F86aYAExq0I,1732
|
|
13
13
|
vantage6/cli/utils.py,sha256=Jfr6IeHMQDk_wU5X7rJ1dRY118dhVVX8PwzwMYMv9Vw,2481
|
|
14
14
|
vantage6/cli/algorithm/create.py,sha256=kRT1BlBcb0fDaB2Q988WxtA6EyAZmOW5QoU2uhbwBIo,2075
|
|
@@ -42,7 +42,7 @@ vantage6/cli/node/set_api_key.py,sha256=2kB8wveTy9_N8kX4huVhJhY86Ppd2BI8v-d7MRXQ
|
|
|
42
42
|
vantage6/cli/node/start.py,sha256=mV4vDBBtFcxva4MJdg5ymsstefDM4bV4pmhSsVX1o4k,12407
|
|
43
43
|
vantage6/cli/node/stop.py,sha256=Hf5z2r6ttbW-DeU0cdHNXIJcgL-eIVRv8i7zZLo4foY,4159
|
|
44
44
|
vantage6/cli/node/version.py,sha256=X921xyIvIPYObPac2Si5msZ2tay5ySidnPWmGj1ilZw,1959
|
|
45
|
-
vantage6/cli/node/common/__init__.py,sha256
|
|
45
|
+
vantage6/cli/node/common/__init__.py,sha256=-nNEqN4Cfzkkz7ughjm0FErGI8NgcOzpKw4va5-0W-E,2882
|
|
46
46
|
vantage6/cli/rabbitmq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
47
|
vantage6/cli/rabbitmq/definitions.py,sha256=CcS9jG7ZGB6LjzHQqZ2FliDurPItUvNSjHrOYptORZg,637
|
|
48
48
|
vantage6/cli/rabbitmq/queue_manager.py,sha256=KGDGHy4NBN8O9xhjzfI7mh65i9lOQIqQwrOFqvGFdHI,7545
|
|
@@ -62,11 +62,11 @@ vantage6/cli/template/algo_store_config.j2,sha256=XR-ly-47p6egH8lVh4lZZDh3YSV4kF
|
|
|
62
62
|
vantage6/cli/template/node_config.j2,sha256=EyVKeyW0qAyvdUNSXTHUzPKRNunAMyn-cDTKiSyTbDc,730
|
|
63
63
|
vantage6/cli/template/server_config.j2,sha256=K7svQM6HTmMrlKPVW9cbNPloH7LicBoLdIEiarD6CP8,765
|
|
64
64
|
vantage6/cli/template/server_import_config.j2,sha256=9WT2XeG9-ADoYLb4ahXhof3i9Fcvg0oqwNPyFwLJpvc,1827
|
|
65
|
-
vantage6/cli/test/feature_tester.py,sha256=
|
|
65
|
+
vantage6/cli/test/feature_tester.py,sha256=Jd-dSB_4HRcvkDnAMs57m4WK0SDHsqTmg9ON56wnEOc,2634
|
|
66
66
|
vantage6/cli/test/integration_test.py,sha256=MctR_t-WEyxzFpMdc6ByTcX1BQglZiT5-CIOQXTBBWo,4034
|
|
67
67
|
vantage6/cli/test/common/diagnostic_runner.py,sha256=F8vEaCD6HeKWDcQGVzRkPYxdvEk9owqfciOVdN3bHbw,6607
|
|
68
|
-
vantage6-5.0.
|
|
69
|
-
vantage6-5.0.
|
|
70
|
-
vantage6-5.0.
|
|
71
|
-
vantage6-5.0.
|
|
72
|
-
vantage6-5.0.
|
|
68
|
+
vantage6-5.0.0a21.dist-info/METADATA,sha256=PByHN2IBEWeWJDHePjFMIzI-3b4VM5xqr_AHfZRWRA0,10907
|
|
69
|
+
vantage6-5.0.0a21.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
70
|
+
vantage6-5.0.0a21.dist-info/entry_points.txt,sha256=YFBvwjxoeAGxYyPC-YevEgOBBYRGaXkS6jiOGGCLNy0,157
|
|
71
|
+
vantage6-5.0.0a21.dist-info/top_level.txt,sha256=CYDIBS8jEfFq5YCs_Fuit54K9-3wdosZppTrsymIoUk,19
|
|
72
|
+
vantage6-5.0.0a21.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|