blob: 41b5bbf6eafa65ef97fa5cb68f9503c832ce2338 (
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
55
56
57
58
59
60
|
// See LICENSE for license details.
package firrtlTests.options
import org.scalatest.flatspec.AnyFlatSpec
import org.scalatest.matchers.should.Matchers
import java.util.ServiceLoader
import firrtl.options.{RegisteredTransform, RegisteredLibrary, ShellOption}
import firrtl.passes.Pass
import firrtl.ir.Circuit
import firrtl.annotations.NoTargetAnnotation
case object HelloAnnotation extends NoTargetAnnotation
class FooTransform extends Pass with RegisteredTransform {
def run(c: Circuit): Circuit = c
val options = Seq(
new ShellOption[Unit](
longOption = "hello",
toAnnotationSeq = _ => Seq(HelloAnnotation),
helpText = "Hello option") )
}
class BarLibrary extends RegisteredLibrary {
def name: String = "Bar"
val options = Seq(
new ShellOption[Unit](
longOption = "world",
toAnnotationSeq = _ => Seq(HelloAnnotation),
helpText = "World option") )
}
class RegistrationSpec extends AnyFlatSpec 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")
}
}
|