From 6415d4056a031594a0fa55855720ed4ed058e2e2 Mon Sep 17 00:00:00 2001 From: ZENOTME Date: Wed, 27 Nov 2024 19:58:01 +0800 Subject: [PATCH] rename e2e_test to integration_tests --- Cargo.toml | 2 +- crates/{e2e_test => integration_tests}/Cargo.toml | 2 +- crates/{e2e_test => integration_tests}/src/lib.rs | 0 .../testdata/docker-compose.yaml | 0 .../tests/append_data_file_test.rs | 2 +- .../tests/conflict_commit_test.rs | 2 +- 6 files changed, 4 insertions(+), 4 deletions(-) rename crates/{e2e_test => integration_tests}/Cargo.toml (97%) rename crates/{e2e_test => integration_tests}/src/lib.rs (100%) rename crates/{e2e_test => integration_tests}/testdata/docker-compose.yaml (100%) rename crates/{e2e_test => integration_tests}/tests/append_data_file_test.rs (99%) rename crates/{e2e_test => integration_tests}/tests/conflict_commit_test.rs (99%) diff --git a/Cargo.toml b/Cargo.toml index b7909cb61..7e0291c37 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ resolver = "2" members = [ "crates/catalog/*", - "crates/e2e_test", + "crates/integration_tests", "crates/examples", "crates/iceberg", "crates/integrations/*", diff --git a/crates/e2e_test/Cargo.toml b/crates/integration_tests/Cargo.toml similarity index 97% rename from crates/e2e_test/Cargo.toml rename to crates/integration_tests/Cargo.toml index cc2c5b2a7..f9ba9e414 100644 --- a/crates/e2e_test/Cargo.toml +++ b/crates/integration_tests/Cargo.toml @@ -16,7 +16,7 @@ # under the License. [package] -name = "iceberg-e2e-test" +name = "iceberg-integration-tests" version = { workspace = true } edition = { workspace = true } homepage = { workspace = true } diff --git a/crates/e2e_test/src/lib.rs b/crates/integration_tests/src/lib.rs similarity index 100% rename from crates/e2e_test/src/lib.rs rename to crates/integration_tests/src/lib.rs diff --git a/crates/e2e_test/testdata/docker-compose.yaml b/crates/integration_tests/testdata/docker-compose.yaml similarity index 100% rename from crates/e2e_test/testdata/docker-compose.yaml rename to crates/integration_tests/testdata/docker-compose.yaml diff --git a/crates/e2e_test/tests/append_data_file_test.rs b/crates/integration_tests/tests/append_data_file_test.rs similarity index 99% rename from crates/e2e_test/tests/append_data_file_test.rs rename to crates/integration_tests/tests/append_data_file_test.rs index 1971d4041..87e805c23 100644 --- a/crates/e2e_test/tests/append_data_file_test.rs +++ b/crates/integration_tests/tests/append_data_file_test.rs @@ -31,7 +31,7 @@ use iceberg::writer::file_writer::location_generator::{ use iceberg::writer::file_writer::ParquetWriterBuilder; use iceberg::writer::{IcebergWriter, IcebergWriterBuilder}; use iceberg::{Catalog, Namespace, NamespaceIdent, TableCreation}; -use iceberg_e2e_test::set_test_fixture; +use iceberg_integration_tests::set_test_fixture; use parquet::arrow::arrow_reader::ArrowReaderOptions; use parquet::file::properties::WriterProperties; diff --git a/crates/e2e_test/tests/conflict_commit_test.rs b/crates/integration_tests/tests/conflict_commit_test.rs similarity index 99% rename from crates/e2e_test/tests/conflict_commit_test.rs rename to crates/integration_tests/tests/conflict_commit_test.rs index 5b71a742e..f3dd70f16 100644 --- a/crates/e2e_test/tests/conflict_commit_test.rs +++ b/crates/integration_tests/tests/conflict_commit_test.rs @@ -31,7 +31,7 @@ use iceberg::writer::file_writer::location_generator::{ use iceberg::writer::file_writer::ParquetWriterBuilder; use iceberg::writer::{IcebergWriter, IcebergWriterBuilder}; use iceberg::{Catalog, Namespace, NamespaceIdent, TableCreation}; -use iceberg_e2e_test::set_test_fixture; +use iceberg_integration_tests::set_test_fixture; use parquet::file::properties::WriterProperties; #[tokio::test]