-
-
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.
check that logback-classic and logback-core are identical
Signed-off-by: Ceki Gulcu <[email protected]>
- Loading branch information
Showing
7 changed files
with
127 additions
and
48 deletions.
There are no files selected for viewing
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
58 changes: 58 additions & 0 deletions
58
logback-classic/src/test/java/ch/qos/logback/classic/blackbox/util/EnvUtilTest.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,58 @@ | ||
/* | ||
* 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.util; | ||
|
||
import ch.qos.logback.classic.util.ClassicEnvUtil; | ||
import ch.qos.logback.core.util.EnvUtil; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import static org.junit.jupiter.api.Assertions.*; | ||
|
||
public class EnvUtilTest { | ||
|
||
// Beware: ---------------------------------------- | ||
// Beware: needs to be updated upon version change | ||
// Beware: ---------------------------------------- | ||
static final String EXPECTED_VERSION = "1.5"; | ||
|
||
|
||
@BeforeEach | ||
public void setUp() throws Exception { | ||
|
||
} | ||
|
||
// this test runs fine if run from logback-classic but fails when | ||
// run from logback-core. This is due to the fact that package information | ||
// is added when creating the jar. | ||
@Test | ||
public void versionTest() { | ||
String versionStr = EnvUtil.logbackVersion(); | ||
assertNotNull(versionStr); | ||
assertTrue(versionStr.startsWith(EXPECTED_VERSION)); | ||
} | ||
|
||
@Test | ||
public void versionCompare() { | ||
String coreVersionStr = EnvUtil.logbackVersion(); | ||
String versionOfLogbackClassic = ClassicEnvUtil.getVersionOfLogbackClassic(); | ||
assertNotNull(coreVersionStr); | ||
assertNotNull(versionOfLogbackClassic); | ||
|
||
assertEquals(coreVersionStr, versionOfLogbackClassic); | ||
} | ||
|
||
|
||
} |
34 changes: 0 additions & 34 deletions
34
logback-classic/src/test/java/ch/qos/logback/classic/util/EnvUtilTest.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