aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/firrtlTests/options/RegistrationSpec.scala
blob: c060341de9cc1f717919ac80452dde957edcc6c9 (plain)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// See LICENSE for license details.

package firrtlTests.options

import org.scalatest.{FlatSpec, Matchers}
import scopt.OptionParser
import java.util.ServiceLoader

import firrtl.options.{RegisteredTransform, RegisteredLibrary}
import firrtl.passes.Pass
import firrtl.ir.Circuit
import firrtl.annotations.NoTargetAnnotation
import firrtl.AnnotationSeq

case object HelloAnnotation extends NoTargetAnnotation

class FooTransform extends Pass with RegisteredTransform {
  def run(c: Circuit): Circuit = c
  def addOptions(p: OptionParser[AnnotationSeq]): Unit =
    p.opt[Unit]("hello")
      .action( (_, c) => HelloAnnotation +: c )
}

class BarLibrary extends RegisteredLibrary {
  def name: String = "Bar"
  def addOptions(p: OptionParser[AnnotationSeq]): Unit =
    p.opt[Unit]("world")
      .action( (_, c) => HelloAnnotation +: c )
}

class RegistrationSpec extends FlatSpec with Matchers {

  behavior of "RegisteredTransform"

  it should "FooTransform should be discovered by Java.util.ServiceLoader" in {
    val iter = ServiceLoader.load(classOf[RegisteredTransform]).iterator()
    val transforms = scala.collection.mutable.ArrayBuffer[RegisteredTransform]()
    while (iter.hasNext) {
      transforms += iter.next()
    }
    transforms.map(_.getClass.getName) should contain ("firrtlTests.options.FooTransform")
  }

  behavior of "RegisteredLibrary"

  it should "BarLibrary be discovered by Java.util.ServiceLoader" in {
    val iter = ServiceLoader.load(classOf[RegisteredLibrary]).iterator()
    val transforms = scala.collection.mutable.ArrayBuffer[RegisteredLibrary]()
    while (iter.hasNext) {
      transforms += iter.next()
    }
    transforms.map(_.getClass.getName) should contain ("firrtlTests.options.BarLibrary")
  }
}