|
| 1 | +package com.typesafe.scalalogging |
| 2 | + |
| 3 | +import org.mockito.Mockito._ |
| 4 | +import org.scalatest.matchers.should.Matchers |
| 5 | +import org.scalatest.wordspec.AnyWordSpec |
| 6 | +import org.scalatestplus.mockito.MockitoSugar |
| 7 | +import org.slf4j.{ Logger => Underlying } |
| 8 | + |
| 9 | +class Scala2LoggerSpec extends AnyWordSpec with Matchers with Varargs with MockitoSugar { |
| 10 | + |
| 11 | + // Info |
| 12 | + "Calling info with an interpolated message, only scala 2" should { |
| 13 | + "fix Varargs compilation error issue 354 only scala 2" in { |
| 14 | + val f = fixture(_.isInfoEnabled, isEnabled = true) |
| 15 | + import f._ |
| 16 | + class LogWrapper(val underlying: Logger) { |
| 17 | + def info(message: String, args: AnyRef*): Unit = underlying.info(message, args: _*) |
| 18 | + } |
| 19 | + val logWrapper = new LogWrapper(logger) |
| 20 | + logWrapper.info("""Hello {}""", arg5ref) |
| 21 | + verify(underlying).info("""Hello {}""", forceVarargs(arg5ref): _*) |
| 22 | + } |
| 23 | + } |
| 24 | + |
| 25 | + private def fixture(p: Underlying => Boolean, isEnabled: Boolean) = new LoggerF(p, isEnabled) |
| 26 | + |
| 27 | + private class LoggerF(p: Underlying => Boolean, isEnabled: Boolean) { |
| 28 | + val msg = "msg" |
| 29 | + val cause = new RuntimeException("cause") |
| 30 | + val arg1 = "arg1" |
| 31 | + val arg2: Integer = Integer.valueOf(1) |
| 32 | + val arg3 = "arg3" |
| 33 | + val arg4 = 4 |
| 34 | + val arg4ref: AnyRef = arg4.asInstanceOf[AnyRef] |
| 35 | + val arg5 = true |
| 36 | + val arg5ref: AnyRef = arg5.asInstanceOf[AnyRef] |
| 37 | + val arg6 = 6L |
| 38 | + val arg6ref: AnyRef = arg6.asInstanceOf[AnyRef] |
| 39 | + val arg7 = new Throwable |
| 40 | + val arg7ref: AnyRef = arg7.asInstanceOf[AnyRef] |
| 41 | + val underlying: Underlying = mock[org.slf4j.Logger] |
| 42 | + when(p(underlying)).thenReturn(isEnabled) |
| 43 | + val logger: Logger = Logger(underlying) |
| 44 | + } |
| 45 | +} |
0 commit comments