aboutsummaryrefslogtreecommitdiff
path: root/core/src/test/scala/org/apache/spark/PartitionPruningRDDSuite.scala
blob: adbe805916b08ed8141892997497855d4154d6db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package org.apache.spark

import org.scalatest.FunSuite
import org.apache.spark.SparkContext._
import org.apache.spark.rdd.PartitionPruningRDD


class PartitionPruningRDDSuite extends FunSuite with SharedSparkContext {

  test("Pruned Partitions inherit locality prefs correctly") {
    class TestPartition(i: Int) extends Partition {
      def index = i
    }
    val rdd = new RDD[Int](sc, Nil) {
      override protected def getPartitions = {
        Array[Partition](
            new TestPartition(1),
            new TestPartition(2), 
            new TestPartition(3))
      }
      def compute(split: Partition, context: TaskContext) = {Iterator()}
    }
    val prunedRDD = PartitionPruningRDD.create(rdd, {x => if (x==2) true else false})
    val p = prunedRDD.partitions(0)
    assert(p.index == 2)
    assert(prunedRDD.partitions.length == 1)
  }
}