FANNG1 commented on code in PR #10191:
URL: https://github.com/apache/gravitino/pull/10191#discussion_r2883720607


##########
maintenance/optimizer/src/test/java/org/apache/gravitino/maintenance/optimizer/integration/test/GravitinoOptimizerEnvIT.java:
##########
@@ -0,0 +1,184 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.gravitino.maintenance.optimizer.integration.test;
+
+import com.google.common.collect.ImmutableMap;
+import com.google.common.collect.ImmutableSet;
+import java.util.HashMap;
+import java.util.Map;
+import org.apache.gravitino.Catalog;
+import org.apache.gravitino.MetadataObject;
+import org.apache.gravitino.NameIdentifier;
+import org.apache.gravitino.Schema;
+import org.apache.gravitino.catalog.lakehouse.iceberg.IcebergConstants;
+import org.apache.gravitino.client.GravitinoMetalake;
+import org.apache.gravitino.integration.test.util.BaseIT;
+import org.apache.gravitino.maintenance.optimizer.common.OptimizerEnv;
+import org.apache.gravitino.maintenance.optimizer.common.conf.OptimizerConfig;
+import 
org.apache.gravitino.maintenance.optimizer.recommender.strategy.GravitinoStrategy;
+import 
org.apache.gravitino.maintenance.optimizer.updater.metrics.storage.jdbc.GenericJdbcMetricsRepository;
+import org.apache.gravitino.policy.PolicyContent;
+import org.apache.gravitino.policy.PolicyContents;
+import org.apache.gravitino.rel.Column;
+import org.apache.gravitino.rel.Table;
+import org.apache.gravitino.rel.expressions.transforms.Transform;
+import org.apache.gravitino.rel.expressions.transforms.Transforms;
+import org.apache.gravitino.rel.types.Types;
+import org.junit.jupiter.api.BeforeAll;
+
+// Set up the Gravitino server, metalake, Iceberg catalogs
+public class GravitinoOptimizerEnvIT extends BaseIT {
+
+  protected static final String METALAKE_NAME = "test_metalake";
+  protected static final String GRAVITINO_CATALOG_NAME = "iceberg";
+  protected static final String TEST_SCHEMA = "test_schema";
+
+  protected Catalog catalogClient;
+  protected GravitinoMetalake metalakeClient;
+  protected OptimizerEnv optimizerEnv;
+
+  @BeforeAll
+  @Override
+  public void startIntegrationTest() throws Exception {
+    super.startIntegrationTest();
+    initMetalakeAndCatalog();
+    this.optimizerEnv = initOptimizerEnv();
+  }
+
+  protected void createTable(String tableName) {
+    catalogClient
+        .asTableCatalog()
+        .createTable(
+            NameIdentifier.of(TEST_SCHEMA, tableName),
+            new Column[] {Column.of("col_1", Types.IntegerType.get())},
+            "comment",
+            ImmutableMap.of());
+  }
+
+  protected NameIdentifier getTableIdentifier(String tableName) {
+    return NameIdentifier.of(GRAVITINO_CATALOG_NAME, TEST_SCHEMA, tableName);
+  }
+
+  protected void createPartitionTable(String tableName) {
+    catalogClient
+        .asTableCatalog()
+        .createTable(
+            NameIdentifier.of(TEST_SCHEMA, tableName),
+            new Column[] {
+              Column.of("col1", Types.IntegerType.get(), "col1"),
+              Column.of("col2", Types.IntegerType.get(), "col2"),
+              Column.of("col3", Types.IntegerType.get(), "col3")
+            },
+            "comment",
+            ImmutableMap.of(),
+            new Transform[] {
+              Transforms.identity("col1"), Transforms.bucket(8, new String[] 
{"col2"})
+            });
+  }
+
+  protected void createPolicy(String policyName, Map<String, Object> rules, 
String policyType) {
+    PolicyContent content =
+        PolicyContents.custom(
+            rules,
+            ImmutableSet.of(MetadataObject.Type.TABLE),
+            Map.of(
+                GravitinoStrategy.STRATEGY_TYPE_KEY,
+                policyType,
+                GravitinoStrategy.JOB_TEMPLATE_NAME_KEY,
+                "template-name"));
+    metalakeClient.createPolicy(policyName, "custom", "comment", true, 
content);
+  }
+
+  protected void associatePoliciesToTable(String policyName, String tableName) 
{
+    Table table =
+        
catalogClient.asTableCatalog().loadTable(NameIdentifier.of(TEST_SCHEMA, 
tableName));
+    table.supportsPolicies().associatePolicies(new String[] {policyName}, new 
String[] {});
+  }
+
+  protected void associatePoliciesToSchema(String policyName, String 
schemaName) {
+    Schema schema = catalogClient.asSchemas().loadSchema(schemaName);
+    schema.supportsPolicies().associatePolicies(new String[] {policyName}, new 
String[] {});
+  }
+
+  protected Map<String, String> getSpecifyConfigs() {
+    return Map.of();
+  }
+
+  protected OptimizerEnv initOptimizerEnv() {
+    Map<String, String> configs = new HashMap<>();
+    configs.putAll(getGravitinoConfigs());
+    configs.putAll(getJdbcMetricsConfigs());
+    configs.putAll(getSpecifyConfigs());
+    return new OptimizerEnv(new OptimizerConfig(configs));
+  }
+
+  private Map<String, String> getJdbcMetricsConfigs() {
+    String jdbcUrl =
+        String.format(
+            
"jdbc:h2:file:/tmp/gravitino-optimizer-it-%d;DB_CLOSE_DELAY=-1;MODE=MYSQL;AUTO_SERVER=TRUE",
+            System.nanoTime());
+
+    return Map.of(
+        OptimizerConfig.OPTIMIZER_PREFIX
+            + GenericJdbcMetricsRepository.JDBC_METRICS_PREFIX
+            + GenericJdbcMetricsRepository.JDBC_URL,
+        jdbcUrl,
+        OptimizerConfig.OPTIMIZER_PREFIX
+            + GenericJdbcMetricsRepository.JDBC_METRICS_PREFIX
+            + GenericJdbcMetricsRepository.JDBC_DRIVER,
+        "org.h2.Driver");
+  }
+
+  private Map<String, String> getGravitinoConfigs() {
+    int gravitinoPort = getGravitinoServerPort();
+    String uri = String.format("http://127.0.0.1:%d";, gravitinoPort);
+    return ImmutableMap.of(
+        OptimizerConfig.GRAVITINO_URI,
+        uri,
+        OptimizerConfig.GRAVITINO_METALAKE,
+        METALAKE_NAME,
+        OptimizerConfig.GRAVITINO_DEFAULT_CATALOG,
+        GRAVITINO_CATALOG_NAME);
+  }
+
+  private void initMetalakeAndCatalog() {
+    this.metalakeClient = client.createMetalake(METALAKE_NAME, "", new 
HashMap<>());
+    this.catalogClient = createGravitinoIcebergCatalog();
+
+    if (!catalogClient.asSchemas().schemaExists(TEST_SCHEMA)) {
+      catalogClient.asSchemas().createSchema(TEST_SCHEMA, "comment", 
ImmutableMap.of());
+    }
+  }
+
+  private Catalog createGravitinoIcebergCatalog() {
+    return metalakeClient.createCatalog(
+        GRAVITINO_CATALOG_NAME,
+        Catalog.Type.RELATIONAL,
+        "lakehouse-iceberg",
+        "comment",
+        ImmutableMap.of(
+            IcebergConstants.URI,
+            "memory://gravitino-optimizer",
+            IcebergConstants.CATALOG_BACKEND,
+            "memory",
+            IcebergConstants.WAREHOUSE,
+            "file:///tmp/gravitino-optimizer/"));
+  }
+}

Review Comment:
   this class is used to setup enviroment ,  rename to 
`AbstractGravitinoOptimizerEnvIT` and make it abstract



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to