Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id BADB4200BBC for ; Sun, 13 Nov 2016 21:34:07 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id B98D3160B12; Sun, 13 Nov 2016 20:34:07 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 0D326160AF8 for ; Sun, 13 Nov 2016 21:34:06 +0100 (CET) Received: (qmail 76594 invoked by uid 500); 13 Nov 2016 20:34:06 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 76305 invoked by uid 99); 13 Nov 2016 20:34:06 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 13 Nov 2016 20:34:06 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id A76D8E38AC; Sun, 13 Nov 2016 20:34:04 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: chtompki@apache.org To: commits@commons.apache.org Date: Sun, 13 Nov 2016 20:34:04 -0000 Message-Id: <7fbfda01964949388c75c0379b1f30c9@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [01/14] [text] TEXT-23: adding unit test for AggregateTranslator archived-at: Sun, 13 Nov 2016 20:34:07 -0000 Repository: commons-text Updated Branches: refs/heads/master ad7ee397a -> a408a7cfa TEXT-23: adding unit test for AggregateTranslator Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/2f55bd15 Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/2f55bd15 Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/2f55bd15 Branch: refs/heads/master Commit: 2f55bd1520d73c3c46d48b9066107d37f38926c4 Parents: e330798 Author: Rob Tompkins Authored: Wed Nov 9 08:31:45 2016 -0500 Committer: Rob Tompkins Committed: Wed Nov 9 08:31:45 2016 -0500 ---------------------------------------------------------------------- .../text/translate/AggregateTranslatorTest.java | 56 ++++++++++++++++++++ 1 file changed, 56 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-text/blob/2f55bd15/src/test/java/org/apache/commons/text/translate/AggregateTranslatorTest.java ---------------------------------------------------------------------- diff --git a/src/test/java/org/apache/commons/text/translate/AggregateTranslatorTest.java b/src/test/java/org/apache/commons/text/translate/AggregateTranslatorTest.java new file mode 100644 index 0000000..799c3e9 --- /dev/null +++ b/src/test/java/org/apache/commons/text/translate/AggregateTranslatorTest.java @@ -0,0 +1,56 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.commons.text.translate; + +import org.junit.Test; + +import java.io.IOException; +import java.io.StringWriter; +import java.lang.reflect.Field; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNull; + +/** + * Unit tests for {@link org.apache.commons.text.translate.AggregateTranslator}. + */ +public class AggregateTranslatorTest { + + @Test + public void testNullConstructor() throws NoSuchFieldException, IllegalAccessException { + org.apache.commons.text.translate.AggregateTranslator subject = new org.apache.commons.text.translate.AggregateTranslator(null); + Field field = AggregateTranslator.class.getDeclaredField("translators"); + field.setAccessible(Boolean.TRUE); + assertNull(field.get(subject)); + } + + @Test + public void testNonNull() throws IOException{ + CharSequenceTranslator translator1 = new org.apache.commons.text.translate.LookupTranslator(new CharSequence[][] { { "one", "two" } }); + CharSequenceTranslator translator2 = new org.apache.commons.text.translate.LookupTranslator(new CharSequence[][] { { "three", "four" } }); + org.apache.commons.text.translate.AggregateTranslator subject = new org.apache.commons.text.translate.AggregateTranslator(translator1, translator2); + final StringWriter out1 = new StringWriter(); + final int result1 = subject.translate(new StringBuffer("one"), 0, out1); + assertEquals("Incorrect codepoint consumption", 3, result1); + assertEquals("Incorrect value", "two", out1.toString()); + final StringWriter out2 = new StringWriter(); + final int result2 = subject.translate(new StringBuffer("three"), 0, out2); + assertEquals("Incorrect codepoint consumption", 5, result2); + assertEquals("Incorrect value", "four", out2.toString()); + } + +}