duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 1 | /* |
coffeys | ee4af83 | 2012-09-07 21:22:37 +0100 | [diff] [blame] | 2 | * Copyright (c) 2007, 2012, Oracle and/or its affiliates. All rights reserved. |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 4 | * |
| 5 | * This code is free software; you can redistribute it and/or modify it |
| 6 | * under the terms of the GNU General Public License version 2 only, as |
| 7 | * published by the Free Software Foundation. |
| 8 | * |
| 9 | * This code is distributed in the hope that it will be useful, but WITHOUT |
| 10 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | * version 2 for more details (a copy is included in the LICENSE file that |
| 13 | * accompanied this code). |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License version |
| 16 | * 2 along with this work; if not, write to the Free Software Foundation, |
| 17 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | * |
ohair | 2283b9d | 2010-05-25 15:58:33 -0700 | [diff] [blame] | 19 | * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| 20 | * or visit www.oracle.com if you need additional information or have any |
| 21 | * questions. |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 22 | */ |
| 23 | |
| 24 | import java.io.*; |
coffeys | ee4af83 | 2012-09-07 21:22:37 +0100 | [diff] [blame] | 25 | import java.text.*; |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 26 | import java.util.*; |
| 27 | import java.util.regex.*; |
| 28 | |
| 29 | public class PropertiesTest { |
alanb | 94d2ef6 | 2012-12-02 16:37:31 +0000 | [diff] [blame] | 30 | public static void main(String[] args) throws Exception { |
| 31 | if (args.length == 2 && args[0].equals("-d")) { |
| 32 | dump(args[1]); |
| 33 | } else if (args.length == 4 && args[0].equals("-c")) { |
| 34 | compare(args[1], args[2], args[3]); |
| 35 | } else { |
| 36 | System.err.println("Usage: java PropertiesTest -d <dumpfile>"); |
| 37 | System.err.println(" java PropertiesTest -c <beforedump> <afterdump> <propsfile>"); |
| 38 | System.exit(-1); |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 39 | } |
| 40 | } |
| 41 | |
| 42 | private static void dump(String outfile) { |
| 43 | File f = new File(outfile); |
| 44 | PrintWriter pw; |
| 45 | try { |
| 46 | f.createNewFile(); |
| 47 | pw = new PrintWriter(f); |
| 48 | } catch (Exception fnfe) { |
| 49 | throw new RuntimeException(fnfe); |
| 50 | } |
| 51 | for (char c1 = 'A'; c1 <= 'Z'; c1++) { |
| 52 | for (char c2 = 'A'; c2 <= 'Z'; c2++) { |
| 53 | String ctry = new StringBuilder().append(c1).append(c2).toString(); |
| 54 | try { |
| 55 | Currency c = Currency.getInstance(new Locale("", ctry)); |
| 56 | if (c != null) { |
| 57 | pw.printf(Locale.ROOT, "%s=%s,%03d,%1d\n", |
| 58 | ctry, |
| 59 | c.getCurrencyCode(), |
| 60 | c.getNumericCode(), |
| 61 | c.getDefaultFractionDigits()); |
| 62 | } |
| 63 | } catch (IllegalArgumentException iae) { |
| 64 | // invalid country code |
| 65 | continue; |
| 66 | } |
| 67 | } |
| 68 | } |
| 69 | pw.flush(); |
| 70 | pw.close(); |
| 71 | } |
| 72 | |
alanb | 94d2ef6 | 2012-12-02 16:37:31 +0000 | [diff] [blame] | 73 | private static void compare(String beforeFile, String afterFile, String propsFile) |
| 74 | throws IOException |
| 75 | { |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 76 | // load file contents |
| 77 | Properties before = new Properties(); |
alanb | 94d2ef6 | 2012-12-02 16:37:31 +0000 | [diff] [blame] | 78 | try (Reader reader = new FileReader(beforeFile)) { |
| 79 | before.load(reader); |
| 80 | } |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 81 | Properties after = new Properties(); |
alanb | 94d2ef6 | 2012-12-02 16:37:31 +0000 | [diff] [blame] | 82 | try (Reader reader = new FileReader(afterFile)) { |
| 83 | after.load(reader); |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | // remove the same contents from the 'after' properties |
| 87 | Set<String> keys = before.stringPropertyNames(); |
| 88 | for (String key: keys) { |
| 89 | String beforeVal = before.getProperty(key); |
| 90 | String afterVal = after.getProperty(key); |
| 91 | System.out.printf("Removing country: %s. before: %s, after: %s", key, beforeVal, afterVal); |
| 92 | if (beforeVal.equals(afterVal)) { |
| 93 | after.remove(key); |
| 94 | System.out.printf(" --- removed\n"); |
| 95 | } else { |
| 96 | System.out.printf(" --- NOT removed\n"); |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | // now look at the currency.properties |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 101 | Properties p = new Properties(); |
alanb | 94d2ef6 | 2012-12-02 16:37:31 +0000 | [diff] [blame] | 102 | try (Reader reader = new FileReader(propsFile)) { |
| 103 | p.load(reader); |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | // test each replacements |
| 107 | keys = p.stringPropertyNames(); |
| 108 | Pattern propertiesPattern = |
coffeys | ee4af83 | 2012-09-07 21:22:37 +0100 | [diff] [blame] | 109 | Pattern.compile("([A-Z]{3})\\s*,\\s*(\\d{3})\\s*,\\s*" + |
| 110 | "([0-3])\\s*,?\\s*(\\d{4}-\\d{2}-\\d{2}T\\d{2}:" + |
| 111 | "\\d{2}:\\d{2})?"); |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 112 | for (String key: keys) { |
| 113 | String val = p.getProperty(key); |
coffeys | ee4af83 | 2012-09-07 21:22:37 +0100 | [diff] [blame] | 114 | try { |
| 115 | if (countOccurrences(val, ',') == 3 && !isPastCutoverDate(val)) { |
| 116 | System.out.println("Skipping since date is in future"); |
| 117 | continue; // skip since date in future (no effect) |
| 118 | } |
| 119 | } catch (ParseException pe) { |
| 120 | // swallow - currency class should not honour this value |
| 121 | continue; |
| 122 | } |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 123 | String afterVal = after.getProperty(key); |
| 124 | System.out.printf("Testing key: %s, val: %s... ", key, val); |
coffeys | ee4af83 | 2012-09-07 21:22:37 +0100 | [diff] [blame] | 125 | System.out.println("AfterVal is : " + afterVal); |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 126 | |
| 127 | Matcher m = propertiesPattern.matcher(val.toUpperCase(Locale.ROOT)); |
| 128 | if (!m.find()) { |
| 129 | // format is not recognized. |
| 130 | System.out.printf("Format is not recognized.\n"); |
| 131 | if (afterVal != null) { |
| 132 | throw new RuntimeException("Currency data replacement for "+key+" failed: It was incorrectly altered to "+afterVal); |
| 133 | } |
| 134 | |
| 135 | // ignore this |
| 136 | continue; |
| 137 | } |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 138 | Matcher mAfter = propertiesPattern.matcher(afterVal); |
| 139 | mAfter.find(); |
| 140 | |
| 141 | String code = m.group(1); |
| 142 | String codeAfter = mAfter.group(1); |
| 143 | int numeric = Integer.parseInt(m.group(2)); |
| 144 | int numericAfter = Integer.parseInt(mAfter.group(2)); |
| 145 | int fraction = Integer.parseInt(m.group(3)); |
| 146 | int fractionAfter = Integer.parseInt(mAfter.group(3)); |
| 147 | if (code.equals(codeAfter) && |
| 148 | (numeric == numericAfter)&& |
| 149 | (fraction == fractionAfter)) { |
| 150 | after.remove(key); |
| 151 | } else { |
| 152 | throw new RuntimeException("Currency data replacement for "+key+" failed: actual: (alphacode: "+codeAfter+", numcode: "+numericAfter+", fraction: "+fractionAfter+"), expected: (alphacode: "+code+", numcode: "+numeric+", fraction: "+fraction+")"); |
| 153 | } |
| 154 | System.out.printf("Success!\n"); |
| 155 | } |
| 156 | if (!after.isEmpty()) { |
| 157 | StringBuilder sb = new StringBuilder() |
| 158 | .append("Currency data replacement failed. Unnecessary modification was(were) made for the following currencies:\n"); |
| 159 | keys = after.stringPropertyNames(); |
| 160 | for (String key : keys) { |
| 161 | sb.append(" country: ") |
| 162 | .append(key) |
| 163 | .append(" currency: ") |
| 164 | .append(after.getProperty(key)) |
| 165 | .append("\n"); |
| 166 | } |
| 167 | throw new RuntimeException(sb.toString()); |
| 168 | } |
| 169 | } |
coffeys | ee4af83 | 2012-09-07 21:22:37 +0100 | [diff] [blame] | 170 | |
| 171 | private static boolean isPastCutoverDate(String s) |
| 172 | throws IndexOutOfBoundsException, NullPointerException, ParseException { |
| 173 | String dateString = s.substring(s.lastIndexOf(',')+1, s.length()).trim(); |
| 174 | SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss", Locale.ROOT); |
| 175 | format.setTimeZone(TimeZone.getTimeZone("GMT")); |
| 176 | format.setLenient(false); |
| 177 | |
| 178 | long time = format.parse(dateString).getTime(); |
| 179 | if (System.currentTimeMillis() - time >= 0L) { |
| 180 | return true; |
| 181 | } else { |
| 182 | return false; |
| 183 | } |
| 184 | } |
| 185 | |
| 186 | private static int countOccurrences(String value, char match) { |
| 187 | int count = 0; |
| 188 | for (char c : value.toCharArray()) { |
| 189 | if (c == match) { |
| 190 | ++count; |
| 191 | } |
| 192 | } |
| 193 | return count; |
| 194 | } |
duke | 6e45e10 | 2007-12-01 00:00:00 +0000 | [diff] [blame] | 195 | } |