GithubHelp home page GithubHelp logo

Comments (2)

sameb avatar sameb commented on May 28, 2024 1

Any possible fix will be greatly accelerated by a test case that exhibits the problem (and would theoretically pass if the issue were fixed).

from guice.

ktabouguia-sq avatar ktabouguia-sq commented on May 28, 2024

Hello - Here is some sample code with a test that fails when intercepting suspending functions in Kotlin

package interceptors

import com.google.inject.Guice
import com.google.inject.Injector
import com.google.inject.matcher.Matchers
import java.io.InterruptedIOException
import javax.inject.Inject
import javax.inject.Singleton
import kotlinx.coroutines.async
import kotlinx.coroutines.delay
import kotlinx.coroutines.runBlocking
import misk.inject.KAbstractModule
import misk.inject.getInstance
import org.aopalliance.intercept.MethodInterceptor
import org.aopalliance.intercept.MethodInvocation
import org.assertj.core.api.Assertions.assertThat
import org.junit.jupiter.api.BeforeEach
import org.junit.jupiter.api.Test

var successfulInterceptedCallCount: Int = 0
var failedInterceptedCallCount: Int = 0

class ClientMetricsInterceptorTest {
  private lateinit var dinosaur: Dinosaur
  private lateinit var clientMetricsInterceptor: ClientMetricsInterceptor
  private lateinit var injector: Injector

  @BeforeEach
  fun before() {
    injector = Guice.createInjector(
      object : KAbstractModule() {
        override fun configure() {
          bindInterceptor(
            Matchers.any(),
            Matchers.annotatedWith(WithMetrics::class.java),
            ClientMetricsInterceptor(),
          )

          // This makes the Dinosaur class a managed bean
          // so that it can support method interception.
          requestStaticInjection(Dinosaur::class.java)
        }
      }
    )
    dinosaur = injector.getInstance()
    clientMetricsInterceptor = injector.getInstance()
  }

  @Test
  fun `failure metrics published on interrupt`() {
    runBlocking {
      (1..100).map {
        async {
          try {
            dinosaur.interceptedMethod(true)
          } catch (e: InterruptedIOException) {
            // exception caught!
          }
        }
      }
    }

    assertThat(successfulInterceptedCallCount).isEqualTo(0)
    assertThat(failedInterceptedCallCount).isEqualTo(100)
  }
}

interface Animal {
  suspend fun interceptedMethod(interrupt: Boolean)
}

open class Dinosaur @Inject constructor() : Animal {
  @WithMetrics("dinosaur")
  override suspend fun interceptedMethod(
    interrupt: Boolean,
  ) {
    delay(10)
    if (interrupt) {
      throw InterruptedIOException()
    }
  }
}

@Singleton class ClientMetricsInterceptor @Inject constructor() : MethodInterceptor {
  override fun invoke(invocation: MethodInvocation?) = invocation?.let {
    try {
      it.proceed().also { successfulInterceptedCallCount++ }
    } catch (e: InterruptedIOException) {
      failedInterceptedCallCount++
      throw e
    }
  }
}

@Retention(AnnotationRetention.RUNTIME)
@Target(AnnotationTarget.FUNCTION, AnnotationTarget.CLASS)
annotation class WithMetrics(
  val clientName: String,
)

from guice.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.