Github user Elbehery commented on a diff in the pull request:

    https://github.com/apache/flink/pull/442#discussion_r26288077
  
    --- Diff: 
flink-contrib/src/test/java/org/apache/flink/contrib/SimpleTweetInputFormatTest.java
 ---
    @@ -0,0 +1,62 @@
    +package org.apache.flink.contrib;
    +
    +import org.apache.flink.configuration.Configuration;
    +import org.apache.flink.contrib.tweetinputformat.io.SimpleTweetInputFormat;
    +import org.apache.flink.contrib.tweetinputformat.model.tweet.Tweet;
    +import 
org.apache.flink.contrib.tweetinputformat.model.tweet.entities.HashTags;
    +import org.apache.flink.core.fs.FileInputSplit;
    +import org.apache.flink.core.fs.Path;
    +import org.junit.Before;
    +import org.junit.Test;
    +
    +import java.io.File;
    +import java.io.FileNotFoundException;
    +import java.io.IOException;
    +import java.util.Iterator;
    +import java.util.List;
    +
    +
    +public class SimpleTweetInputFormatTest {
    +
    +    private Tweet tweet;
    +
    +    private SimpleTweetInputFormat simpleTweetInputFormat;
    +
    +    private FileInputSplit fileInputSplit;
    +
    +    protected Configuration config;
    +
    +    protected File tempFile;
    +
    +
    +    @Before
    +    public void testSetUp() {
    +
    +
    +        simpleTweetInputFormat = new SimpleTweetInputFormat();
    +
    +        File jsonFile = new  
File("../flink-contrib/src/main/resources/HashTagTweetSample.json");
    +
    +        fileInputSplit = new FileInputSplit(0, new 
Path(jsonFile.getPath()), 0, jsonFile.length(), new String[] {"localhost"});
    +    }
    +
    +    @Test
    +    public void testTweetInput() throws Exception {
    +
    +
    +        simpleTweetInputFormat.open(fileInputSplit);
    +        while (!simpleTweetInputFormat.reachedEnd()) {
    --- End diff --
    
    Changed, I have tried to use "Switch" instead of multiple "if-else" because 
it more efficient, but the compiler of flink uses Java 1.6, and it can not 
accept "String" in switches.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to