-
Notifications
You must be signed in to change notification settings - Fork 12k
Reject legacy [profiles] when using profile-v2 #22647
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+201
−11
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,172 @@ | ||
| use super::*; | ||
| use async_trait::async_trait; | ||
| use codex_file_system::CopyOptions; | ||
| use codex_file_system::CreateDirectoryOptions; | ||
| use codex_file_system::FileMetadata; | ||
| use codex_file_system::FileSystemResult; | ||
| use codex_file_system::FileSystemSandboxContext; | ||
| use codex_file_system::ReadDirectoryEntry; | ||
| use codex_file_system::RemoveOptions; | ||
| use pretty_assertions::assert_eq; | ||
| use tempfile::tempdir; | ||
|
|
||
| struct TestFileSystem; | ||
|
|
||
| #[async_trait] | ||
| impl ExecutorFileSystem for TestFileSystem { | ||
| async fn read_file( | ||
| &self, | ||
| path: &AbsolutePathBuf, | ||
| _sandbox: Option<&FileSystemSandboxContext>, | ||
| ) -> FileSystemResult<Vec<u8>> { | ||
| tokio::fs::read(path.as_path()).await | ||
| } | ||
|
|
||
| async fn write_file( | ||
| &self, | ||
| _path: &AbsolutePathBuf, | ||
| _contents: Vec<u8>, | ||
| _sandbox: Option<&FileSystemSandboxContext>, | ||
| ) -> FileSystemResult<()> { | ||
| unimplemented!("test filesystem only supports reads") | ||
| } | ||
|
|
||
| async fn create_directory( | ||
| &self, | ||
| _path: &AbsolutePathBuf, | ||
| _create_directory_options: CreateDirectoryOptions, | ||
| _sandbox: Option<&FileSystemSandboxContext>, | ||
| ) -> FileSystemResult<()> { | ||
| unimplemented!("test filesystem only supports reads") | ||
| } | ||
|
|
||
| async fn get_metadata( | ||
| &self, | ||
| _path: &AbsolutePathBuf, | ||
| _sandbox: Option<&FileSystemSandboxContext>, | ||
| ) -> FileSystemResult<FileMetadata> { | ||
| unimplemented!("test filesystem only supports reads") | ||
| } | ||
|
|
||
| async fn read_directory( | ||
| &self, | ||
| _path: &AbsolutePathBuf, | ||
| _sandbox: Option<&FileSystemSandboxContext>, | ||
| ) -> FileSystemResult<Vec<ReadDirectoryEntry>> { | ||
| unimplemented!("test filesystem only supports reads") | ||
| } | ||
|
|
||
| async fn remove( | ||
| &self, | ||
| _path: &AbsolutePathBuf, | ||
| _remove_options: RemoveOptions, | ||
| _sandbox: Option<&FileSystemSandboxContext>, | ||
| ) -> FileSystemResult<()> { | ||
| unimplemented!("test filesystem only supports reads") | ||
| } | ||
|
|
||
| async fn copy( | ||
| &self, | ||
| _source_path: &AbsolutePathBuf, | ||
| _destination_path: &AbsolutePathBuf, | ||
| _copy_options: CopyOptions, | ||
| _sandbox: Option<&FileSystemSandboxContext>, | ||
| ) -> FileSystemResult<()> { | ||
| unimplemented!("test filesystem only supports reads") | ||
| } | ||
| } | ||
|
|
||
| #[tokio::test] | ||
| async fn profile_v2_rejects_matching_legacy_profile_in_base_user_config() { | ||
| let tmp = tempdir().expect("tempdir"); | ||
| let selected_config = tmp.path().join("work.config.toml"); | ||
|
|
||
| std::fs::write( | ||
| tmp.path().join(CONFIG_TOML_FILE), | ||
| r#" | ||
| model = "gpt-main" | ||
|
|
||
| [profiles.work] | ||
| model = "gpt-work" | ||
| "#, | ||
| ) | ||
| .expect("write default user config"); | ||
| std::fs::write(&selected_config, r#"model = "gpt-work-v2""#) | ||
| .expect("write selected user config"); | ||
|
|
||
| let mut overrides = LoaderOverrides::without_managed_config_for_tests(); | ||
| overrides.user_config_path = Some(AbsolutePathBuf::resolve_path_against_base( | ||
| "work.config.toml", | ||
| tmp.path(), | ||
| )); | ||
| overrides.user_config_profile = Some("work".parse().expect("profile-v2 name")); | ||
|
|
||
| let err = load_config_layers_state( | ||
| &TestFileSystem, | ||
| tmp.path(), | ||
| /*cwd*/ None, | ||
| &[], | ||
| overrides, | ||
| CloudRequirementsLoader::default(), | ||
| &crate::NoopThreadConfigLoader, | ||
| ) | ||
| .await | ||
| .expect_err("profile-v2 should reject a matching legacy profile in base user config"); | ||
|
|
||
| assert_eq!( | ||
| err.kind(), | ||
| io::ErrorKind::InvalidData, | ||
| "a matching legacy profile should be a hard config error" | ||
| ); | ||
| let message = err.to_string(); | ||
| assert!( | ||
| message.contains("--profile-v2 `work` cannot be used"), | ||
| "unexpected error message: {message}" | ||
| ); | ||
| assert!( | ||
| message.contains("config.toml"), | ||
| "unexpected error message: {message}" | ||
| ); | ||
| assert!( | ||
| message.contains("[profiles.work]"), | ||
| "unexpected error message: {message}" | ||
| ); | ||
| } | ||
|
|
||
| #[tokio::test] | ||
| async fn profile_v2_allows_unrelated_legacy_profiles_in_base_user_config() { | ||
| let tmp = tempdir().expect("tempdir"); | ||
| let selected_config = tmp.path().join("work.config.toml"); | ||
|
|
||
| std::fs::write( | ||
| tmp.path().join(CONFIG_TOML_FILE), | ||
| r#" | ||
| model = "gpt-main" | ||
|
|
||
| [profiles.dev] | ||
| model = "gpt-dev" | ||
| "#, | ||
| ) | ||
| .expect("write default user config"); | ||
| std::fs::write(&selected_config, r#"model = "gpt-work-v2""#) | ||
| .expect("write selected user config"); | ||
|
|
||
| let mut overrides = LoaderOverrides::without_managed_config_for_tests(); | ||
| overrides.user_config_path = Some(AbsolutePathBuf::resolve_path_against_base( | ||
| "work.config.toml", | ||
| tmp.path(), | ||
| )); | ||
| overrides.user_config_profile = Some("work".parse().expect("profile-v2 name")); | ||
|
|
||
| load_config_layers_state( | ||
| &TestFileSystem, | ||
| tmp.path(), | ||
| /*cwd*/ None, | ||
| &[], | ||
| overrides, | ||
| CloudRequirementsLoader::default(), | ||
| &crate::NoopThreadConfigLoader, | ||
| ) | ||
| .await | ||
| .expect("profile-v2 should allow unrelated legacy profiles in base user config"); | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.