Search in sources :

Example 1 with NoOpCache

use of cn.taketoday.cache.support.NoOpCache in project today-infrastructure by TAKETODAY.

the class LoggingCacheErrorHandlerTests method handleCacheErrorWithStacktrace.

@Test
void handleCacheErrorWithStacktrace() {
    Logger logger = mock(Logger.class);
    LoggingCacheErrorHandler handler = new LoggingCacheErrorHandler(logger, true);
    RuntimeException exception = new RuntimeException();
    handler.handleCacheGetError(exception, new NoOpCache("NOOP"), "key");
    verify(logger).warn("Cache 'NOOP' failed to get entry with key 'key'", exception);
}
Also used : NoOpCache(cn.taketoday.cache.support.NoOpCache) Logger(cn.taketoday.logging.Logger) Test(org.junit.jupiter.api.Test)

Example 2 with NoOpCache

use of cn.taketoday.cache.support.NoOpCache in project today-infrastructure by TAKETODAY.

the class LoggingCacheErrorHandlerTests method handleClearErrorLogsAppropriateMessage.

@Test
void handleClearErrorLogsAppropriateMessage() {
    Logger logger = mock(Logger.class);
    LoggingCacheErrorHandler handler = new LoggingCacheErrorHandler(logger, false);
    handler.handleCacheClearError(new RuntimeException(), new NoOpCache("NOOP"));
    verify(logger).warn("Cache 'NOOP' failed to clear entries");
}
Also used : NoOpCache(cn.taketoday.cache.support.NoOpCache) Logger(cn.taketoday.logging.Logger) Test(org.junit.jupiter.api.Test)

Example 3 with NoOpCache

use of cn.taketoday.cache.support.NoOpCache in project today-infrastructure by TAKETODAY.

the class LoggingCacheErrorHandlerTests method handleEvictCacheErrorLogsAppropriateMessage.

@Test
void handleEvictCacheErrorLogsAppropriateMessage() {
    Logger logger = mock(Logger.class);
    LoggingCacheErrorHandler handler = new LoggingCacheErrorHandler(logger, false);
    handler.handleCacheEvictError(new RuntimeException(), new NoOpCache("NOOP"), "key");
    verify(logger).warn("Cache 'NOOP' failed to evict entry with key 'key'");
}
Also used : NoOpCache(cn.taketoday.cache.support.NoOpCache) Logger(cn.taketoday.logging.Logger) Test(org.junit.jupiter.api.Test)

Example 4 with NoOpCache

use of cn.taketoday.cache.support.NoOpCache in project today-framework by TAKETODAY.

the class LoggingCacheErrorHandlerTests method handleClearErrorLogsAppropriateMessage.

@Test
void handleClearErrorLogsAppropriateMessage() {
    Logger logger = mock(Logger.class);
    LoggingCacheErrorHandler handler = new LoggingCacheErrorHandler(logger, false);
    handler.handleCacheClearError(new RuntimeException(), new NoOpCache("NOOP"));
    verify(logger).warn("Cache 'NOOP' failed to clear entries");
}
Also used : NoOpCache(cn.taketoday.cache.support.NoOpCache) Logger(cn.taketoday.logging.Logger) Test(org.junit.jupiter.api.Test)

Example 5 with NoOpCache

use of cn.taketoday.cache.support.NoOpCache in project today-framework by TAKETODAY.

the class LoggingCacheErrorHandlerTests method handleCacheErrorWithStacktrace.

@Test
void handleCacheErrorWithStacktrace() {
    Logger logger = mock(Logger.class);
    LoggingCacheErrorHandler handler = new LoggingCacheErrorHandler(logger, true);
    RuntimeException exception = new RuntimeException();
    handler.handleCacheGetError(exception, new NoOpCache("NOOP"), "key");
    verify(logger).warn("Cache 'NOOP' failed to get entry with key 'key'", exception);
}
Also used : NoOpCache(cn.taketoday.cache.support.NoOpCache) Logger(cn.taketoday.logging.Logger) Test(org.junit.jupiter.api.Test)

Aggregations

NoOpCache (cn.taketoday.cache.support.NoOpCache)10 Logger (cn.taketoday.logging.Logger)10 Test (org.junit.jupiter.api.Test)10