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 7D1AF200B7E for ; Tue, 23 Aug 2016 04:56:15 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 7C2C6160AB3; Tue, 23 Aug 2016 02:56:15 +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 BB782160AC4 for ; Tue, 23 Aug 2016 04:56:14 +0200 (CEST) Received: (qmail 72470 invoked by uid 500); 23 Aug 2016 02:56:14 -0000 Mailing-List: contact commits-help@groovy.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@groovy.apache.org Delivered-To: mailing list commits@groovy.apache.org Received: (qmail 72451 invoked by uid 99); 23 Aug 2016 02:56:13 -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; Tue, 23 Aug 2016 02:56:13 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 9FF99E1772; Tue, 23 Aug 2016 02:56:13 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jwagenleitner@apache.org To: commits@groovy.apache.org Date: Tue, 23 Aug 2016 02:56:16 -0000 Message-Id: <3d89a1077a2b4c0d818563ccb526cab5@git.apache.org> In-Reply-To: <1ec108da4a994008a1c25d395b5bd909@git.apache.org> References: <1ec108da4a994008a1c25d395b5bd909@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [4/5] groovy git commit: findbugs: impossible cast archived-at: Tue, 23 Aug 2016 02:56:15 -0000 findbugs: impossible cast removed cast that would always fail and added some basic tests. Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/25515104 Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/25515104 Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/25515104 Branch: refs/heads/GROOVY_2_4_X Commit: 25515104e949b99a2aa3809a33f1af844841cebb Parents: 2a8153b Author: John Wagenleitner Authored: Sun Aug 21 15:25:41 2016 -0700 Committer: John Wagenleitner Committed: Mon Aug 22 19:17:21 2016 -0700 ---------------------------------------------------------------------- .../runtime/typehandling/ShortTypeHandling.java | 1 - .../typehandling/ShortTypeHandlingTest.groovy | 64 ++++++++++++++++++++ 2 files changed, 64 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/25515104/src/main/org/codehaus/groovy/runtime/typehandling/ShortTypeHandling.java ---------------------------------------------------------------------- diff --git a/src/main/org/codehaus/groovy/runtime/typehandling/ShortTypeHandling.java b/src/main/org/codehaus/groovy/runtime/typehandling/ShortTypeHandling.java index 44c0276..f45ca0c 100644 --- a/src/main/org/codehaus/groovy/runtime/typehandling/ShortTypeHandling.java +++ b/src/main/org/codehaus/groovy/runtime/typehandling/ShortTypeHandling.java @@ -41,7 +41,6 @@ public class ShortTypeHandling { public static String castToString(Object object) { if (object==null) return null; - if (object instanceof Class) return (String) object; return object.toString(); } http://git-wip-us.apache.org/repos/asf/groovy/blob/25515104/src/test/org/codehaus/groovy/runtime/typehandling/ShortTypeHandlingTest.groovy ---------------------------------------------------------------------- diff --git a/src/test/org/codehaus/groovy/runtime/typehandling/ShortTypeHandlingTest.groovy b/src/test/org/codehaus/groovy/runtime/typehandling/ShortTypeHandlingTest.groovy new file mode 100644 index 0000000..6eba4fa --- /dev/null +++ b/src/test/org/codehaus/groovy/runtime/typehandling/ShortTypeHandlingTest.groovy @@ -0,0 +1,64 @@ +/* + * 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.codehaus.groovy.runtime.typehandling + +import static org.codehaus.groovy.runtime.typehandling.ShortTypeHandling.castToClass +import static org.codehaus.groovy.runtime.typehandling.ShortTypeHandling.castToString +import static org.codehaus.groovy.runtime.typehandling.ShortTypeHandling.castToChar +import static org.codehaus.groovy.runtime.typehandling.ShortTypeHandling.castToEnum + +class ShortTypeHandlingTest extends GroovyTestCase { + + void testCastToClass() { + assert castToClass(null) == null + assert castToClass(Integer.class) == Integer.class + assert castToClass('java.lang.String') == String.class + shouldFail(GroovyCastException) { + castToClass(Collections.emptyList()) + } + } + + void testCastToString() { + assert castToString(null) == null + assert castToString(String.class) == 'class java.lang.String' + assert castToString(List.class) == 'interface java.util.List' + } + + void testCastToCharacter() { + assert castToChar(null) == null + char c = (char)'c' + assert castToChar((Object)c) == c + assert castToChar(Integer.valueOf(99)) == c + assert castToChar("${c}") == c + assert castToChar('c') == c + shouldFail(GroovyCastException) { + castToChar(new Date()) + } + } + + void testCastToEnum() { + assert castToEnum(null, TestStages) == null + assert castToEnum((Object)TestStages.AFTER_CLASS, TestStages) == TestStages.AFTER_CLASS + assert castToEnum("BEFORE_TEST", TestStages) == TestStages.BEFORE_TEST + } + + enum TestStages { + BEFORE_CLASS, BEFORE_TEST, TEST, AFTER_TEST, AFTER_CLASS + } +}