summaryrefslogtreecommitdiffstats
path: root/container-di/src/main/scala/com/yahoo/container/bundle/MockBundle.scala
blob: 9975a9fe0c20b4379a0801f03422fbbbc1fa11d4 (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
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.bundle


import java.net.URL
import java.util

import org.osgi.framework.wiring._
import org.osgi.framework.{ServiceReference, Version, Bundle}
import java.io.InputStream
import java.util.{Collections, Hashtable, Dictionary}
import MockBundle._
import org.osgi.resource.{Capability, Wire, Requirement}

/**
 *
 * @author gjoranv
 * @since 5.15
 */
class MockBundle extends Bundle with BundleWiring {

  override def getState = Bundle.ACTIVE

  override def start(options: Int) {}
  override def start() {}
  override def stop(options: Int) {}
  override def stop() {}
  override def update(input: InputStream) {}
  override def update() {}
  override def uninstall() {}

  override def getHeaders(locale: String) = getHeaders

  override def getSymbolicName = SymbolicName
  override def getVersion: Version = BundleVersion
  override def getLocation = getSymbolicName
  override def getBundleId: Long = 0L

  override def getHeaders: Dictionary[String, String] = new Hashtable[String, String]()

  override def getRegisteredServices = Array[ServiceReference[_]]()
  override def getServicesInUse = getRegisteredServices

  override def hasPermission(permission: Any) = true

  override def getResource(name: String) = throw new UnsupportedOperationException
  override def loadClass(name: String) = throw new UnsupportedOperationException
  override def getResources(name: String) = throw new UnsupportedOperationException

  override def getEntryPaths(path: String) = throw new UnsupportedOperationException
  override def getEntry(path: String) = throw new UnsupportedOperationException
  override def findEntries(path: String, filePattern: String, recurse: Boolean) = Collections.emptyEnumeration()


  override def getLastModified = 1L

  override def getBundleContext = throw new UnsupportedOperationException
  override def getSignerCertificates(signersType: Int) = Collections.emptyMap()

  override def adapt[A](`type`: Class[A]) =
    `type` match {
      case MockBundle.bundleWiringClass => this.asInstanceOf[A]
      case _ => ???
    }

  override def getDataFile(filename: String) = null
  override def compareTo(o: Bundle) = getBundleId compareTo o.getBundleId


  //TODO: replace with mockito
  override def findEntries(p1: String, p2: String, p3: Int): util.List[URL] = ???
  override def getRequiredResourceWires(p1: String): util.List[Wire] = ???
  override def getResourceCapabilities(p1: String): util.List[Capability] = ???
  override def isCurrent: Boolean = ???
  override def getRequiredWires(p1: String): util.List[BundleWire] = ???
  override def getCapabilities(p1: String): util.List[BundleCapability] = ???
  override def getProvidedResourceWires(p1: String): util.List[Wire] = ???
  override def getProvidedWires(p1: String): util.List[BundleWire] = ???
  override def getRevision: BundleRevision = ???
  override def getResourceRequirements(p1: String): util.List[Requirement] = ???
  override def isInUse: Boolean = ???
  override def listResources(p1: String, p2: String, p3: Int): util.Collection[String] = Collections.emptyList()
  override def getClassLoader: ClassLoader = MockBundle.getClass.getClassLoader
  override def getRequirements(p1: String): util.List[BundleRequirement] = ???
  override def getResource: BundleRevision = ???
  override def getBundle: Bundle = ???
}

object MockBundle {
  val SymbolicName = "mock-bundle"
  val BundleVersion = new Version(1, 0, 0)

  val bundleWiringClass = classOf[BundleWiring]


}