This is an automated email from the ASF dual-hosted git repository.
xuanwo pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git
from 7f3023240a refactor(services/rocksdb): Impl parse_error instead of
From<Error> (#3903)
add 62e79cae17 refactor: Re-organize the layout of tests (#3904)
No new revisions were added by this update.
Summary of changes:
core/tests/behavior/append.rs | 223 ---
core/tests/behavior/{copy.rs => async_copy.rs} | 28 +-
.../behavior/{list_only.rs => async_create_dir.rs} | 41 +-
core/tests/behavior/async_delete.rs | 158 ++
core/tests/behavior/{fuzz.rs => async_fuzz.rs} | 6 +-
core/tests/behavior/{list.rs => async_list.rs} | 65 +-
.../behavior/{presign.rs => async_presign.rs} | 13 +-
core/tests/behavior/async_read.rs | 794 +++++++++
core/tests/behavior/{rename.rs => async_rename.rs} | 26 +-
core/tests/behavior/async_stat.rs | 501 ++++++
core/tests/behavior/async_write.rs | 421 +++++
core/tests/behavior/blocking_append.rs | 220 ---
core/tests/behavior/blocking_copy.rs | 26 +-
core/tests/behavior/blocking_create_dir.rs | 68 +
core/tests/behavior/blocking_delete.rs | 64 +
core/tests/behavior/blocking_list.rs | 24 +-
core/tests/behavior/blocking_read.rs | 212 +++
core/tests/behavior/blocking_read_only.rs | 112 --
core/tests/behavior/blocking_rename.rs | 26 +-
core/tests/behavior/blocking_stat.rs | 107 ++
core/tests/behavior/blocking_write.rs | 518 +-----
core/tests/behavior/main.rs | 90 +-
core/tests/behavior/read_only.rs | 331 ----
core/tests/behavior/utils.rs | 301 +---
core/tests/behavior/write.rs | 1825 --------------------
25 files changed, 2614 insertions(+), 3586 deletions(-)
delete mode 100644 core/tests/behavior/append.rs
rename core/tests/behavior/{copy.rs => async_copy.rs} (93%)
rename core/tests/behavior/{list_only.rs => async_create_dir.rs} (52%)
create mode 100644 core/tests/behavior/async_delete.rs
rename core/tests/behavior/{fuzz.rs => async_fuzz.rs} (97%)
rename core/tests/behavior/{list.rs => async_list.rs} (91%)
rename core/tests/behavior/{presign.rs => async_presign.rs} (94%)
create mode 100644 core/tests/behavior/async_read.rs
rename core/tests/behavior/{rename.rs => async_rename.rs} (93%)
create mode 100644 core/tests/behavior/async_stat.rs
create mode 100644 core/tests/behavior/async_write.rs
delete mode 100644 core/tests/behavior/blocking_append.rs
create mode 100644 core/tests/behavior/blocking_create_dir.rs
create mode 100644 core/tests/behavior/blocking_delete.rs
create mode 100644 core/tests/behavior/blocking_read.rs
delete mode 100644 core/tests/behavior/blocking_read_only.rs
create mode 100644 core/tests/behavior/blocking_stat.rs
delete mode 100644 core/tests/behavior/read_only.rs
delete mode 100644 core/tests/behavior/write.rs