rdblue commented on code in PR #7750:
URL: https://github.com/apache/iceberg/pull/7750#discussion_r1227355854


##########
core/src/test/java/org/apache/iceberg/TestUpdateRequirements.java:
##########
@@ -0,0 +1,246 @@
+/*
+ * 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.iceberg;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.assertj.core.api.Assertions.assertThatThrownBy;
+import static org.mockito.Mockito.mock;
+import static org.mockito.Mockito.when;
+
+import java.util.UUID;
+import org.apache.iceberg.relocated.com.google.common.collect.ImmutableList;
+import org.apache.iceberg.relocated.com.google.common.collect.ImmutableMap;
+import org.apache.iceberg.relocated.com.google.common.collect.Sets;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Test;
+
+public class TestUpdateRequirements {
+  private final TableMetadata metadata = mock(TableMetadata.class);
+
+  @BeforeEach
+  public void before() {
+    String uuid = UUID.randomUUID().toString();
+    when(metadata.uuid()).thenReturn(uuid);
+  }
+
+  @Test
+  public void nullCheck() {
+    assertThatThrownBy(() -> UpdateRequirements.forCreateTable(null))
+        .isInstanceOf(IllegalArgumentException.class)
+        .hasMessage("Invalid metadata updates: null");
+
+    assertThatThrownBy(() -> UpdateRequirements.forUpdateTable(null, null))
+        .isInstanceOf(IllegalArgumentException.class)
+        .hasMessage("Invalid table metadata: null");
+
+    assertThatThrownBy(() -> UpdateRequirements.forUpdateTable(metadata, null))
+        .isInstanceOf(IllegalArgumentException.class)
+        .hasMessage("Invalid metadata updates: null");
+
+    assertThatThrownBy(() -> UpdateRequirements.forReplaceTable(null, null))
+        .isInstanceOf(IllegalArgumentException.class)
+        .hasMessage("Invalid table metadata: null");
+
+    assertThatThrownBy(() -> UpdateRequirements.forReplaceTable(metadata, 
null))
+        .isInstanceOf(IllegalArgumentException.class)
+        .hasMessage("Invalid metadata updates: null");
+  }
+
+  @Test
+  public void emptyUpdatesForCreateTable() {
+    assertThat(UpdateRequirements.forCreateTable(ImmutableList.of()))
+        .hasSize(1)
+        
.hasOnlyElementsOfType(UpdateRequirement.AssertTableDoesNotExist.class);
+  }
+
+  @Test
+  public void emptyUpdatesForUpdateAndReplaceTable() {
+    assertThat(UpdateRequirements.forReplaceTable(metadata, 
ImmutableList.of()))
+        .hasSize(1)
+        .hasOnlyElementsOfType(UpdateRequirement.AssertTableUUID.class);
+
+    assertThat(UpdateRequirements.forUpdateTable(metadata, ImmutableList.of()))
+        .hasSize(1)
+        .hasOnlyElementsOfType(UpdateRequirement.AssertTableUUID.class);
+  }
+
+  @Test
+  public void assignUUID() {
+    assertThat(
+            UpdateRequirements.forUpdateTable(
+                metadata, ImmutableList.of(new 
MetadataUpdate.AssignUUID(metadata.uuid()))))
+        .hasSize(1)
+        .hasOnlyElementsOfType(UpdateRequirement.AssertTableUUID.class);
+  }
+
+  @Test
+  public void upgradeFormatVersion() {
+    assertThat(
+            UpdateRequirements.forUpdateTable(
+                metadata, ImmutableList.of(new 
MetadataUpdate.UpgradeFormatVersion(2))))
+        .hasSize(1)
+        .hasOnlyElementsOfType(UpdateRequirement.AssertTableUUID.class);
+  }
+
+  @Test
+  public void addSchema() {
+    assertThat(
+            UpdateRequirements.forUpdateTable(
+                metadata, ImmutableList.of(new MetadataUpdate.AddSchema(new 
Schema(), 0))))
+        .hasSize(2)
+        .hasOnlyElementsOfTypes(
+            UpdateRequirement.AssertTableUUID.class,
+            UpdateRequirement.AssertLastAssignedFieldId.class);

Review Comment:
   I don't think that these tests are sufficient. The assertions must be based 
on the base metadata's state. So the AssertTableUUID must contain the base 
metadata's UUID. And the last assigned field ID assertion should contain the 
base metadata's last column ID. I think the implementation is correct, but this 
would not catch some bugs introduced by updating the implementation.



-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to