-
-
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.
move levelChangePropagator related tests to logback-classic-blackbox
Signed-off-by: Ceki Gulcu <ceki@qos.ch>
- Loading branch information
Showing
7 changed files
with
115 additions
and
54 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
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
66 changes: 66 additions & 0 deletions
66
...k-classic-blackbox/src/test/java/ch/qos/logback/classic/blackbox/joran/StatusChecker.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,66 @@ | ||
/* | ||
* 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.blackbox.joran; | ||
|
||
import ch.qos.logback.core.Context; | ||
import ch.qos.logback.core.status.StatusManager; | ||
import ch.qos.logback.core.status.StatusUtil; | ||
import org.junit.jupiter.api.Assertions; | ||
|
||
public class StatusChecker extends StatusUtil { | ||
|
||
public StatusChecker(StatusManager sm) { | ||
super(sm); | ||
} | ||
|
||
public StatusChecker(Context context) { | ||
super(context); | ||
} | ||
|
||
public void assertContainsMatch(int level, String regex) { | ||
Assertions.assertTrue(containsMatch(level, regex)); | ||
} | ||
|
||
public void assertNoMatch(String regex) { | ||
Assertions.assertFalse(containsMatch(regex)); | ||
} | ||
|
||
public void assertContainsMatch(String regex) { | ||
Assertions.assertTrue(containsMatch(regex)); | ||
} | ||
|
||
public void assertContainsException(Class<?> scanExceptionClass) { | ||
Assertions.assertTrue(containsException(scanExceptionClass)); | ||
} | ||
|
||
public void assertContainsException(Class<?> scanExceptionClass, String msg) { | ||
Assertions.assertTrue(containsException(scanExceptionClass, msg)); | ||
} | ||
|
||
public void assertIsErrorFree() { | ||
Assertions.assertTrue(isErrorFree(0)); | ||
} | ||
|
||
public void assertIsErrorFree(long treshhold) { | ||
Assertions.assertTrue(isErrorFree(treshhold)); | ||
} | ||
|
||
public void assertIsWarningOrErrorFree() { | ||
Assertions.assertTrue(isWarningOrErrorFree(0)); | ||
} | ||
|
||
public void assertErrorCount(int i) { | ||
} | ||
} |
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