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 AE119200B8C for ; Tue, 23 Aug 2016 04:15:58 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id AB07D160AC4; Tue, 23 Aug 2016 02:15:58 +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 059D2160AB3 for ; Tue, 23 Aug 2016 04:15:57 +0200 (CEST) Received: (qmail 10483 invoked by uid 500); 23 Aug 2016 02:15:57 -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 10473 invoked by uid 99); 23 Aug 2016 02:15:57 -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:15:57 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id EB994E0551; Tue, 23 Aug 2016 02:15:56 +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:15:57 -0000 Message-Id: <561e7f9e60214de5a812c385bd60d1bb@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/5] groovy git commit: findbugs: impossible cast archived-at: Tue, 23 Aug 2016 02:15:58 -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/4f328a19 Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/4f328a19 Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/4f328a19 Branch: refs/heads/master Commit: 4f328a19ae8e827cbe3f11a0b97911ba6875716a Parents: bf398af Author: John Wagenleitner Authored: Sun Aug 21 15:25:41 2016 -0700 Committer: John Wagenleitner Committed: Mon Aug 22 19:11:09 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/4f328a19/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/4f328a19/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 + } +}