Skip to content

Commit

Permalink
Merge branch '__rultor'
Browse files Browse the repository at this point in the history
  • Loading branch information
rultor committed Jun 2, 2017
2 parents 36c0111 + c25ab60 commit 3c02942
Show file tree
Hide file tree
Showing 2 changed files with 135 additions and 0 deletions.
71 changes: 71 additions & 0 deletions src/main/java/org/cactoos/text/ReplacedText.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
/**
* The MIT License (MIT)
*
* Copyright (c) 2017 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.text;

import java.io.IOException;
import org.cactoos.Text;

/**
* Replace the Text.
*
* @author Mehmet Yildirim ([email protected])
* @version $Id$
* @since 0.2
*/
public final class ReplacedText implements Text {

/**
* The text.
*/
private final Text origin;

/**
* The old char.
*/
private final String needle;

/**
* The new char.
*/
private final String replacement;

/**
* Ctor.
* @param text The text
* @param find The find one
* @param replace The replace one
*/
public ReplacedText(final Text text, final String find, final String
replace) {
this.origin = text;
this.needle = find;
this.replacement = replace;
}

@Override
public String asString() throws IOException {
return this.origin.asString().replace(this.needle, this.replacement);
}
}

64 changes: 64 additions & 0 deletions src/test/java/org/cactoos/text/ReplacedTextTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
/**
* The MIT License (MIT)
*
* Copyright (c) 2017 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.text;

import org.cactoos.TextHasString;
import org.hamcrest.MatcherAssert;
import org.junit.Test;

/**
* Test case for {@link ReplacedText}.
*
* @author Mehmet Yildirim ([email protected])
* @version $Id$
* @since 0.2
* @checkstyle JavadocMethodCheck (500 lines)
*/
public final class ReplacedTextTest {

@Test
public void replaceText() {
MatcherAssert.assertThat(
"Can't replace a text",
new ReplacedText(
new StringAsText("Hello!"),
"ello", "i"
),
new TextHasString("Hi!")
);
}

@Test
public void notReplaceTextWhenSubstringNotFound() {
final String text = "HelloAgain!";
MatcherAssert.assertThat(
"Replace a text abnormally",
new ReplacedText(
new StringAsText(text),
"xyz", "i"
),
new TextHasString(text)
);
}
}

0 comments on commit 3c02942

Please sign in to comment.