-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
175 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/* | ||
* Copyright (c) 2012-2022, jcabi.com | ||
* All rights reserved. | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions | ||
* are met: 1) Redistributions of source code must retain the above | ||
* copyright notice, this list of conditions and the following | ||
* disclaimer. 2) Redistributions in binary form must reproduce the above | ||
* copyright notice, this list of conditions and the following | ||
* disclaimer in the documentation and/or other materials provided | ||
* with the distribution. 3) Neither the name of the jcabi.com nor | ||
* the names of its contributors may be used to endorse or promote | ||
* products derived from this software without specific prior written | ||
* permission. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT | ||
* NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND | ||
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL | ||
* THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, | ||
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | ||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | ||
* OF THE POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
package com.jcabi.log; | ||
|
||
import java.io.StringWriter; | ||
import java.nio.file.Path; | ||
import java.nio.file.Paths; | ||
import java.util.Formattable; | ||
import java.util.Formatter; | ||
|
||
/** | ||
* Decorates File. | ||
* | ||
* @since 0.1 | ||
*/ | ||
final class FileDecor implements Formattable { | ||
|
||
/** | ||
* The path. | ||
*/ | ||
private final transient Object path; | ||
|
||
/** | ||
* Public ctor. | ||
* @param file The file | ||
*/ | ||
FileDecor(final Object file) { | ||
this.path = file; | ||
} | ||
|
||
// @checkstyle ParameterNumber (4 lines) | ||
@Override | ||
public void formatTo(final Formatter formatter, final int flags, | ||
final int width, final int precision) { | ||
final StringWriter writer = new StringWriter(); | ||
if (this.path == null) { | ||
writer.write("NULL"); | ||
} else { | ||
final Path self = Paths.get(this.path.toString()).toAbsolutePath(); | ||
final Path root = Paths.get("").toAbsolutePath(); | ||
String rel = root.relativize(self).toString(); | ||
if (rel.startsWith("..")) { | ||
rel = self.toString(); | ||
} | ||
writer.write(rel); | ||
} | ||
formatter.format("%s", writer); | ||
} | ||
|
||
} |
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,96 @@ | ||
/* | ||
* Copyright (c) 2012-2022, jcabi.com | ||
* All rights reserved. | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions | ||
* are met: 1) Redistributions of source code must retain the above | ||
* copyright notice, this list of conditions and the following | ||
* disclaimer. 2) Redistributions in binary form must reproduce the above | ||
* copyright notice, this list of conditions and the following | ||
* disclaimer in the documentation and/or other materials provided | ||
* with the distribution. 3) Neither the name of the jcabi.com nor | ||
* the names of its contributors may be used to endorse or promote | ||
* products derived from this software without specific prior written | ||
* permission. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT | ||
* NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND | ||
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL | ||
* THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, | ||
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | ||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | ||
* OF THE POSSIBILITY OF SUCH DAMAGE. | ||
*/ | ||
package com.jcabi.log; | ||
|
||
import java.io.File; | ||
import java.nio.file.Paths; | ||
import java.util.Arrays; | ||
import java.util.Collection; | ||
import java.util.Locale; | ||
import org.hamcrest.MatcherAssert; | ||
import org.hamcrest.Matchers; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.params.ParameterizedTest; | ||
import org.junit.jupiter.params.provider.MethodSource; | ||
|
||
/** | ||
* Test case for {@link FileDecor}. | ||
* | ||
* @since 0.1 | ||
* @checkstyle ParameterNumberCheck (500 lines) | ||
*/ | ||
public final class FileDecorTest { | ||
|
||
@Test | ||
public void simplyWorks() { | ||
MatcherAssert.assertThat( | ||
new Printed(new FileDecor("/tmp/test-me.txt"), 0, 0, 0).toString(), | ||
Matchers.endsWith("test-me.txt") | ||
); | ||
} | ||
|
||
@ParameterizedTest | ||
@MethodSource("params") | ||
public void testPrintsRight(final Object path, final String text, | ||
final int flags, final int width, final int precision) { | ||
Locale.setDefault(Locale.US); | ||
MatcherAssert.assertThat( | ||
new Printed(new FileDecor(path), flags, width, precision), | ||
Matchers.hasToString(text) | ||
); | ||
} | ||
|
||
@ParameterizedTest | ||
@MethodSource("params") | ||
public void testLogsRight(final Object path, final String text, | ||
final int flags, final int width, final int precision) { | ||
Locale.setDefault(Locale.US); | ||
MatcherAssert.assertThat( | ||
new Logged(new FileDecor(path), flags, width, precision), | ||
Matchers.hasToString(text) | ||
); | ||
} | ||
|
||
/** | ||
* Params for this parametrized test. | ||
* @return Array of arrays of params for ctor | ||
*/ | ||
@SuppressWarnings("PMD.UnusedPrivateMethod") | ||
private static Collection<Object[]> params() { | ||
return Arrays.asList( | ||
new Object[][] { | ||
{null, "NULL", 0, 0, 0}, | ||
{"foo.txt", "foo.txt", 0, 0, 0}, | ||
{new File("/tmp/x.txt"), "/tmp/x.txt", 0, 0, 0}, | ||
{Paths.get("/a/b/c.txt"), "/a/b/c.txt", 0, 0, 0}, | ||
} | ||
); | ||
} | ||
} |