@@ -183,78 +183,78 @@ public void insert_largeBlobData_ShouldWorkCorrectly(int blobSize, String humanR
183183 }
184184 }
185185
186- @ ParameterizedTest ()
187- @ MethodSource ("blobSizes" )
188- public void insertSimple_largeBlobData_ShouldWorkCorrectly (int blobSize , String humanReadableSize )
189- throws ExecutionException {
190- String tbleName = "e2e_simple" ;
191- try {
192- // Arrange
193- TableMetadata .Builder metadata =
194- TableMetadata .newBuilder ()
195- .addColumn (COL_NAME1 , DataType .INT )
196- .addColumn (COL_NAME2 , DataType .BLOB )
197- .addPartitionKey (COL_NAME1 );
198-
199- admin .createTable (namespace , tbleName , metadata .build (), true , getCreationOptions ());
200- admin .truncateTable (namespace , tbleName );
201- Thread .sleep (3000 );
202- byte [] blobData = createLargeBlob (blobSize );
203- Put put =
204- Put .newBuilder ()
205- .namespace (namespace )
206- .table (tbleName )
207- .partitionKey (Key .ofInt (COL_NAME1 , 1 ))
208- .blobValue (COL_NAME2 , blobData )
209- .build ();
210-
211- // Act
212- storage .put (put );
213-
214- // Assert
215- Optional <Result > optionalResult =
216- storage .get (
217- Get .newBuilder ()
218- .namespace (namespace )
219- .table (tbleName )
220- .partitionKey (Key .ofInt (COL_NAME1 , 1 ))
221- .build ());
222- assertThat (optionalResult ).isPresent ();
223- Result result = optionalResult .get ();
224- assertThat (result .getColumns ().get (COL_NAME2 ).getBlobValueAsBytes ()).isEqualTo (blobData );
225- } catch (InterruptedException e ) {
226- throw new RuntimeException (e );
227- } finally {
228- try {
229- admin .dropTable (namespace , tbleName , true );
230- } catch (Exception e ) {
231- logger .warn ("Failed to drop table" , e );
232- }
233- }
234- }
186+ // @ParameterizedTest()
187+ // @MethodSource("blobSizes")
188+ // public void insertSimple_largeBlobData_ShouldWorkCorrectly(int blobSize, String humanReadableSize)
189+ // throws ExecutionException {
190+ // String tbleName = "e2e_simple";
191+ // try {
192+ // // Arrange
193+ // TableMetadata.Builder metadata =
194+ // TableMetadata.newBuilder()
195+ // .addColumn(COL_NAME1, DataType.INT)
196+ // .addColumn(COL_NAME2, DataType.BLOB)
197+ // .addPartitionKey(COL_NAME1);
198+ //
199+ // admin.createTable(namespace, tbleName, metadata.build(), true, getCreationOptions());
200+ // admin.truncateTable(namespace, tbleName);
201+ // Thread.sleep(3000);
202+ // byte[] blobData = createLargeBlob(blobSize);
203+ // Put put =
204+ // Put.newBuilder()
205+ // .namespace(namespace)
206+ // .table(tbleName)
207+ // .partitionKey(Key.ofInt(COL_NAME1, 1))
208+ // .blobValue(COL_NAME2, blobData)
209+ // .build();
210+ //
211+ // // Act
212+ // storage.put(put);
213+ //
214+ // // Assert
215+ // Optional<Result> optionalResult =
216+ // storage.get(
217+ // Get.newBuilder()
218+ // .namespace(namespace)
219+ // .table(tbleName)
220+ // .partitionKey(Key.ofInt(COL_NAME1, 1))
221+ // .build());
222+ // assertThat(optionalResult).isPresent();
223+ // Result result = optionalResult.get();
224+ // assertThat(result.getColumns().get(COL_NAME2).getBlobValueAsBytes()).isEqualTo(blobData);
225+ // } catch (InterruptedException e) {
226+ // throw new RuntimeException(e);
227+ // } finally {
228+ // try {
229+ // admin.dropTable(namespace, tbleName, true);
230+ // } catch (Exception e) {
231+ // logger.warn("Failed to drop table", e);
232+ // }
233+ // }
234+ // }
235235
236236 static Stream <Arguments > blobSizes () {
237237 return Stream .of (
238- Arguments .of (128 , "128b" ), // 1 byte
239- Arguments .of (512 , "512b" ), // 512 byte
240- Arguments .of (1000 , "1 KB" ), // 1KB
241- Arguments .of (10_000 , "10 KB" ), // 10KB
242- Arguments .of (20000 , "20 KB" ), // 20KB
243- Arguments .of (30_000 , "30 KB" ), // 30KB
244- Arguments .of (40_000 , "40 KB" ), // 40KB
245- Arguments .of (50_000 , "50 KB" ), // 50KB
246- Arguments .of (50_000 , "60 KB" ), // 60KB
247- Arguments .of (70_000 , "70 KB" ), // 70KB
248- Arguments .of (50_000 , "80 KB" ), // 50KB
249- Arguments .of (90_000 , "90 KB" ), // 90KB
250- Arguments .of (100_000 , "100 KB" ), // 100KB
251- Arguments .of (1_000_000 , "1 MB" ), // 1MB
252- Arguments .of (5_000_000 , "5 MB" ), // 5MB
253- Arguments .of (10_000_000 , "10 MB" ), // 10MB
254- Arguments .of (50_000_000 , "50 MB" ), // 50 MB
255- Arguments .of (100_000_000 , "100 MB" ), // 100 MB
256- Arguments .of (200_000_000 , "200 MB" ), // 200 MB
257- Arguments .of (500_000_000 , "500 MB" ) // 500 MB
238+ // Arguments.of(128, "128b"), // 1 byte
239+ // Arguments.of(512, "512b"), // 512 byte
240+ // Arguments.of(1000, "1 KB"), // 1KB
241+ // Arguments.of(10_000, "10 KB"), // 10KB
242+ // Arguments.of(20000, "20 KB"), // 20KB
243+ // Arguments.of(30_000, "30 KB"), // 30KB
244+ // Arguments.of(40_000, "40 KB"), // 40KB
245+ // Arguments.of(50_000, "50 KB"), // 50KB
246+ // Arguments.of(50_000, "60 KB"), // 60KB
247+ // Arguments.of(70_000, "70 KB"), // 70KB
248+ // Arguments.of(50_000, "80 KB"), // 50KB
249+ // Arguments.of(90_000, "90 KB"), // 90KB
250+ // Arguments.of(100_000, "100 KB"), // 100KB
251+ // Arguments.of(1_000_000, "1 MB"), // 1MB
252+ // Arguments.of(5_000_000, "5 MB"), // 5MB
253+ // Arguments.of(10_000_000, "10 MB"), // 10MB
254+ // Arguments.of(50_000_000, "50 MB"), // 50 MB
255+ Arguments .of (100_000_000 , "100 MB" ) // 100 MB
256+ // Arguments.of(200_000_000, "200 MB"), // 200 MB
257+ // Arguments.of(500_000_000, "500 MB") // 500 MB
258258 );
259259 }
260260
0 commit comments