liyubin117 commented on code in PR #23678:
URL: https://github.com/apache/flink/pull/23678#discussion_r1423393030


##########
flink-table/flink-table-api-java-bridge/src/test/java/org/apache/flink/table/factories/DataGenTableSourceFactoryTest.java:
##########
@@ -297,10 +295,104 @@ void testVariableLengthDataGeneration() throws Exception 
{
                         anyCauseMatches(
                                 ValidationException.class,
                                 String.format(
-                                        "Only supports specifying '%s' option 
for variable-length types (varchar, string, varbinary, bytes). The type of 
field %s is not within this range.",
+                                        "Only supports specifying '%s' option 
for variable-length types (VARCHAR/STRING/VARBINARY/BYTES). The type of field 
'%s' is not within this range.",
                                         
DataGenConnectorOptions.FIELD_VAR_LEN.key(), "f4")));
     }
 
+    @Test
+    void testVariableLengthDataType() throws Exception {
+        DescriptorProperties descriptor = new DescriptorProperties();
+        final int rowsNumber = 200;
+        descriptor.putString(FactoryUtil.CONNECTOR.key(), "datagen");
+        descriptor.putLong(DataGenConnectorOptions.NUMBER_OF_ROWS.key(), 
rowsNumber);
+
+        List<RowData> results = runGenerator(LENGTH_CONSTRAINED_SCHEMA, 
descriptor);
+        assertThat(results).hasSize(rowsNumber);
+
+        for (RowData row : results) {
+            assertThat(row.getString(2).toString()).hasSize(30);
+            assertThat(row.getBinary(3)).hasSize(20);
+            assertThat(row.getString(4).toString())
+                    
.hasSize(RandomGeneratorVisitor.RANDOM_STRING_LENGTH_DEFAULT);
+        }
+
+        descriptor.putString(
+                DataGenConnectorOptionsUtil.FIELDS + ".f2." + 
DataGenConnectorOptionsUtil.KIND,
+                DataGenConnectorOptionsUtil.RANDOM);
+        descriptor.putLong(
+                DataGenConnectorOptionsUtil.FIELDS + ".f2." + 
DataGenConnectorOptionsUtil.LENGTH,
+                25);
+        descriptor.putString(
+                DataGenConnectorOptionsUtil.FIELDS + ".f4." + 
DataGenConnectorOptionsUtil.KIND,
+                DataGenConnectorOptionsUtil.RANDOM);
+        descriptor.putLong(
+                DataGenConnectorOptionsUtil.FIELDS + ".f4." + 
DataGenConnectorOptionsUtil.LENGTH,
+                9999);
+
+        results = runGenerator(LENGTH_CONSTRAINED_SCHEMA, descriptor);
+
+        for (RowData row : results) {
+            assertThat(row.getString(2).toString()).hasSize(25);
+            assertThat(row.getString(4).toString()).hasSize(9999);
+        }
+
+        assertThatThrownBy(
+                        () -> {
+                            descriptor.putString(
+                                    DataGenConnectorOptionsUtil.FIELDS
+                                            + ".f3."
+                                            + DataGenConnectorOptionsUtil.KIND,
+                                    DataGenConnectorOptionsUtil.RANDOM);
+                            descriptor.putLong(
+                                    DataGenConnectorOptionsUtil.FIELDS
+                                            + ".f3."
+                                            + 
DataGenConnectorOptionsUtil.LENGTH,
+                                    21);
+
+                            runGenerator(LENGTH_CONSTRAINED_SCHEMA, 
descriptor);
+                        })
+                .satisfies(
+                        anyCauseMatches(
+                                ValidationException.class,
+                                "Custom length '21' for variable-length type 
(VARCHAR/STRING/VARBINARY/BYTES) field 'f3' should be shorter than '20' defined 
in the schema."));
+    }
+
+    @Test
+    void testFixedLengthDataType() throws Exception {
+        DescriptorProperties descriptor = new DescriptorProperties();
+        final int rowsNumber = 200;
+        descriptor.putString(FactoryUtil.CONNECTOR.key(), "datagen");
+        descriptor.putLong(DataGenConnectorOptions.NUMBER_OF_ROWS.key(), 
rowsNumber);
+
+        List<RowData> results = runGenerator(LENGTH_CONSTRAINED_SCHEMA, 
descriptor);
+        assertThat(results).hasSize(rowsNumber);
+
+        for (RowData row : results) {
+            assertThat(row.getString(0).toString()).hasSize(50);
+            assertThat(row.getBinary(1)).hasSize(40);
+        }
+
+        assertThatThrownBy(
+                        () -> {
+                            descriptor.putString(
+                                    DataGenConnectorOptionsUtil.FIELDS
+                                            + ".f0."
+                                            + DataGenConnectorOptionsUtil.KIND,
+                                    DataGenConnectorOptionsUtil.RANDOM);
+                            descriptor.putLong(
+                                    DataGenConnectorOptionsUtil.FIELDS
+                                            + ".f0."
+                                            + 
DataGenConnectorOptionsUtil.LENGTH,
+                                    20);
+
+                            runGenerator(LENGTH_CONSTRAINED_SCHEMA, 
descriptor);
+                        })
+                .satisfies(
+                        anyCauseMatches(
+                                ValidationException.class,
+                                "Custom length for fixed-length type 
(CHAR/BINARY) field 'f0' is not supported."));
+    }
+

Review Comment:
   good idea!



-- 
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: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to