Sha256: 3cb6320b0414668c53342b2e5f328278a00ef5c3922adf3b1e461cf6e1deb7f0
Contents?: true
Size: 906 Bytes
Versions: 2
Compression:
Stored size: 906 Bytes
Contents
package org.embulk.input.bigquery_export_gcs; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import org.junit.Test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class TestGoogleCloudAccessData extends UnitTestInitializer { private static final Logger log = LoggerFactory.getLogger(TestGoogleCloudAccessData.class); @Test public void testGcsInputStreamOpen() throws FileNotFoundException, IOException { BigqueryExportGcsFileInputPlugin.PluginTask task = config.loadConfig(BigqueryExportGcsFileInputPlugin.PluginTask.class ); plugin.executeBigqueryApi(task); InputStream ins = BigqueryExportUtils.openInputStream(task, task.getFiles().get(0)); log.info("file size : {}",org.apache.commons.compress.utils.IOUtils.toByteArray(ins).length); } }
Version data entries
2 entries across 2 versions & 1 rubygems