mirror of
https://github.com/openai/codex.git
synced 2026-09-05 15:18:41 +00:00
test: use relative git metadata paths
Co-authored-by: Codex noreply@openai.com
This commit is contained in:
@@ -827,13 +827,9 @@ async fn sandbox_workspace_write_allow_limited_git_writes_keeps_config_and_hooks
|
||||
.await?;
|
||||
let file_system = config.permissions.file_system_sandbox_policy();
|
||||
let cwd = config.cwd.as_path();
|
||||
let git_dir = config.cwd.join(".git");
|
||||
let git_config = git_dir.join("config");
|
||||
let git_hooks = git_dir.join("hooks");
|
||||
|
||||
assert!(file_system.can_write_path_with_cwd(git_dir.join("index").as_path(), cwd));
|
||||
assert!(!file_system.can_write_path_with_cwd(git_config.as_path(), cwd));
|
||||
assert!(!file_system.can_write_path_with_cwd(git_hooks.join("pre-commit").as_path(), cwd));
|
||||
assert!(file_system.can_write_path_with_cwd(Path::new(".git/index"), cwd));
|
||||
assert!(!file_system.can_write_path_with_cwd(Path::new(".git/config"), cwd));
|
||||
assert!(!file_system.can_write_path_with_cwd(Path::new(".git/hooks/pre-commit"), cwd));
|
||||
Ok(())
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user