rt/emul/compacttest/src/test/java/org/apidesign/bck2brwsr/tck/ReflectionClassValueTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 17 Jan 2017 07:04:06 +0100
changeset 1985 cd1cc103a03c
parent 1982 cee8ecc45816
permissions -rw-r--r--
Implementation of ClassValue for bck2brwsr
     1 /**
     2  * Back 2 Browser Bytecode Translator
     3  * Copyright (C) 2012-2015 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, version 2 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. Look for COPYING file in the top folder.
    16  * If not, see http://opensource.org/licenses/GPL-2.0.
    17  */
    18 package org.apidesign.bck2brwsr.tck;
    19 
    20 import java.io.Serializable;
    21 import java.lang.ClassValue;
    22 import org.apidesign.bck2brwsr.vmtest.Compare;
    23 import org.apidesign.bck2brwsr.vmtest.VMTest;
    24 import org.testng.annotations.Factory;
    25 
    26 /**
    27  *
    28  * @author Jaroslav Tulach <jtulach@netbeans.org>
    29  */
    30 public class ReflectionClassValueTest {
    31     private static final class StringValue extends ClassValue<String> {
    32         private final boolean upper;
    33 
    34         public StringValue(boolean upper) {
    35             this.upper = upper;
    36         }
    37 
    38         @Override
    39         protected String computeValue(Class<?> type) {
    40             final String str = new String(type.toString());
    41             return upper ? str.toUpperCase() : str.toLowerCase();
    42         }
    43     }
    44     private static final StringValue UPPER = new StringValue(true);
    45     private static final StringValue LOWER = new StringValue(false);
    46 
    47     @Compare public String upperRunnable() {
    48         return UPPER.get(Runnable.class);
    49     }
    50 
    51     @Compare public String lowerRunnable() {
    52         return LOWER.get(Runnable.class);
    53     }
    54     
    55     @Compare public boolean valueIsCached() {
    56         String one = LOWER.get(Runnable.class);
    57         String two = LOWER.get(Runnable.class);
    58         return one == two;
    59     }
    60 
    61     @Compare public String upperObject() {
    62         return UPPER.get(Object.class);
    63     }
    64 
    65     @Compare public String lowerObject() {
    66         return LOWER.get(Object.class);
    67     }
    68 
    69     @Compare public String upperLowerString() {
    70         return UPPER.get(String.class) + LOWER.get(String.class);
    71     }
    72 
    73     @Compare public String lowerUpperSeq() {
    74         return LOWER.get(CharSequence.class) + UPPER.get(CharSequence.class);
    75     }
    76 
    77     private static final class CountingNull extends ClassValue<Object> {
    78         int cnt;
    79 
    80         @Override
    81         protected Object computeValue(Class<?> type) {
    82             cnt++;
    83             return null;
    84         }
    85     }
    86 
    87     @Compare public int getNullThreeTimes() {
    88         CountingNull counter = new CountingNull();
    89         Object o1 = counter.get(Serializable.class);
    90         Object o2 = counter.get(Serializable.class);
    91         Object o3 = counter.get(Serializable.class);
    92         assert o1 == null;
    93         assert o2 == null;
    94         assert o3 == null;
    95         return counter.cnt;
    96     }
    97 
    98     private static final class NewObj extends ClassValue<Integer> {
    99         int cnt;
   100 
   101         @Override
   102         protected Integer computeValue(Class<?> type) {
   103             cnt++;
   104             return new Integer(cnt);
   105         }
   106     }
   107 
   108     @Compare public boolean valueCanBeCleared() {
   109         NewObj cache = new NewObj();
   110         Integer one = cache.get(Runnable.class);
   111         Integer two = cache.get(Runnable.class);
   112         assert one == two;
   113         cache.remove(Runnable.class);
   114         Integer three = cache.get(Runnable.class);
   115         return one != three;
   116     }
   117 
   118     @Factory
   119     public static Object[] create() {
   120         return VMTest.create(ReflectionClassValueTest.class);
   121     }
   122 }