Skip to content

Commit

Permalink
Fix FlatMapObservableTest
Browse files Browse the repository at this point in the history
Add header and ensure can run in Scala 2.11

JAVA-4241
  • Loading branch information
rozza committed Jul 29, 2021
1 parent f5c00d7 commit 357ce8b
Showing 1 changed file with 27 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
* Copyright 2008-present MongoDB, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.mongodb.scala.internal

import org.mongodb.scala.{ BaseSpec, Observable, Observer }
Expand All @@ -13,17 +29,11 @@ class FlatMapObservableTest extends BaseSpec with Futures with Eventually {
val completedCounter = new AtomicInteger(0)
Observable(1 to 100)
.flatMap(
x =>
(observer: Observer[_ >: Int]) => {
Future(()).onComplete(_ => {
observer.onNext(x)
observer.onComplete()
})
}
x => createObservable(x)
)
.subscribe(
_ => (),
p.failure,
e => p.failure(e),
() => {
completedCounter.incrementAndGet()
Thread.sleep(100)
Expand All @@ -35,4 +45,13 @@ class FlatMapObservableTest extends BaseSpec with Futures with Eventually {
assert(completedCounter.get() == 1, s"${completedCounter.get()}")
Thread.sleep(1000)
}

private def createObservable(x: Int): Observable[Int] = new Observable[Int] {
override def subscribe(observer: Observer[_ >: Int]): Unit = {
Future(()).onComplete(_ => {
observer.onNext(x)
observer.onComplete()
})
}
}
}

0 comments on commit 357ce8b

Please sign in to comment.