-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix incompatibile change, Spring-Boot issue 885
Signed-off-by: Ceki Gulcu <[email protected]>
- Loading branch information
Showing
6 changed files
with
106 additions
and
55 deletions.
There are no files selected for viewing
69 changes: 69 additions & 0 deletions
69
logback-classic/src/test/java/ch/qos/logback/classic/pattern/LegacyPatternLayoutTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/* | ||
* Logback: the reliable, generic, fast and flexible logging framework. | ||
* Copyright (C) 1999-2024, QOS.ch. All rights reserved. | ||
* | ||
* This program and the accompanying materials are dual-licensed under | ||
* either the terms of the Eclipse Public License v1.0 as published by | ||
* the Eclipse Foundation | ||
* | ||
* or (per the licensee's choosing) | ||
* | ||
* under the terms of the GNU Lesser General Public License version 2.1 | ||
* as published by the Free Software Foundation. | ||
*/ | ||
|
||
package ch.qos.logback.classic.pattern; | ||
|
||
import ch.qos.logback.classic.Level; | ||
import ch.qos.logback.classic.LoggerContext; | ||
import ch.qos.logback.classic.PatternLayout; | ||
import ch.qos.logback.classic.spi.LoggingEvent; | ||
import ch.qos.logback.core.CoreConstants; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
import static org.junit.jupiter.api.Assertions.assertNull; | ||
|
||
public class LegacyPatternLayoutTest { | ||
|
||
LoggerContext context = new LoggerContext(); | ||
|
||
@Test public void subPattern() { | ||
SubPatternLayout layout = new SubPatternLayout(); | ||
layout.setPattern("%"+SubPatternLayout.DOOO); | ||
layout.setContext(context); | ||
layout.start(); | ||
LoggingEvent event = new LoggingEvent(); | ||
event.setTimeStamp(0); | ||
|
||
String result = layout.doLayout(event); | ||
assertEquals("1970-01-01 01:00:00,000", result); | ||
} | ||
|
||
@Test | ||
public void fromContext() { | ||
Map<String, String> registry = (Map<String, String>) this.context | ||
.getObject(CoreConstants.PATTERN_RULE_REGISTRY); | ||
// | ||
assertNull(registry); | ||
if(registry == null) { | ||
registry = new HashMap<String, String>(); | ||
this.context.putObject(CoreConstants.PATTERN_RULE_REGISTRY, registry); | ||
} | ||
|
||
registry.put("legacy", LevelConverter.class.getName()); | ||
|
||
PatternLayout patternLayout = new PatternLayout(); | ||
patternLayout.setPattern("%legacy"); | ||
patternLayout.setContext(context); | ||
patternLayout.start(); | ||
LoggingEvent event = new LoggingEvent(); | ||
event.setLevel(Level.WARN); | ||
String result = patternLayout.doLayout(event); | ||
assertEquals("WARN", result); | ||
} | ||
|
||
} |
38 changes: 0 additions & 38 deletions
38
logback-classic/src/test/java/ch/qos/logback/classic/pattern/SubPatternLayoutTest.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters