org.apache.flink.api.common.operators.util.TestRichInputFormat Java Examples

The following examples show how to use org.apache.flink.api.common.operators.util.TestRichInputFormat. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: GenericDataSourceBaseTest.java    From Flink-CEPplus with Apache License 2.0 4 votes vote down vote up
@Test
public void testDataSourceWithRuntimeContext() {
	try {
		TestRichInputFormat in = new TestRichInputFormat();
		GenericDataSourceBase<String, TestRichInputFormat> source =
				new GenericDataSourceBase<String, TestRichInputFormat>(
						in, new OperatorInformation<String>(BasicTypeInfo.STRING_TYPE_INFO), "testSource");

		final HashMap<String, Accumulator<?, ?>> accumulatorMap = new HashMap<String, Accumulator<?, ?>>();
		final HashMap<String, Future<Path>> cpTasks = new HashMap<>();
		final TaskInfo taskInfo = new TaskInfo("test_source", 1, 0, 1, 0);

		ExecutionConfig executionConfig = new ExecutionConfig();
		executionConfig.disableObjectReuse();
		assertEquals(false, in.hasBeenClosed());
		assertEquals(false, in.hasBeenOpened());
		
		List<String> resultMutableSafe = source.executeOnCollections(
				new RuntimeUDFContext(taskInfo, null, executionConfig, cpTasks, accumulatorMap,
						new UnregisteredMetricsGroup()), executionConfig);
		
		assertEquals(true, in.hasBeenClosed());
		assertEquals(true, in.hasBeenOpened());

		in.reset();
		executionConfig.enableObjectReuse();
		assertEquals(false, in.hasBeenClosed());
		assertEquals(false, in.hasBeenOpened());
		
		List<String> resultRegular = source.executeOnCollections(
				new RuntimeUDFContext(taskInfo, null, executionConfig, cpTasks, accumulatorMap,
						new UnregisteredMetricsGroup()), executionConfig);
		
		assertEquals(true, in.hasBeenClosed());
		assertEquals(true, in.hasBeenOpened());

		assertEquals(asList(TestIOData.RICH_NAMES), resultMutableSafe);
		assertEquals(asList(TestIOData.RICH_NAMES), resultRegular);
	}
	catch(Exception e){
		e.printStackTrace();
		fail(e.getMessage());
	}
}
 
Example #2
Source File: GenericDataSourceBaseTest.java    From flink with Apache License 2.0 4 votes vote down vote up
@Test
public void testDataSourceWithRuntimeContext() {
	try {
		TestRichInputFormat in = new TestRichInputFormat();
		GenericDataSourceBase<String, TestRichInputFormat> source =
				new GenericDataSourceBase<String, TestRichInputFormat>(
						in, new OperatorInformation<String>(BasicTypeInfo.STRING_TYPE_INFO), "testSource");

		final HashMap<String, Accumulator<?, ?>> accumulatorMap = new HashMap<String, Accumulator<?, ?>>();
		final HashMap<String, Future<Path>> cpTasks = new HashMap<>();
		final TaskInfo taskInfo = new TaskInfo("test_source", 1, 0, 1, 0);

		ExecutionConfig executionConfig = new ExecutionConfig();
		executionConfig.disableObjectReuse();
		assertEquals(false, in.hasBeenClosed());
		assertEquals(false, in.hasBeenOpened());
		
		List<String> resultMutableSafe = source.executeOnCollections(
				new RuntimeUDFContext(taskInfo, null, executionConfig, cpTasks, accumulatorMap,
						new UnregisteredMetricsGroup()), executionConfig);
		
		assertEquals(true, in.hasBeenClosed());
		assertEquals(true, in.hasBeenOpened());

		in.reset();
		executionConfig.enableObjectReuse();
		assertEquals(false, in.hasBeenClosed());
		assertEquals(false, in.hasBeenOpened());
		
		List<String> resultRegular = source.executeOnCollections(
				new RuntimeUDFContext(taskInfo, null, executionConfig, cpTasks, accumulatorMap,
						new UnregisteredMetricsGroup()), executionConfig);
		
		assertEquals(true, in.hasBeenClosed());
		assertEquals(true, in.hasBeenOpened());

		assertEquals(asList(TestIOData.RICH_NAMES), resultMutableSafe);
		assertEquals(asList(TestIOData.RICH_NAMES), resultRegular);
	}
	catch(Exception e){
		e.printStackTrace();
		fail(e.getMessage());
	}
}
 
Example #3
Source File: GenericDataSourceBaseTest.java    From flink with Apache License 2.0 4 votes vote down vote up
@Test
public void testDataSourceWithRuntimeContext() {
	try {
		TestRichInputFormat in = new TestRichInputFormat();
		GenericDataSourceBase<String, TestRichInputFormat> source =
				new GenericDataSourceBase<String, TestRichInputFormat>(
						in, new OperatorInformation<String>(BasicTypeInfo.STRING_TYPE_INFO), "testSource");

		final HashMap<String, Accumulator<?, ?>> accumulatorMap = new HashMap<String, Accumulator<?, ?>>();
		final HashMap<String, Future<Path>> cpTasks = new HashMap<>();
		final TaskInfo taskInfo = new TaskInfo("test_source", 1, 0, 1, 0);

		ExecutionConfig executionConfig = new ExecutionConfig();
		executionConfig.disableObjectReuse();
		assertEquals(false, in.hasBeenClosed());
		assertEquals(false, in.hasBeenOpened());
		
		List<String> resultMutableSafe = source.executeOnCollections(
				new RuntimeUDFContext(taskInfo, null, executionConfig, cpTasks, accumulatorMap,
						new UnregisteredMetricsGroup()), executionConfig);
		
		assertEquals(true, in.hasBeenClosed());
		assertEquals(true, in.hasBeenOpened());

		in.reset();
		executionConfig.enableObjectReuse();
		assertEquals(false, in.hasBeenClosed());
		assertEquals(false, in.hasBeenOpened());
		
		List<String> resultRegular = source.executeOnCollections(
				new RuntimeUDFContext(taskInfo, null, executionConfig, cpTasks, accumulatorMap,
						new UnregisteredMetricsGroup()), executionConfig);
		
		assertEquals(true, in.hasBeenClosed());
		assertEquals(true, in.hasBeenOpened());

		assertEquals(asList(TestIOData.RICH_NAMES), resultMutableSafe);
		assertEquals(asList(TestIOData.RICH_NAMES), resultRegular);
	}
	catch(Exception e){
		e.printStackTrace();
		fail(e.getMessage());
	}
}