-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/ibm-memory
- Loading branch information
Showing
4 changed files
with
169 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import json | ||
from pathlib import Path | ||
from pydantic import BaseModel, Field | ||
from typing import Optional | ||
|
||
DEFAULT_CONFIG_PATH = Path.home() / ".config" / "crewai" / "settings.json" | ||
|
||
class Settings(BaseModel): | ||
tool_repository_username: Optional[str] = Field(None, description="Username for interacting with the Tool Repository") | ||
tool_repository_password: Optional[str] = Field(None, description="Password for interacting with the Tool Repository") | ||
config_path: Path = Field(default=DEFAULT_CONFIG_PATH, exclude=True) | ||
|
||
def __init__(self, config_path: Path = DEFAULT_CONFIG_PATH, **data): | ||
"""Load Settings from config path""" | ||
config_path.parent.mkdir(parents=True, exist_ok=True) | ||
|
||
file_data = {} | ||
if config_path.is_file(): | ||
try: | ||
with config_path.open("r") as f: | ||
file_data = json.load(f) | ||
except json.JSONDecodeError: | ||
file_data = {} | ||
|
||
merged_data = {**file_data, **data} | ||
super().__init__(config_path=config_path, **merged_data) | ||
|
||
def dump(self) -> None: | ||
"""Save current settings to settings.json""" | ||
if self.config_path.is_file(): | ||
with self.config_path.open("r") as f: | ||
existing_data = json.load(f) | ||
else: | ||
existing_data = {} | ||
|
||
updated_data = {**existing_data, **self.model_dump(exclude_unset=True)} | ||
with self.config_path.open("w") as f: | ||
json.dump(updated_data, f, indent=4) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
import unittest | ||
import json | ||
import tempfile | ||
import shutil | ||
from pathlib import Path | ||
from crewai.cli.config import Settings | ||
|
||
class TestSettings(unittest.TestCase): | ||
def setUp(self): | ||
self.test_dir = Path(tempfile.mkdtemp()) | ||
self.config_path = self.test_dir / "settings.json" | ||
|
||
def tearDown(self): | ||
shutil.rmtree(self.test_dir) | ||
|
||
def test_empty_initialization(self): | ||
settings = Settings(config_path=self.config_path) | ||
self.assertIsNone(settings.tool_repository_username) | ||
self.assertIsNone(settings.tool_repository_password) | ||
|
||
def test_initialization_with_data(self): | ||
settings = Settings( | ||
config_path=self.config_path, | ||
tool_repository_username="user1" | ||
) | ||
self.assertEqual(settings.tool_repository_username, "user1") | ||
self.assertIsNone(settings.tool_repository_password) | ||
|
||
def test_initialization_with_existing_file(self): | ||
self.config_path.parent.mkdir(parents=True, exist_ok=True) | ||
with self.config_path.open("w") as f: | ||
json.dump({"tool_repository_username": "file_user"}, f) | ||
|
||
settings = Settings(config_path=self.config_path) | ||
self.assertEqual(settings.tool_repository_username, "file_user") | ||
|
||
def test_merge_file_and_input_data(self): | ||
self.config_path.parent.mkdir(parents=True, exist_ok=True) | ||
with self.config_path.open("w") as f: | ||
json.dump({ | ||
"tool_repository_username": "file_user", | ||
"tool_repository_password": "file_pass" | ||
}, f) | ||
|
||
settings = Settings( | ||
config_path=self.config_path, | ||
tool_repository_username="new_user" | ||
) | ||
self.assertEqual(settings.tool_repository_username, "new_user") | ||
self.assertEqual(settings.tool_repository_password, "file_pass") | ||
|
||
def test_dump_new_settings(self): | ||
settings = Settings( | ||
config_path=self.config_path, | ||
tool_repository_username="user1" | ||
) | ||
settings.dump() | ||
|
||
with self.config_path.open("r") as f: | ||
saved_data = json.load(f) | ||
|
||
self.assertEqual(saved_data["tool_repository_username"], "user1") | ||
|
||
def test_update_existing_settings(self): | ||
self.config_path.parent.mkdir(parents=True, exist_ok=True) | ||
with self.config_path.open("w") as f: | ||
json.dump({"existing_setting": "value"}, f) | ||
|
||
settings = Settings( | ||
config_path=self.config_path, | ||
tool_repository_username="user1" | ||
) | ||
settings.dump() | ||
|
||
with self.config_path.open("r") as f: | ||
saved_data = json.load(f) | ||
|
||
self.assertEqual(saved_data["existing_setting"], "value") | ||
self.assertEqual(saved_data["tool_repository_username"], "user1") | ||
|
||
def test_none_values(self): | ||
settings = Settings( | ||
config_path=self.config_path, | ||
tool_repository_username=None | ||
) | ||
settings.dump() | ||
|
||
with self.config_path.open("r") as f: | ||
saved_data = json.load(f) | ||
|
||
self.assertIsNone(saved_data.get("tool_repository_username")) | ||
|
||
def test_invalid_json_in_config(self): | ||
self.config_path.parent.mkdir(parents=True, exist_ok=True) | ||
with self.config_path.open("w") as f: | ||
f.write("invalid json") | ||
|
||
try: | ||
settings = Settings(config_path=self.config_path) | ||
self.assertIsNone(settings.tool_repository_username) | ||
except json.JSONDecodeError: | ||
self.fail("Settings initialization should handle invalid JSON") | ||
|
||
def test_empty_config_file(self): | ||
self.config_path.parent.mkdir(parents=True, exist_ok=True) | ||
self.config_path.touch() | ||
|
||
settings = Settings(config_path=self.config_path) | ||
self.assertIsNone(settings.tool_repository_username) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters