Skip to content

Commit

Permalink
Merge branch '__rultor'
Browse files Browse the repository at this point in the history
  • Loading branch information
rultor committed Apr 19, 2019
2 parents ee4584f + e062780 commit 00e5f23
Show file tree
Hide file tree
Showing 2 changed files with 114 additions and 8 deletions.
12 changes: 4 additions & 8 deletions src/main/java/org/cactoos/func/IoCheckedBiProc.java
Expand Up @@ -35,11 +35,6 @@
* @param <X> Type of input
* @param <Y> Type of input
* @since 0.22
* @todo #886:30min Avoid usage of null value in exec(first, second),
* which is against our design principles.
* This look like a duplication of functionality from IoCheckedBiFunc.
* Perhaphs, we do not need this class?
* Please take a look on #918 for more details.
*/
public final class IoCheckedBiProc<X, Y> implements BiProc<X, Y> {

Expand All @@ -58,9 +53,10 @@ public IoCheckedBiProc(final BiProc<X, Y> prc) {

@Override
public void exec(final X first, final Y second) throws IOException {
new IoCheckedBiFunc<>(
new BiFuncOf<>(this.proc, null)
).apply(first, second);
new CheckedBiProc<>(
this.proc,
IOException::new
).exec(first, second);
}

}
110 changes: 110 additions & 0 deletions src/test/java/org/cactoos/func/IoCheckedBiProcTest.java
@@ -0,0 +1,110 @@
/*
* The MIT License (MIT)
*
* Copyright (c) 2017-2018 Yegor Bugayenko
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package org.cactoos.func;

import java.io.IOException;
import java.util.concurrent.atomic.AtomicInteger;
import org.hamcrest.core.IsEqual;
import org.junit.Test;
import org.llorllale.cactoos.matchers.Assertion;
import org.llorllale.cactoos.matchers.Throws;

/**
* Test case for {@link IoCheckedBiFunc}.
* @since 1.0
* @checkstyle JavadocMethodCheck (500 lines)
*/
public final class IoCheckedBiProcTest {
@Test
public void executesWrappedProc() throws Exception {
final AtomicInteger counter = new AtomicInteger();
new IoCheckedBiProc<>(
(first, second) -> counter.incrementAndGet()
).exec(true, true);
new Assertion<>(
"Must execute wrapped proc",
counter::get,
new IsEqual<>(1)
).affirm();
}

@Test
public void wrapsExceptions() {
final IoCheckedBiProc<Object, Object> proc = new IoCheckedBiProc<>(
(first, second) -> {
throw new Exception();
}
);
new Assertion<>(
"Must wrap with IOException",
() -> {
proc.exec(true, true);
return true;
},
new Throws<>(
"java.lang.Exception",
IOException.class
)
).affirm();
}

@Test
public void rethrowsIoException() {
final IOException exception = new IOException("intended");
try {
new IoCheckedBiProc<>(
(fst, scd) -> {
throw exception;
}
).exec(1, 2);
} catch (final IOException ex) {
new Assertion<>(
"Must re-throw IOException",
() -> ex,
new IsEqual<>(exception)
).affirm();
}
}

@Test
public void runtimeExceptionGoesOut() {
final String msg = "intended to fail here";
final IoCheckedBiProc<Object, Object> proc = new IoCheckedBiProc<>(
(fst, scd) -> {
throw new IllegalStateException(msg);
}
);
new Assertion<>(
"Must re-throw runtime exceptions",
() -> {
proc.exec(true, true);
return true;
},
new Throws<>(
msg,
IllegalStateException.class
)
).affirm();
}
}

1 comment on commit 00e5f23

@0pdd
Copy link
Collaborator

@0pdd 0pdd commented on 00e5f23 Apr 19, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 886-065814f2 disappeared from src/main/java/org/cactoos/func/IoCheckedBiProc.java, that's why I closed #1062. Please, remember that the puzzle was not necessarily removed in this particular commit. Maybe it happened earlier, but we discovered this fact only now.

Please sign in to comment.