summaryrefslogtreecommitdiffstats
path: root/container-di/src/test/scala/com/yahoo/container/di/ContainerTest.scala
diff options
context:
space:
mode:
Diffstat (limited to 'container-di/src/test/scala/com/yahoo/container/di/ContainerTest.scala')
-rw-r--r--container-di/src/test/scala/com/yahoo/container/di/ContainerTest.scala44
1 files changed, 32 insertions, 12 deletions
diff --git a/container-di/src/test/scala/com/yahoo/container/di/ContainerTest.scala b/container-di/src/test/scala/com/yahoo/container/di/ContainerTest.scala
index f31973c5cea..b7c3f94410b 100644
--- a/container-di/src/test/scala/com/yahoo/container/di/ContainerTest.scala
+++ b/container-di/src/test/scala/com/yahoo/container/di/ContainerTest.scala
@@ -3,7 +3,7 @@ package com.yahoo.container.di
import com.yahoo.container.di.componentgraph.core.ComponentGraphTest.{SimpleComponent, SimpleComponent2}
import com.yahoo.container.di.componentgraph.Provider
-import com.yahoo.container.di.componentgraph.core.{ComponentGraph, Node}
+import com.yahoo.container.di.componentgraph.core.{ComponentGraph, ComponentNode, Node}
import org.junit.{After, Before, Ignore, Test}
import org.junit.Assert._
import org.hamcrest.CoreMatchers._
@@ -148,11 +148,12 @@ class ContainerTest {
currentGraph = container.runOnce(currentGraph)
fail("Expected exception")
} catch {
- case _:ComponentConstructorException => // Expected, do nothing
+ case _: ComponentConstructorException => // Expected, do nothing
case _: Throwable => fail("Expected ComponentConstructorException")
}
assertEquals(1, currentGraph.generation)
+ // Also verify that next reconfig is successful
val componentTakingConfigEntry = ComponentEntry("componentTakingConfig", classOf[ComponentTakingConfig])
dirConfigSource.writeConfig("test", """stringVal "myString" """)
writeBootstrapConfigs(Array(simpleComponentEntry, componentTakingConfigEntry))
@@ -165,6 +166,29 @@ class ContainerTest {
}
@Test
+ def previous_graph_is_retained_when_new_graph_contains_component_that_times_out_in_ctor() {
+ ComponentNode.ComponentConstructTimeout = 1 second
+ val simpleComponentEntry = ComponentEntry("simpleComponent", classOf[SimpleComponent])
+
+ writeBootstrapConfigs(Array(simpleComponentEntry))
+ val container = newContainer(dirConfigSource)
+ var currentGraph = container.runOnce()
+
+ val simpleComponent = currentGraph.getInstance(classOf[SimpleComponent])
+
+ writeBootstrapConfigs("sleeper", classOf[ComponentThatSleepsInConstructor])
+ container.reloadConfig(2)
+ try {
+ currentGraph = container.runOnce(currentGraph)
+ fail("Expected exception")
+ } catch {
+ case e: ComponentConstructorException => assertThat(e.getMessage, containsString("Timed out"))
+ case _: Throwable => fail("Expected ComponentConstructorException")
+ }
+ assertEquals(1, currentGraph.generation)
+ }
+
+ @Test
def previous_graph_is_retained_when_new_graph_throws_exception_for_missing_config() {
val simpleComponentEntry = ComponentEntry("simpleComponent", classOf[SimpleComponent])
@@ -181,19 +205,10 @@ class ContainerTest {
currentGraph = container.runOnce(currentGraph)
fail("Expected exception")
} catch {
- case _:IllegalArgumentException => // Expected, do nothing
+ case _: IllegalArgumentException => // Expected, do nothing
case _: Throwable => fail("Expected IllegalArgumentException")
}
assertEquals(1, currentGraph.generation)
-
- val componentTakingConfigEntry = ComponentEntry("componentTakingConfig", classOf[ComponentTakingConfig])
- writeBootstrapConfigs(Array(simpleComponentEntry, componentTakingConfigEntry))
- container.reloadConfig(3)
- currentGraph = container.runOnce(currentGraph)
-
- assertEquals(3, currentGraph.generation)
- assertSame(simpleComponent, currentGraph.getInstance(classOf[SimpleComponent]))
- assertNotNull(currentGraph.getInstance(classOf[ComponentTakingConfig]))
}
@Test
@@ -378,6 +393,11 @@ object ContainerTest {
fail("This component should never be created. Only used for tests where 'int' config is missing.")
}
+ class ComponentThatSleepsInConstructor() {
+ Thread.sleep(3 * ComponentNode.ComponentConstructTimeout.toMillis)
+ fail("The timeout mechanism for constructing components is broken.")
+ }
+
class DestructableComponent extends AbstractComponent {
var deconstructed = false
override def deconstruct() {