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

    https://github.com/apache/spark/pull/247#discussion_r11319581
  
    --- Diff: 
streaming/src/test/scala/org/apache/spark/streaming/StreamingContextSuite.scala 
---
    @@ -133,18 +147,61 @@ class StreamingContextSuite extends FunSuite with 
BeforeAndAfter with Timeouts {
         ssc.start()
         ssc.stop()
         ssc.stop()
    -    ssc = null
       }
     
    +  test("stop before start and start after stop") {
    +    ssc = new StreamingContext(master, appName, batchDuration)
    +    addInputStream(ssc).register
    +    ssc.stop()  // stop before start should not throw exception
    +    ssc.start()
    +    ssc.stop()
    +    intercept[SparkException] {
    +      ssc.start() // start after stop should throw exception
    +    }
    +  }
    +
    +
       test("stop only streaming context") {
         ssc = new StreamingContext(master, appName, batchDuration)
         sc = ssc.sparkContext
         addInputStream(ssc).register
         ssc.start()
         ssc.stop(false)
    -    ssc = null
         assert(sc.makeRDD(1 to 100).collect().size === 100)
         ssc = new StreamingContext(sc, batchDuration)
    +    addInputStream(ssc).register
    +    ssc.start()
    +    ssc.stop()
    +  }
    +
    +  test("stop gracefully") {
    --- End diff --
    
    This test takes 12 seconds which is pretty long. Is there any way we can 
make this shorter?


---
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