1 /*
   2  * Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved.
   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  *
  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.
  22  */
  23 
  24 /* Type-specific source code for unit test
  25  *
  26  * Regenerate the BasicX classes via genBasic.sh whenever this file changes.
  27  * We check in the generated source files so that the test tree can be used
  28  * independently of the rest of the source tree.
  29  */
  30 
  31 #warn This file is preprocessed before being compiled
  32 
  33 import java.io.*;
  34 import java.math.BigDecimal;
  35 import java.math.BigInteger;
  36 import java.text.DateFormatSymbols;
  37 import java.util.*;
  38 #if[double]
  39 import sun.misc.DoubleConsts;
  40 #end[double]
  41 
  42 import static java.util.Calendar.*;
  43 #if[datetime]
  44 import static java.util.SimpleTimeZone.*;
  45 import java.util.regex.Pattern;
  46 #end[datetime]
  47 
  48 public class Basic$Type$ extends Basic {
  49 
  50     private static void test(String fs, String exp, Object ... args) {
  51         Formatter f = new Formatter(new StringBuilder(), Locale.US);
  52         f.format(fs, args);
  53         ck(fs, exp, f.toString());
  54     }
  55 
  56     private static void test(Locale l, String fs, String exp, Object ... args)
  57     {
  58         Formatter f = new Formatter(new StringBuilder(), l);
  59         f.format(fs, args);
  60         ck(fs, exp, f.toString());
  61     }
  62 
  63     private static void test(String fs, Object ... args) {
  64         Formatter f = new Formatter(new StringBuilder(), Locale.US);
  65         f.format(fs, args);
  66         ck(fs, "fail", f.toString());
  67     }
  68 
  69     private static void test(String fs) {
  70         Formatter f = new Formatter(new StringBuilder(), Locale.US);
  71         f.format(fs, "fail");
  72         ck(fs, "fail", f.toString());
  73     }
  74 
  75     private static void testSysOut(String fs, String exp, Object ... args) {
  76         FileOutputStream fos = null;
  77         FileInputStream fis = null;
  78         try {
  79             PrintStream saveOut = System.out;
  80             fos = new FileOutputStream("testSysOut");
  81             System.setOut(new PrintStream(fos));
  82             System.out.format(Locale.US, fs, args);
  83             fos.close();
  84 
  85             fis = new FileInputStream("testSysOut");
  86             byte [] ba = new byte[exp.length()];
  87             int len = fis.read(ba);
  88             String got = new String(ba);
  89             if (len != ba.length)
  90                 fail(fs, exp, got);
  91             ck(fs, exp, got);
  92 
  93             System.setOut(saveOut);
  94         } catch (FileNotFoundException ex) {
  95             fail(fs, ex.getClass());
  96         } catch (IOException ex) {
  97             fail(fs, ex.getClass());
  98         } finally {
  99             try {
 100                 if (fos != null)
 101                     fos.close();
 102                 if (fis != null)
 103                     fis.close();
 104             } catch (IOException ex) {
 105                 fail(fs, ex.getClass());
 106             }
 107         }
 108     }
 109 
 110     private static void tryCatch(String fs, Class<?> ex) {
 111         boolean caught = false;
 112         try {
 113             test(fs);
 114         } catch (Throwable x) {
 115             if (ex.isAssignableFrom(x.getClass()))
 116                 caught = true;
 117         }
 118         if (!caught)
 119             fail(fs, ex);
 120         else
 121             pass();
 122     }
 123 
 124     private static void tryCatch(String fs, Class<?> ex, Object ... args) {
 125         boolean caught = false;
 126         try {
 127             test(fs, args);
 128         } catch (Throwable x) {
 129             if (ex.isAssignableFrom(x.getClass()))
 130                 caught = true;
 131         }
 132         if (!caught)
 133             fail(fs, ex);
 134         else
 135             pass();
 136     }
 137 
 138 #if[datetime]
 139     private static void testDateTime(String fs, String exp, Calendar c) {
 140         testDateTime(fs, exp, c, true);
 141     }
 142 
 143     private static void testDateTime(String fs, String exp, Calendar c, boolean upper) {
 144         //---------------------------------------------------------------------
 145         // Date/Time conversions applicable to Calendar, Date, and long.
 146         //---------------------------------------------------------------------
 147 
 148         // Calendar
 149         test(fs, exp, c);
 150         test((Locale)null, fs, exp, c);
 151         test(Locale.US, fs, exp, c);
 152 
 153         // Date/long do not have timezone information so they will always use
 154         // the default timezone.
 155         String nexp = (fs.equals("%tZ") || fs.equals("%TZ")
 156                        || fs.equals("%tc") || fs.equals("%Tc")
 157                        ? exp.replace("PST", "GMT-08:00")
 158                        : exp);
 159 
 160         // Date (implemented via conversion to Calendar)
 161         Date d = c.getTime();
 162         test(fs, nexp, d);
 163         test((Locale)null, fs, nexp, d);
 164         test(Locale.US, fs, nexp, d);
 165 
 166         // long (implemented via conversion to Calendar)
 167         long l = c.getTimeInMillis();
 168         test(fs, nexp, l);
 169         test((Locale)null, fs, nexp, l);
 170         test(Locale.US, fs, nexp, l);
 171 
 172         if (upper)
 173             // repeat all tests for upper case variant (%T)
 174             testDateTime(Pattern.compile("t").matcher(fs).replaceFirst("T"),
 175                          exp.toUpperCase(), c, false);
 176     }
 177 
 178     private static void testHours() {
 179         for (int i = 0; i < 24; i++) {
 180             // GregorianCalendar(int year, int month, int dayOfMonth,
 181             //    int hourOfDay, int minute, int second);
 182             Calendar c = new GregorianCalendar(1995, MAY, 23, i, 48, 34);
 183 
 184             //-----------------------------------------------------------------
 185             // DateTime.HOUR_OF_DAY - 'k' (0 - 23) -- like H
 186             //-----------------------------------------------------------------
 187             String exp = Integer.toString(i);
 188             testDateTime("%tk", exp, c);
 189 
 190             //-----------------------------------------------------------------
 191             // DateTime.HOUR - 'l' (1 - 12) -- like I
 192             //-----------------------------------------------------------------
 193             int v = i % 12;
 194             v = (v == 0 ? 12 : v);
 195             String exp2 = Integer.toString(v);
 196             testDateTime("%tl", exp2, c);
 197 
 198             //-----------------------------------------------------------------
 199             // DateTime.HOUR_OF_DAY_0 - 'H' (00 - 23) [zero padded]
 200             //-----------------------------------------------------------------
 201             if (exp.length() < 2) exp = "0" + exp;
 202             testDateTime("%tH", exp, c);
 203 
 204             //-----------------------------------------------------------------
 205             // DateTime.HOUR_0 - 'I' (01 - 12)
 206             //-----------------------------------------------------------------
 207             if (exp2.length() < 2) exp2 = "0" + exp2;
 208             testDateTime("%tI", exp2, c);
 209 
 210             //-----------------------------------------------------------------
 211             // DateTime.AM_PM - (am or pm)
 212             //-----------------------------------------------------------------
 213             testDateTime("%tp", (i <12 ? "am" : "pm"), c);
 214         }
 215     }
 216 #end[datetime]
 217 
 218 #if[dec]
 219 #if[prim]
 220     private static $type$ negate($type$ v) {
 221         return ($type$) -v;
 222     }
 223 #end[prim]
 224 #end[dec]
 225 #if[Byte]
 226     private static $type$ negate($type$ v) {
 227         return new $type$((byte) -v.byteValue());
 228     }
 229 #end[Byte]
 230 #if[Short]
 231     private static $type$ negate($type$ v) {
 232         return new $type$((short) -v.shortValue());
 233     }
 234 #end[Short]
 235 #if[Integer]
 236     private static $type$ negate($type$ v) {
 237         return new $type$(-v.intValue());
 238     }
 239 #end[Integer]
 240 #if[Long]
 241     private static $type$ negate($type$ v) {
 242         return new $type$(-v.longValue());
 243     }
 244 #end[Long]
 245 
 246 #if[BigDecimal]
 247     private static $type$ create(double v) {
 248         return new $type$(v);
 249     }
 250 
 251     private static $type$ negate($type$ v) {
 252         return v.negate();
 253     }
 254 
 255     private static $type$ mult($type$ v, double mul) {
 256         return v.multiply(new $type$(mul));
 257     }
 258 
 259     private static $type$ recip($type$ v) {
 260         return BigDecimal.ONE.divide(v);
 261     }
 262 #end[BigDecimal]
 263 #if[float]
 264     private static $type$ create(double v) {
 265         return ($type$) v;
 266     }
 267 
 268     private static $type$ negate(double v) {
 269         return ($type$) -v;
 270     }
 271 
 272     private static $type$ mult($type$ v, double mul) {
 273         return v * ($type$) mul;
 274     }
 275 
 276     private static $type$ recip($type$ v) {
 277         return 1.0f / v;
 278     }
 279 #end[float]
 280 #if[Float]
 281     private static $type$ create(double v) {
 282         return new $type$(v);
 283     }
 284 
 285     private static $type$ negate($type$ v) {
 286         return new $type$(-v.floatValue());
 287     }
 288 
 289     private static $type$ mult($type$ v, double mul) {
 290         return new $type$(v.floatValue() * (float) mul);
 291     }
 292 
 293     private static $type$ recip($type$ v) {
 294         return new $type$(1.0f / v.floatValue());
 295     }
 296 #end[Float]
 297 #if[double]
 298     private static $type$ create(double v) {
 299         return ($type$) v;
 300     }
 301 
 302 
 303     private static $type$ negate(double v) {
 304         return -v;
 305     }
 306 
 307     private static $type$ mult($type$ v, double mul) {
 308         return v * mul;
 309     }
 310 
 311     private static $type$ recip($type$ v) {
 312         return 1.0 / v;
 313     }
 314 #end[double]
 315 #if[Double]
 316     private static $type$ create(double v) {
 317         return new $type$(v);
 318     }
 319 
 320     private static $type$ negate($type$ v) {
 321         return new $type$(-v.doubleValue());
 322     }
 323 
 324     private static $type$ mult($type$ v, double mul) {
 325         return new $type$(v.doubleValue() * mul);
 326     }
 327 
 328     private static $type$ recip($type$ v) {
 329         return new $type$(1.0 / v.doubleValue());
 330     }
 331 #end[Double]
 332 
 333     public static void test() {
 334         TimeZone.setDefault(TimeZone.getTimeZone("GMT-0800"));
 335 
 336         // Any characters not explicitly defined as conversions, date/time
 337         // conversion suffixes, or flags are illegal and are reserved for
 338         // future extensions.  Use of such a character in a format string will
 339         // cause an UnknownFormatConversionException or
 340         // UnknownFormatFlagsException to be thrown.
 341         tryCatch("%q", UnknownFormatConversionException.class);
 342         tryCatch("%t&", UnknownFormatConversionException.class);
 343         tryCatch("%&d", UnknownFormatConversionException.class);
 344         tryCatch("%^b", UnknownFormatConversionException.class);
 345 
 346         //---------------------------------------------------------------------
 347         // Formatter.java class javadoc examples
 348         //---------------------------------------------------------------------
 349         test(Locale.FRANCE, "e = %+10.4f", "e =    +2,7183", Math.E);
 350         test("%4$2s %3$2s %2$2s %1$2s", " d  c  b  a", "a", "b", "c", "d");
 351         test("Amount gained or lost since last statement: $ %,(.2f",
 352              "Amount gained or lost since last statement: $ (6,217.58)",
 353              (new BigDecimal("-6217.58")));
 354         Calendar c = new GregorianCalendar(1969, JULY, 20, 16, 17, 0);
 355         testSysOut("Local time: %tT", "Local time: 16:17:00", c);
 356 
 357         test("Unable to open file '%1$s': %2$s",
 358              "Unable to open file 'food': No such file or directory",
 359              "food", "No such file or directory");
 360         Calendar duke = new GregorianCalendar(1995, MAY, 23, 19, 48, 34);
 361         duke.set(Calendar.MILLISECOND, 584);
 362         test("Duke's Birthday: %1$tB %1$te, %1$tY",
 363              "Duke's Birthday: May 23, 1995",
 364              duke);
 365         test("Duke's Birthday: %1$tB %1$te, %1$tY",
 366              "Duke's Birthday: May 23, 1995",
 367              duke.getTime());
 368         test("Duke's Birthday: %1$tB %1$te, %1$tY",
 369              "Duke's Birthday: May 23, 1995",
 370              duke.getTimeInMillis());
 371 
 372         test("%4$s %3$s %2$s %1$s %4$s %3$s %2$s %1$s",
 373              "d c b a d c b a", "a", "b", "c", "d");
 374         test("%s %s %<s %<s", "a b b b", "a", "b", "c", "d");
 375         test("%s %s %s %s", "a b c d", "a", "b", "c", "d");
 376         test("%2$s %s %<s %s", "b a a b", "a", "b", "c", "d");
 377 
 378         //---------------------------------------------------------------------
 379         // %b
 380         //
 381         // General conversion applicable to any argument.
 382         //---------------------------------------------------------------------
 383         test("%b", "true", true);
 384         test("%b", "false", false);
 385         test("%B", "TRUE", true);
 386         test("%B", "FALSE", false);
 387         test("%b", "true", Boolean.TRUE);
 388         test("%b", "false", Boolean.FALSE);
 389         test("%B", "TRUE", Boolean.TRUE);
 390         test("%B", "FALSE", Boolean.FALSE);
 391         test("%14b", "          true", true);
 392         test("%-14b", "true          ", true);
 393         test("%5.1b", "    f", false);
 394         test("%-5.1b", "f    ", false);
 395 
 396         test("%b", "true", "foo");
 397         test("%b", "false", (Object)null);
 398 
 399         // Boolean.java hardcodes the Strings for "true" and "false", so no
 400         // localization is possible.
 401         test(Locale.FRANCE, "%b", "true", true);
 402         test(Locale.FRANCE, "%b", "false", false);
 403 
 404         // If you pass in a single array to a varargs method, the compiler
 405         // uses it as the array of arguments rather than treating it as a
 406         // single array-type argument.
 407         test("%b", "false", (Object[])new String[2]);
 408         test("%b", "true", new String[2], new String[2]);
 409 
 410         int [] ia = { 1, 2, 3 };
 411         test("%b", "true", ia);
 412 
 413         //---------------------------------------------------------------------
 414         // %b - errors
 415         //---------------------------------------------------------------------
 416         tryCatch("%#b", FormatFlagsConversionMismatchException.class);
 417         tryCatch("%-b", MissingFormatWidthException.class);
 418         // correct or side-effect of implementation?
 419         tryCatch("%.b", UnknownFormatConversionException.class);
 420         tryCatch("%,b", FormatFlagsConversionMismatchException.class);
 421 
 422         //---------------------------------------------------------------------
 423         // %c
 424         //
 425         // General conversion applicable to any argument.
 426         //---------------------------------------------------------------------
 427         test("%c", "i", 'i');
 428         test("%C", "I", 'i');
 429         test("%4c",  "   i", 'i');
 430         test("%-4c", "i   ", 'i');
 431         test("%4C",  "   I", 'i');
 432         test("%-4C", "I   ", 'i');
 433         test("%c", "i", new Character('i'));
 434         test("%c", "H", (byte) 72);
 435         test("%c", "i", (short) 105);
 436         test("%c", "!", (int) 33);
 437         test("%c", "\u007F", Byte.MAX_VALUE);
 438         test("%c", new String(Character.toChars(Short.MAX_VALUE)),
 439              Short.MAX_VALUE);
 440         test("%c", "null", (Object) null);
 441 
 442         //---------------------------------------------------------------------
 443         // %c - errors
 444         //---------------------------------------------------------------------
 445         tryCatch("%c", IllegalFormatConversionException.class,
 446                  Boolean.TRUE);
 447         tryCatch("%c", IllegalFormatConversionException.class,
 448                  (float) 0.1);
 449         tryCatch("%c", IllegalFormatConversionException.class,
 450                  new Object());
 451         tryCatch("%c", IllegalFormatCodePointException.class,
 452                  Byte.MIN_VALUE);
 453         tryCatch("%c", IllegalFormatCodePointException.class,
 454                  Short.MIN_VALUE);
 455         tryCatch("%c", IllegalFormatCodePointException.class,
 456                  Integer.MIN_VALUE);
 457         tryCatch("%c", IllegalFormatCodePointException.class,
 458                  Integer.MAX_VALUE);
 459 
 460         tryCatch("%#c", FormatFlagsConversionMismatchException.class);
 461         tryCatch("%,c", FormatFlagsConversionMismatchException.class);
 462         tryCatch("%(c", FormatFlagsConversionMismatchException.class);
 463         tryCatch("%$c", UnknownFormatConversionException.class);
 464         tryCatch("%.2c", IllegalFormatPrecisionException.class);
 465 
 466         //---------------------------------------------------------------------
 467         // %s
 468         //
 469         // General conversion applicable to any argument.
 470         //---------------------------------------------------------------------
 471         test("%s", "Hello, Duke", "Hello, Duke");
 472         test("%S", "HELLO, DUKE", "Hello, Duke");
 473         test("%20S", "         HELLO, DUKE", "Hello, Duke");
 474         test("%20s", "         Hello, Duke", "Hello, Duke");
 475         test("%-20s", "Hello, Duke         ", "Hello, Duke");
 476         test("%-20.5s", "Hello               ", "Hello, Duke");
 477         test("%s", "null", (Object)null);
 478 
 479         StringBuffer sb = new StringBuffer("foo bar");
 480         test("%s", sb.toString(), sb);
 481         test("%S", sb.toString().toUpperCase(), sb);
 482 
 483         //---------------------------------------------------------------------
 484         // %s - errors
 485         //---------------------------------------------------------------------
 486         tryCatch("%-s", MissingFormatWidthException.class);
 487         tryCatch("%--s", DuplicateFormatFlagsException.class);
 488         tryCatch("%#s", FormatFlagsConversionMismatchException.class, 0);
 489         tryCatch("%#s", FormatFlagsConversionMismatchException.class, 0.5f);
 490         tryCatch("%#s", FormatFlagsConversionMismatchException.class, "hello");
 491         tryCatch("%#s", FormatFlagsConversionMismatchException.class, null);
 492 
 493         //---------------------------------------------------------------------
 494         // %h
 495         //
 496         // General conversion applicable to any argument.
 497         //---------------------------------------------------------------------
 498         test("%h", Integer.toHexString("Hello, Duke".hashCode()),
 499              "Hello, Duke");
 500         test("%10h", "  ddf63471", "Hello, Duke");
 501         test("%-10h", "ddf63471  ", "Hello, Duke");
 502         test("%-10H", "DDF63471  ", "Hello, Duke");
 503         test("%10h", "  402e0000", 15.0);
 504         test("%10H", "  402E0000", 15.0);
 505 
 506         //---------------------------------------------------------------------
 507         // %h - errors
 508         //---------------------------------------------------------------------
 509         tryCatch("%#h", FormatFlagsConversionMismatchException.class);
 510 
 511         //---------------------------------------------------------------------
 512         // flag/conversion errors
 513         //---------------------------------------------------------------------
 514         tryCatch("%F", UnknownFormatConversionException.class);
 515 
 516         tryCatch("%#g", FormatFlagsConversionMismatchException.class);
 517 
 518 #if[dec]
 519 
 520 #if[prim]
 521         $type$ minByte = Byte.MIN_VALUE;   // -128
 522 #else[prim]
 523         $type$ minByte = new $type$(Byte.MIN_VALUE);
 524 #end[prim]
 525 
 526         //---------------------------------------------------------------------
 527         // %d
 528         //
 529         // Numeric conversion applicable to byte, short, int, long, and
 530         // BigInteger.
 531         //---------------------------------------------------------------------
 532         test("%d", "null", (Object)null);
 533 
 534 #if[byte]
 535 #if[prim]
 536         //---------------------------------------------------------------------
 537         // %d - byte
 538         //---------------------------------------------------------------------
 539         $type$ seventeen = ($type$) 17;
 540         test("%d", "17", seventeen);
 541         test("%,d", "17", seventeen);
 542         test("%,d", "-17", negate(seventeen));
 543         test("%(d", "17", seventeen);
 544         test("%(d", "(17)", negate(seventeen));
 545         test("% d", " 17", seventeen);
 546         test("% d", "-17", negate(seventeen));
 547         test("%+d", "+17", seventeen);
 548         test("%+d", "-17", negate(seventeen));
 549         test("%010d", "0000000017", seventeen);
 550         test("%010d", "-000000017", negate(seventeen));
 551         test("%(10d", "      (17)", negate(seventeen));
 552         test("%-10d", "17        ", seventeen);
 553         test("%-10d", "-17       ", negate(seventeen));
 554 #end[prim]
 555 #else[byte]
 556 #if[short]
 557         //---------------------------------------------------------------------
 558         // %d - short
 559         //---------------------------------------------------------------------
 560         $type$ oneToFive = ($type$) 12345;
 561         test("%d", "12345", oneToFive);
 562         test("%,d", "12,345", oneToFive);
 563         test("%,d", "-12,345", negate(oneToFive));
 564         test("%(d", "12345", oneToFive);
 565         test("%(d", "(12345)", negate(oneToFive));
 566         test("% d", " 12345", oneToFive);
 567         test("% d", "-12345", negate(oneToFive));
 568         test("%+d", "+12345", oneToFive);
 569         test("%+d", "-12345", negate(oneToFive));
 570         test("%010d", "0000012345", oneToFive);
 571         test("%010d", "-000012345", negate(oneToFive));
 572         test("%(10d", "   (12345)", negate(oneToFive));
 573         test("%-10d", "12345     ", oneToFive);
 574         test("%-10d", "-12345    ", negate(oneToFive));
 575 
 576 #else[short]
 577 #if[prim]
 578         //---------------------------------------------------------------------
 579         // %d - int and long
 580         //---------------------------------------------------------------------
 581         $type$ oneToSeven = ($type$) 1234567;
 582         test("%d", "1234567", oneToSeven);
 583         test("%,d", "1,234,567", oneToSeven);
 584         test(Locale.FRANCE, "%,d", "1\u00a0234\u00a0567", oneToSeven);
 585         test("%,d", "-1,234,567", negate(oneToSeven));
 586         test("%(d", "1234567", oneToSeven);
 587         test("%(d", "(1234567)", negate(oneToSeven));
 588         test("% d", " 1234567", oneToSeven);
 589         test("% d", "-1234567", negate(oneToSeven));
 590         test("%+d", "+1234567", oneToSeven);
 591         test("%+d", "-1234567", negate(oneToSeven));
 592         test("%010d", "0001234567", oneToSeven);
 593         test("%010d", "-001234567", negate(oneToSeven));
 594         test("%(10d", " (1234567)", negate(oneToSeven));
 595         test("%-10d", "1234567   ", oneToSeven);
 596         test("%-10d", "-1234567  ", negate(oneToSeven));
 597 #end[prim]
 598 #end[short]
 599 #end[byte]
 600         //---------------------------------------------------------------------
 601         // %d - errors
 602         //---------------------------------------------------------------------
 603         tryCatch("%#d", FormatFlagsConversionMismatchException.class);
 604         tryCatch("%D", UnknownFormatConversionException.class);
 605         tryCatch("%0d", MissingFormatWidthException.class);
 606         tryCatch("%-d", MissingFormatWidthException.class);
 607         tryCatch("%7.3d", IllegalFormatPrecisionException.class);
 608 
 609         //---------------------------------------------------------------------
 610         // %o
 611         //
 612         // Numeric conversion applicable to byte, short, int, long, and
 613         // BigInteger.
 614         //---------------------------------------------------------------------
 615         test("%o", "null", (Object)null);
 616 
 617 #if[byte]
 618         //---------------------------------------------------------------------
 619         // %o - byte
 620         //---------------------------------------------------------------------
 621         test("%010o", "0000000200", minByte);
 622         test("%-10o", "200       ", minByte);
 623         test("%#10o", "      0200", minByte);
 624 #end[byte]
 625 #if[short]
 626         //---------------------------------------------------------------------
 627         // %o - short
 628         //---------------------------------------------------------------------
 629 
 630         test("%010o", "0000177600", minByte);
 631         test("%-10o", "177600    ", minByte);
 632         test("%#10o", "   0177600", minByte);
 633 #end[short]
 634 #if[int]
 635         //---------------------------------------------------------------------
 636         // %o - int
 637         //---------------------------------------------------------------------
 638         test("%014o", "00037777777600", minByte);
 639         test("%-14o", "37777777600   ", minByte);
 640         test("%#14o", "  037777777600", minByte);
 641 
 642         $type$ oneToSevenOct = ($type$) 1234567;
 643         test("%o", "4553207", oneToSevenOct);
 644         test("%010o", "0004553207", oneToSevenOct);
 645         test("%-10o", "4553207   ", oneToSevenOct);
 646         test("%#10o", "  04553207", oneToSevenOct);
 647 #end[int]
 648 #if[long]
 649         //---------------------------------------------------------------------
 650         // %o - long
 651         //---------------------------------------------------------------------
 652         test("%024o", "001777777777777777777600", minByte);
 653         test("%-24o", "1777777777777777777600  ", minByte);
 654         test("%#24o", " 01777777777777777777600", minByte);
 655 
 656         $type$ oneToSevenOct = ($type$) 1234567;
 657         test("%o", "4553207", oneToSevenOct);
 658         test("%010o", "0004553207", oneToSevenOct);
 659         test("%-10o", "4553207   ", oneToSevenOct);
 660         test("%#10o", "  04553207", oneToSevenOct);
 661 #end[long]
 662 
 663         //---------------------------------------------------------------------
 664         // %o - errors
 665         //---------------------------------------------------------------------
 666         tryCatch("%(o", FormatFlagsConversionMismatchException.class,
 667                  minByte);
 668         tryCatch("%+o", FormatFlagsConversionMismatchException.class,
 669                  minByte);
 670         tryCatch("% o", FormatFlagsConversionMismatchException.class,
 671                  minByte);
 672         tryCatch("%0o", MissingFormatWidthException.class);
 673         tryCatch("%-o", MissingFormatWidthException.class);
 674         tryCatch("%,o", FormatFlagsConversionMismatchException.class);
 675         tryCatch("%O", UnknownFormatConversionException.class);
 676 
 677         //---------------------------------------------------------------------
 678         // %x
 679         //
 680         // Numeric conversion applicable to byte, short, int, long, and
 681         // BigInteger.
 682         //---------------------------------------------------------------------
 683         test("%x", "null", (Object)null);
 684 
 685 #if[byte]
 686         //---------------------------------------------------------------------
 687         // %x - byte
 688         //---------------------------------------------------------------------
 689         test("%010x", "0000000080", minByte);
 690         test("%-10x", "80        ", minByte);
 691         test("%#10x", "      0x80", minByte);
 692         test("%0#10x","0x00000080", minByte);
 693         test("%#10X", "      0X80", minByte);
 694         test("%X", "80", minByte);
 695 #end[byte]
 696 #if[short]
 697         //---------------------------------------------------------------------
 698         // %x - short
 699         //---------------------------------------------------------------------
 700         test("%010x", "000000ff80", minByte);
 701         test("%-10x", "ff80      ", minByte);
 702         test("%#10x", "    0xff80", minByte);
 703         test("%0#10x","0x0000ff80", minByte);
 704         test("%#10X", "    0XFF80", minByte);
 705         test("%X", "FF80", minByte);
 706 #end[short]
 707 #if[int]
 708         //---------------------------------------------------------------------
 709         // %x - int
 710         //---------------------------------------------------------------------
 711         $type$ oneToSevenHex = ($type$)1234567;
 712         test("%x", "null", (Object)null);
 713         test("%x", "12d687", oneToSevenHex);
 714         test("%010x", "000012d687", oneToSevenHex);
 715         test("%-10x", "12d687    ", oneToSevenHex);
 716         test("%#10x", "  0x12d687", oneToSevenHex);
 717         test("%#10X", "  0X12D687",oneToSevenHex);
 718         test("%X", "12D687", oneToSevenHex);
 719 
 720         test("%010x", "00ffffff80", minByte);
 721         test("%-10x", "ffffff80  ", minByte);
 722         test("%#10x", "0xffffff80", minByte);
 723         test("%0#12x","0x00ffffff80", minByte);
 724         test("%#12X", "  0XFFFFFF80", minByte);
 725         test("%X", "FFFFFF80", minByte);
 726 #end[int]
 727 #if[long]
 728         //---------------------------------------------------------------------
 729         // %x - long
 730         //---------------------------------------------------------------------
 731         $type$ oneToSevenHex = ($type$)1234567;
 732         test("%x", "null", (Object)null);
 733         test("%x", "12d687", oneToSevenHex);
 734         test("%010x", "000012d687", oneToSevenHex);
 735         test("%-10x", "12d687    ", oneToSevenHex);
 736         test("%#10x", "  0x12d687", oneToSevenHex);
 737         test("%#10X", "  0X12D687",oneToSevenHex);
 738         test("%X", "12D687", oneToSevenHex);
 739 
 740         test("%018x",    "00ffffffffffffff80", minByte);
 741         test("%-18x",      "ffffffffffffff80  ", minByte);
 742         test("%#20x",  "  0xffffffffffffff80", minByte);
 743         test("%0#20x", "0x00ffffffffffffff80", minByte);
 744         test("%#20X", "  0XFFFFFFFFFFFFFF80", minByte);
 745         test("%X",        "FFFFFFFFFFFFFF80", minByte);
 746 #end[long]
 747         //---------------------------------------------------------------------
 748         // %x - errors
 749         //---------------------------------------------------------------------
 750         tryCatch("%,x", FormatFlagsConversionMismatchException.class);
 751         tryCatch("%0x", MissingFormatWidthException.class);
 752         tryCatch("%-x", MissingFormatWidthException.class);
 753 
 754 #end[dec]
 755 
 756 #if[BigInteger]
 757         //---------------------------------------------------------------------
 758         // BigInteger - errors
 759         //---------------------------------------------------------------------
 760         tryCatch("%f", IllegalFormatConversionException.class,
 761                  new BigInteger("1"));
 762 
 763         //---------------------------------------------------------------------
 764         // %d - BigInteger
 765         //---------------------------------------------------------------------
 766         test("%d", "null", (Object)null);
 767         test("%d", "1234567", new BigInteger("1234567", 10));
 768         test("%,d", "1,234,567", new BigInteger("1234567", 10));
 769         test(Locale.FRANCE, "%,d", "1\u00a0234\u00a0567", new BigInteger("1234567", 10));
 770         test("%,d", "-1,234,567", new BigInteger("-1234567", 10));
 771         test("%(d", "1234567", new BigInteger("1234567", 10));
 772         test("%(d", "(1234567)", new BigInteger("-1234567", 10));
 773         test("% d", " 1234567", new BigInteger("1234567", 10));
 774         test("% d", "-1234567", new BigInteger("-1234567", 10));
 775         test("%+d", "+1234567", new BigInteger("1234567", 10));
 776         test("%+d", "-1234567", new BigInteger("-1234567", 10));
 777         test("%010d", "0001234567", new BigInteger("1234567", 10));
 778         test("%010d", "-001234567", new BigInteger("-1234567", 10));
 779         test("%(10d", " (1234567)", new BigInteger("-1234567", 10));
 780         test("%+d", "+1234567", new BigInteger("1234567", 10));
 781         test("%+d", "-1234567", new BigInteger("-1234567", 10));
 782         test("%-10d", "1234567   ", new BigInteger("1234567", 10));
 783         test("%-10d", "-1234567  ", new BigInteger("-1234567", 10));
 784 
 785         //---------------------------------------------------------------------
 786         // %o - BigInteger
 787         //---------------------------------------------------------------------
 788         test("%o", "null", (Object)null);
 789         test("%o", "1234567", new BigInteger("1234567", 8));
 790         test("%(o", "1234567", new BigInteger("1234567", 8));
 791         test("%(o", "(1234567)", new BigInteger("-1234567", 8));
 792         test("% o", " 1234567", new BigInteger("1234567", 8));
 793         test("% o", "-1234567", new BigInteger("-1234567", 8));
 794         test("%+o", "+1234567", new BigInteger("1234567", 8));
 795         test("%+o", "-1234567", new BigInteger("-1234567", 8));
 796         test("%010o", "0001234567", new BigInteger("1234567", 8));
 797         test("%010o", "-001234567", new BigInteger("-1234567", 8));
 798         test("%(10o", " (1234567)", new BigInteger("-1234567", 8));
 799         test("%+o", "+1234567", new BigInteger("1234567", 8));
 800         test("%+o", "-1234567", new BigInteger("-1234567", 8));
 801         test("%-10o", "1234567   ", new BigInteger("1234567", 8));
 802         test("%-10o", "-1234567  ", new BigInteger("-1234567", 8));
 803         test("%#10o", "  01234567", new BigInteger("1234567", 8));
 804         test("%#10o", " -01234567", new BigInteger("-1234567", 8));
 805 
 806         //---------------------------------------------------------------------
 807         // %x - BigInteger
 808         //---------------------------------------------------------------------
 809         test("%x", "null", (Object)null);
 810         test("%x", "1234567", new BigInteger("1234567", 16));
 811         test("%(x", "1234567", new BigInteger("1234567", 16));
 812         test("%(x", "(1234567)", new BigInteger("-1234567", 16));
 813         test("% x", " 1234567", new BigInteger("1234567", 16));
 814         test("% x", "-1234567", new BigInteger("-1234567", 16));
 815         test("%+x", "+1234567", new BigInteger("1234567", 16));
 816         test("%+x", "-1234567", new BigInteger("-1234567", 16));
 817         test("%010x", "0001234567", new BigInteger("1234567", 16));
 818         test("%010x", "-001234567", new BigInteger("-1234567", 16));
 819         test("%(10x", " (1234567)", new BigInteger("-1234567", 16));
 820         test("%+x", "+1234567", new BigInteger("1234567", 16));
 821         test("%+x", "-1234567", new BigInteger("-1234567", 16));
 822         test("%-10x", "1234567   ", new BigInteger("1234567", 16));
 823         test("%-10x", "-1234567  ", new BigInteger("-1234567", 16));
 824         test("%#10x", " 0x1234567", new BigInteger("1234567", 16));
 825         test("%#10x", "-0x1234567", new BigInteger("-1234567", 16));
 826         test("%#10X", " 0X1234567", new BigInteger("1234567", 16));
 827         test("%#10X", "-0X1234567", new BigInteger("-1234567", 16));
 828         test("%X", "1234567A", new BigInteger("1234567a", 16));
 829         test("%X", "-1234567A", new BigInteger("-1234567a", 16));
 830 #end[BigInteger]
 831 
 832 #if[fp]
 833 #if[BigDecimal]
 834         //---------------------------------------------------------------------
 835         // %s - BigDecimal
 836         //---------------------------------------------------------------------
 837         $type$ one = BigDecimal.ONE;
 838         $type$ ten = BigDecimal.TEN;
 839         $type$ pi  = new $type$(Math.PI);
 840         $type$ piToThe300 = pi.pow(300);
 841 
 842         test("%s", "3.141592653589793115997963468544185161590576171875", pi);
 843 #end[BigDecimal]
 844 #if[float]
 845         //---------------------------------------------------------------------
 846         // %s - float
 847         //---------------------------------------------------------------------
 848         $type$ one = 1.0f;
 849         $type$ ten = 10.0f;
 850         $type$ pi  = (float) Math.PI;
 851 
 852         test("%s", "3.1415927", pi);
 853 #end[float]
 854 #if[Float]
 855         //---------------------------------------------------------------------
 856         // %s - Float
 857         //---------------------------------------------------------------------
 858         $type$ one = new $type$(1.0f);
 859         $type$ ten = new $type$(10.0f);
 860         $type$ pi  = new $type$(Math.PI);
 861 
 862         test("%s", "3.1415927", pi);
 863 #end[Float]
 864 #if[double]
 865         //---------------------------------------------------------------------
 866         // %s - double
 867         //---------------------------------------------------------------------
 868         $type$ one = 1.0;
 869         $type$ ten = 10.0;
 870         $type$ pi  = Math.PI;
 871 
 872         test("%s", "3.141592653589793", pi);
 873 #end[double]
 874 #if[Double]
 875         //---------------------------------------------------------------------
 876         // %s - Double
 877         //---------------------------------------------------------------------
 878         $type$ one = new $type$(1.0);
 879         $type$ ten = new $type$(10.0);
 880         $type$ pi  = new $type$(Math.PI);
 881 
 882         test("%s", "3.141592653589793", pi);
 883 #end[Double]
 884 
 885         //---------------------------------------------------------------------
 886         // flag/conversion errors
 887         //---------------------------------------------------------------------
 888         tryCatch("%d", IllegalFormatConversionException.class, one);
 889         tryCatch("%,.4e", FormatFlagsConversionMismatchException.class, one);
 890 
 891         //---------------------------------------------------------------------
 892         // %e
 893         //
 894         // Floating-point conversions applicable to float, double, and
 895         // BigDecimal.
 896         //---------------------------------------------------------------------
 897         test("%e", "null", (Object)null);
 898 
 899         //---------------------------------------------------------------------
 900         // %e - float and double
 901         //---------------------------------------------------------------------
 902         // double PI = 3.141 592 653 589 793 238 46;
 903         test("%e", "3.141593e+00", pi);
 904         test("%.0e", "1e+01", ten);
 905         test("%#.0e", "1.e+01", ten);
 906         test("%E", "3.141593E+00", pi);
 907         test("%10.3e", " 3.142e+00", pi);
 908         test("%10.3e", "-3.142e+00", negate(pi));
 909         test("%010.3e", "03.142e+00", pi);
 910         test("%010.3e", "-3.142e+00", negate(pi));
 911         test("%-12.3e", "3.142e+00   ", pi);
 912         test("%-12.3e", "-3.142e+00  ", negate(pi));
 913         test("%.3e", "3.142e+00", pi);
 914         test("%.3e", "-3.142e+00", negate(pi));
 915         test("%.3e", "3.142e+06", mult(pi, 1000000.0));
 916         test("%.3e", "-3.142e+06", mult(pi, -1000000.0));
 917 
 918         test(Locale.FRANCE, "%e", "3,141593e+00", pi);
 919 
 920         // double PI^300
 921         //    = 13962455701329742638131355433930076081862072808 ... e+149
 922 #if[BigDecimal]
 923         //---------------------------------------------------------------------
 924         // %e - BigDecimal
 925         //---------------------------------------------------------------------
 926         test("%.3e", "1.396e+149", piToThe300);
 927         test("%.3e", "-1.396e+149", piToThe300.negate());
 928         test("%.3e", "1.000e-100", recip(ten.pow(100)));
 929         test("%.3e", "-1.000e-100", negate(recip(ten.pow(100))));
 930 
 931         test("%3.0e", "1e-06", new BigDecimal("0.000001"));
 932         test("%3.0e", "1e-05", new BigDecimal("0.00001"));
 933         test("%3.0e", "1e-04", new BigDecimal("0.0001"));
 934         test("%3.0e", "1e-03", new BigDecimal("0.001"));
 935         test("%3.0e", "1e-02", new BigDecimal("0.01"));
 936         test("%3.0e", "1e-01", new BigDecimal("0.1"));
 937         test("%3.0e", "9e-01", new BigDecimal("0.9"));
 938         test("%3.1e", "9.0e-01", new BigDecimal("0.9"));
 939         test("%3.0e", "1e+00", new BigDecimal("1.00"));
 940         test("%3.0e", "1e+01", new BigDecimal("10.00"));
 941         test("%3.0e", "1e+02", new BigDecimal("99.19"));
 942         test("%3.1e", "9.9e+01", new BigDecimal("99.19"));
 943         test("%3.0e", "1e+02", new BigDecimal("99.99"));
 944         test("%3.0e", "1e+02", new BigDecimal("100.00"));
 945         test("%#3.0e", "1.e+03",    new BigDecimal("1000.00"));
 946         test("%3.0e", "1e+04",     new BigDecimal("10000.00"));
 947         test("%3.0e", "1e+05",    new BigDecimal("100000.00"));
 948         test("%3.0e", "1e+06",   new BigDecimal("1000000.00"));
 949         test("%3.0e", "1e+07",  new BigDecimal("10000000.00"));
 950         test("%3.0e", "1e+08", new BigDecimal("100000000.00"));
 951 #end[BigDecimal]
 952 
 953         test("%10.3e", " 1.000e+00", one);
 954         test("%+.3e", "+3.142e+00", pi);
 955         test("%+.3e", "-3.142e+00", negate(pi));
 956         test("% .3e", " 3.142e+00", pi);
 957         test("% .3e", "-3.142e+00", negate(pi));
 958         test("%#.0e", "3.e+00", create(3.0));
 959         test("%#.0e", "-3.e+00", create(-3.0));
 960         test("%.0e", "3e+00", create(3.0));
 961         test("%.0e", "-3e+00", create(-3.0));
 962 
 963         test("%(.4e", "3.1416e+06", mult(pi, 1000000.0));
 964         test("%(.4e", "(3.1416e+06)", mult(pi, -1000000.0));
 965 
 966         //---------------------------------------------------------------------
 967         // %e - boundary problems
 968         //---------------------------------------------------------------------
 969         test("%3.0e", "1e-06", 0.000001);
 970         test("%3.0e", "1e-05", 0.00001);
 971         test("%3.0e", "1e-04", 0.0001);
 972         test("%3.0e", "1e-03", 0.001);
 973         test("%3.0e", "1e-02", 0.01);
 974         test("%3.0e", "1e-01", 0.1);
 975         test("%3.0e", "9e-01", 0.9);
 976         test("%3.1e", "9.0e-01", 0.9);
 977         test("%3.0e", "1e+00", 1.00);
 978         test("%3.0e", "1e+01", 10.00);
 979         test("%3.0e", "1e+02", 99.19);
 980         test("%3.1e", "9.9e+01", 99.19);
 981         test("%3.0e", "1e+02", 99.99);
 982         test("%3.0e", "1e+02", 100.00);
 983         test("%#3.0e", "1.e+03",     1000.00);
 984         test("%3.0e", "1e+04",     10000.00);
 985         test("%3.0e", "1e+05",    100000.00);
 986         test("%3.0e", "1e+06",   1000000.00);
 987         test("%3.0e", "1e+07",  10000000.00);
 988         test("%3.0e", "1e+08", 100000000.00);
 989 
 990         //---------------------------------------------------------------------
 991         // %f
 992         //
 993         // Floating-point conversions applicable to float, double, and
 994         // BigDecimal.
 995         //---------------------------------------------------------------------
 996         test("%f", "null", (Object)null);
 997         test("%f", "3.141593", pi);
 998         test(Locale.FRANCE, "%f", "3,141593", pi);
 999         test("%10.3f", "     3.142", pi);
1000         test("%10.3f", "    -3.142", negate(pi));
1001         test("%010.3f", "000003.142", pi);
1002         test("%010.3f", "-00003.142", negate(pi));
1003         test("%-10.3f", "3.142     ", pi);
1004         test("%-10.3f", "-3.142    ", negate(pi));
1005         test("%.3f", "3.142", pi);
1006         test("%.3f", "-3.142", negate(pi));
1007         test("%+.3f", "+3.142", pi);
1008         test("%+.3f", "-3.142", negate(pi));
1009         test("% .3f", " 3.142", pi);
1010         test("% .3f", "-3.142", negate(pi));
1011         test("%#.0f", "3.", create(3.0));
1012         test("%#.0f", "-3.", create(-3.0));
1013         test("%.0f", "3", create(3.0));
1014         test("%.0f", "-3", create(-3.0));
1015         test("%.3f", "10.000", ten);
1016         test("%.3f", "1.000", one);
1017         test("%10.3f", "     1.000", one);
1018 
1019         //---------------------------------------------------------------------
1020         // %f - boundary problems
1021         //---------------------------------------------------------------------
1022         test("%3.0f", "  0", 0.000001);
1023         test("%3.0f", "  0", 0.00001);
1024         test("%3.0f", "  0", 0.0001);
1025         test("%3.0f", "  0", 0.001);
1026         test("%3.0f", "  0", 0.01);
1027         test("%3.0f", "  0", 0.1);
1028         test("%3.0f", "  1", 0.9);
1029         test("%3.1f", "0.9", 0.9);
1030         test("%3.0f", "  1", 1.00);
1031         test("%3.0f", " 10", 10.00);
1032         test("%3.0f", " 99", 99.19);
1033         test("%3.1f", "99.2", 99.19);
1034         test("%3.0f", "100", 99.99);
1035         test("%3.0f", "100", 100.00);
1036         test("%#3.0f", "1000.",     1000.00);
1037         test("%3.0f", "10000",     10000.00);
1038         test("%3.0f", "100000",    100000.00);
1039         test("%3.0f", "1000000",   1000000.00);
1040         test("%3.0f", "10000000",  10000000.00);
1041         test("%3.0f", "100000000", 100000000.00);
1042 #if[BigDecimal]
1043         //---------------------------------------------------------------------
1044         // %f - BigDecimal
1045         //---------------------------------------------------------------------
1046         test("%4.0f", "  99", new BigDecimal("99.19"));
1047         test("%4.1f", "99.2", new BigDecimal("99.19"));
1048 
1049         BigDecimal val = new BigDecimal("99.95");
1050         test("%4.0f", " 100", val);
1051         test("%#4.0f", "100.", val);
1052         test("%4.1f", "100.0", val);
1053         test("%4.2f", "99.95", val);
1054         test("%4.3f", "99.950", val);
1055 
1056         val = new BigDecimal(".99");
1057         test("%4.1f", " 1.0", val);
1058         test("%4.2f", "0.99", val);
1059         test("%4.3f", "0.990", val);
1060 
1061         // #6476425
1062         val = new BigDecimal("0.00001");
1063         test("%.0f", "0", val);
1064         test("%.1f", "0.0", val);
1065         test("%.2f", "0.00", val);
1066         test("%.3f", "0.000", val);
1067         test("%.4f", "0.0000", val);
1068         test("%.5f", "0.00001", val);
1069 
1070         val = new BigDecimal("1.00001");
1071         test("%.0f", "1", val);
1072         test("%.1f", "1.0", val);
1073         test("%.2f", "1.00", val);
1074         test("%.3f", "1.000", val);
1075         test("%.4f", "1.0000", val);
1076         test("%.5f", "1.00001", val);
1077 
1078         val = new BigDecimal("1.23456");
1079         test("%.0f", "1", val);
1080         test("%.1f", "1.2", val);
1081         test("%.2f", "1.23", val);
1082         test("%.3f", "1.235", val);
1083         test("%.4f", "1.2346", val);
1084         test("%.5f", "1.23456", val);
1085         test("%.6f", "1.234560", val);
1086 
1087         val = new BigDecimal("9.99999");
1088         test("%.0f", "10", val);
1089         test("%.1f", "10.0", val);
1090         test("%.2f", "10.00", val);
1091         test("%.3f", "10.000", val);
1092         test("%.4f", "10.0000", val);
1093         test("%.5f", "9.99999", val);
1094         test("%.6f", "9.999990", val);
1095 
1096 
1097         val = new BigDecimal("1.99999");
1098         test("%.0f", "2", val);
1099         test("%.1f", "2.0", val);
1100         test("%.2f", "2.00", val);
1101         test("%.3f", "2.000", val);
1102         test("%.4f", "2.0000", val);
1103         test("%.5f", "1.99999", val);
1104         test("%.6f", "1.999990", val);
1105 
1106 #end[BigDecimal]
1107 
1108 #if[float]
1109         //---------------------------------------------------------------------
1110         // %f - float
1111         //---------------------------------------------------------------------
1112         // Float can not accurately store 1e6 * PI.
1113         test("%.3f", "3141.593", mult(pi, 1000.0));
1114         test("%.3f", "-3141.593", mult(pi, -1000.0));
1115 
1116         test("%,.2f", "3,141.59", mult(pi, 1000.0));
1117         test(Locale.FRANCE, "%,.2f", "3\u00a0141,59", mult(pi, 1000.0));
1118         test("%,.2f", "-3,141.59", mult(pi, -1000.0));
1119         test("%(.2f", "3141.59", mult(pi, 1000.0));
1120         test("%(.2f", "(3141.59)", mult(pi, -1000.0));
1121         test("%(,.2f", "3,141.59", mult(pi, 1000.0));
1122         test("%(,.2f", "(3,141.59)", mult(pi, -1000.0));
1123 
1124 #else[float]
1125 #if[!Float]
1126         //---------------------------------------------------------------------
1127         // %f - float, double, Double, BigDecimal
1128         //---------------------------------------------------------------------
1129         test("%.3f", "3141592.654", mult(pi, 1000000.0));
1130         test("%.3f", "-3141592.654", mult(pi, -1000000.0));
1131         test("%,.4f", "3,141,592.6536", mult(pi, 1000000.0));
1132         test(Locale.FRANCE, "%,.4f", "3\u00a0141\u00a0592,6536", mult(pi, 1000000.0));
1133         test("%,.4f", "-3,141,592.6536", mult(pi, -1000000.0));
1134         test("%(.4f", "3141592.6536", mult(pi, 1000000.0));
1135         test("%(.4f", "(3141592.6536)", mult(pi, -1000000.0));
1136         test("%(,.4f", "3,141,592.6536", mult(pi, 1000000.0));
1137         test("%(,.4f", "(3,141,592.6536)", mult(pi, -1000000.0));
1138 #end[!Float]
1139 #end[float]
1140 
1141 
1142         //---------------------------------------------------------------------
1143         // %g
1144         //
1145         // Floating-point conversions applicable to float, double, and
1146         // BigDecimal.
1147         //---------------------------------------------------------------------
1148         test("%g", "null", (Object)null);
1149         test("%g", "3.14159", pi);
1150         test(Locale.FRANCE, "%g", "3,14159", pi);
1151         test("%.0g", "1e+01", ten);
1152         test("%G", "3.14159", pi);
1153         test("%10.3g", "      3.14", pi);
1154         test("%10.3g", "     -3.14", negate(pi));
1155         test("%010.3g", "0000003.14", pi);
1156         test("%010.3g", "-000003.14", negate(pi));
1157         test("%-12.3g", "3.14        ", pi);
1158         test("%-12.3g", "-3.14       ", negate(pi));
1159         test("%.3g", "3.14", pi);
1160         test("%.3g", "-3.14", negate(pi));
1161         test("%.3g", "3.14e+08", mult(pi, 100000000.0));
1162         test("%.3g", "-3.14e+08", mult(pi, -100000000.0));
1163 
1164         test("%.3g", "1.00e-05", recip(create(100000.0)));
1165         test("%.3g", "-1.00e-05", recip(create(-100000.0)));
1166         test("%.0g", "-1e-05", recip(create(-100000.0)));
1167         test("%.0g", "1e+05", create(100000.0));
1168         test("%.3G", "1.00E-05", recip(create(100000.0)));
1169         test("%.3G", "-1.00E-05", recip(create(-100000.0)));
1170 
1171         test("%3.0g", "1e-06", 0.000001);
1172         test("%3.0g", "1e-05", 0.00001);
1173         test("%3.0g", "1e-05", 0.0000099);
1174         test("%3.1g", "1e-05", 0.0000099);
1175         test("%3.2g", "9.9e-06", 0.0000099);
1176         test("%3.0g", "0.0001", 0.0001);
1177         test("%3.0g", "9e-05",  0.00009);
1178         test("%3.0g", "0.0001", 0.000099);
1179         test("%3.1g", "0.0001", 0.000099);
1180         test("%3.2g", "9.9e-05", 0.000099);
1181         test("%3.0g", "0.001", 0.001);
1182         test("%3.0g", "0.001", 0.00099);
1183         test("%3.1g", "0.001", 0.00099);
1184         test("%3.2g", "0.00099", 0.00099);
1185         test("%3.3g", "0.00100", 0.001);
1186         test("%3.4g", "0.001000", 0.001);
1187         test("%3.0g", "0.01", 0.01);
1188         test("%3.0g", "0.1", 0.1);
1189         test("%3.0g", "0.9", 0.9);
1190         test("%3.1g", "0.9", 0.9);
1191         test("%3.0g", "  1", 1.00);
1192         test("%3.2g", " 10", 10.00);
1193         test("%3.0g", "1e+01", 10.00);
1194         test("%3.0g", "1e+02", 99.19);
1195         test("%3.1g", "1e+02", 99.19);
1196         test("%3.2g", " 99", 99.19);
1197         test("%3.0g", "1e+02", 99.9);
1198         test("%3.1g", "1e+02", 99.9);
1199         test("%3.2g", "1.0e+02", 99.9);
1200         test("%3.0g", "1e+02", 99.99);
1201         test("%3.0g", "1e+02", 100.00);
1202         test("%3.0g", "1e+03", 999.9);
1203         test("%3.1g", "1e+03", 999.9);
1204         test("%3.2g", "1.0e+03", 999.9);
1205         test("%3.3g", "1.00e+03", 999.9);
1206         test("%3.4g", "999.9", 999.9);
1207         test("%3.4g", "1000", 999.99);
1208         test("%3.0g", "1e+03", 1000.00);
1209         test("%3.0g", "1e+04",     10000.00);
1210         test("%3.0g", "1e+05",    100000.00);
1211         test("%3.0g", "1e+06",   1000000.00);
1212         test("%3.0g", "1e+07",  10000000.00);
1213         test("%3.9g", "100000000",  100000000.00);
1214         test("%3.10g", "100000000.0", 100000000.00);
1215 
1216         tryCatch("%#3.0g", FormatFlagsConversionMismatchException.class, 1000.00);
1217 
1218         // double PI^300
1219         //    = 13962455701329742638131355433930076081862072808 ... e+149
1220 #if[BigDecimal]
1221         //---------------------------------------------------------------------
1222         // %g - BigDecimal
1223         //---------------------------------------------------------------------
1224         test("%.3g", "1.40e+149", piToThe300);
1225         test("%.3g", "-1.40e+149", piToThe300.negate());
1226         test(Locale.FRANCE, "%.3g", "-1,40e+149", piToThe300.negate());
1227         test("%.3g", "1.00e-100", recip(ten.pow(100)));
1228         test("%.3g", "-1.00e-100", negate(recip(ten.pow(100))));
1229 
1230         test("%3.0g", "1e-06", new BigDecimal("0.000001"));
1231         test("%3.0g", "1e-05", new BigDecimal("0.00001"));
1232         test("%3.0g", "0.0001", new BigDecimal("0.0001"));
1233         test("%3.0g", "0.001", new BigDecimal("0.001"));
1234         test("%3.3g", "0.00100", new BigDecimal("0.001"));
1235         test("%3.4g", "0.001000", new BigDecimal("0.001"));
1236         test("%3.0g", "0.01", new BigDecimal("0.01"));
1237         test("%3.0g", "0.1", new BigDecimal("0.1"));
1238         test("%3.0g", "0.9", new BigDecimal("0.9"));
1239         test("%3.1g", "0.9", new BigDecimal("0.9"));
1240         test("%3.0g", "  1", new BigDecimal("1.00"));
1241         test("%3.2g", " 10", new BigDecimal("10.00"));
1242         test("%3.0g", "1e+01", new BigDecimal("10.00"));
1243         test("%3.0g", "1e+02", new BigDecimal("99.19"));
1244         test("%3.1g", "1e+02", new BigDecimal("99.19"));
1245         test("%3.2g", " 99", new BigDecimal("99.19"));
1246         test("%3.0g", "1e+02", new BigDecimal("99.99"));
1247         test("%3.0g", "1e+02", new BigDecimal("100.00"));
1248         test("%3.0g", "1e+03", new BigDecimal("1000.00"));
1249         test("%3.0g", "1e+04",      new BigDecimal("10000.00"));
1250         test("%3.0g", "1e+05",      new BigDecimal("100000.00"));
1251         test("%3.0g", "1e+06",      new BigDecimal("1000000.00"));
1252         test("%3.0g", "1e+07",      new BigDecimal("10000000.00"));
1253         test("%3.9g", "100000000",  new BigDecimal("100000000.00"));
1254         test("%3.10g", "100000000.0", new BigDecimal("100000000.00"));
1255 #end[BigDecimal]
1256 
1257         test("%.3g", "10.0", ten);
1258         test("%.3g", "1.00", one);
1259         test("%10.3g", "      1.00", one);
1260         test("%+10.3g", "     +3.14", pi);
1261         test("%+10.3g", "     -3.14", negate(pi));
1262         test("% .3g", " 3.14", pi);
1263         test("% .3g", "-3.14", negate(pi));
1264         test("%.0g", "3", create(3.0));
1265         test("%.0g", "-3", create(-3.0));
1266 
1267         test("%(.4g", "3.142e+08", mult(pi, 100000000.0));
1268         test("%(.4g", "(3.142e+08)", mult(pi, -100000000.0));
1269 
1270 #if[float]
1271         // Float can not accurately store 1e6 * PI.
1272         test("%,.6g", "3,141.59", mult(pi, 1000.0));
1273         test("%(,.6g", "(3,141.59)", mult(pi, -1000.0));
1274 #else[float]
1275 #if[!Float]
1276         test("%,.11g", "3,141,592.6536", mult(pi, 1000000.0));
1277         test("%(,.11g", "(3,141,592.6536)", mult(pi, -1000000.0));
1278 #end[!Float]
1279 #end[float]
1280 
1281 #if[double]
1282         //---------------------------------------------------------------------
1283         // %a
1284         //
1285         // Floating-point conversions applicable to float, double, and
1286         // BigDecimal.
1287         //---------------------------------------------------------------------
1288         test("%a", "null", (Object)null);
1289         test("%.11a", "0x0.00000000000p0", 0.0);
1290         test(Locale.FRANCE, "%.11a", "0x0.00000000000p0", 0.0); // no localization
1291         test("%.1a", "0x0.0p0", 0.0);
1292         test("%.11a", "-0x0.00000000000p0", -0.0);
1293         test("%.1a", "-0x0.0p0", -0.0);
1294         test("%.11a", "0x1.00000000000p0", 1.0);
1295         test("%.1a", "0x1.0p0", 1.0);
1296         test("%.11a", "-0x1.00000000000p0", -1.0);
1297         test("%.1a", "-0x1.0p0", -1.0);
1298         test("%.11a", "0x1.80000000000p1", 3.0);
1299         test("%.1a", "0x1.8p1", 3.0);
1300         test("%.11a", "0x1.00000000000p-1022", DoubleConsts.MIN_NORMAL);
1301         test("%.1a", "0x1.0p-1022", DoubleConsts.MIN_NORMAL);
1302         test("%.11a", "0x1.00000000000p-1022",
1303              Math.nextDown(DoubleConsts.MIN_NORMAL));
1304         test("%.1a", "0x1.0p-1022",
1305              Math.nextDown(DoubleConsts.MIN_NORMAL));
1306         test("%.11a", "0x1.ffffffffffep-1023",
1307              Double.parseDouble("0x0.fffffffffffp-1022"));
1308         test("%.1a", "0x1.0p-1022",
1309              Double.parseDouble("0x0.fffffffffffp-1022"));
1310         test("%.30a", "0x0.000000000000100000000000000000p-1022", Double.MIN_VALUE);
1311         test("%.13a", "0x0.0000000000001p-1022", Double.MIN_VALUE);
1312         test("%.11a", "0x1.00000000000p-1074", Double.MIN_VALUE);
1313         test("%.1a", "0x1.0p-1074", Double.MIN_VALUE);
1314 
1315         test("%.11a", "0x1.08000000000p-1069",
1316              Double.MIN_VALUE + Double.MIN_VALUE*32);
1317         test("%.1a", "0x1.0p-1069",
1318              Double.MIN_VALUE + Double.MIN_VALUE*32);
1319         test("%.30a", "0x1.fffffffffffff00000000000000000p1023", Double.MAX_VALUE);
1320         test("%.13a", "0x1.fffffffffffffp1023", Double.MAX_VALUE);
1321         test("%.11a", "0x1.00000000000p1024", Double.MAX_VALUE);
1322         test("%.1a", "0x1.0p1024", Double.MAX_VALUE);
1323         test("%.11a", "0x1.18000000000p0", Double.parseDouble("0x1.18p0"));
1324         test("%.1a", "0x1.2p0", Double.parseDouble("0x1.18p0"));
1325 
1326         test("%.11a", "0x1.18000000000p0",
1327              Double.parseDouble("0x1.180000000001p0"));
1328         test("%.1a", "0x1.2p0",
1329              Double.parseDouble("0x1.180000000001p0"));
1330         test("%.11a", "0x1.28000000000p0", Double.parseDouble("0x1.28p0"));
1331         test("%.1a", "0x1.2p0", Double.parseDouble("0x1.28p0"));
1332 
1333         test("%.11a", "0x1.28000000000p0",
1334              Double.parseDouble("0x1.280000000001p0"));
1335         test("%.1a", "0x1.3p0", Double.parseDouble("0x1.280000000001p0"));
1336 #end[double]
1337 
1338         //---------------------------------------------------------------------
1339         // %f, %e, %g, %a - Boundaries
1340         //---------------------------------------------------------------------
1341 #if[float]
1342         //---------------------------------------------------------------------
1343         // %f, %e, %g, %a - NaN
1344         //---------------------------------------------------------------------
1345         test("%f", "NaN", Float.NaN);
1346         // s
1347         test("%+f", "NaN", Float.NaN);
1348 //      test("%F", "NAN", Float.NaN);
1349         test("%e", "NaN", Float.NaN);
1350         test("%+e", "NaN", Float.NaN);
1351         test("%E", "NAN", Float.NaN);
1352         test("%g", "NaN", Float.NaN);
1353         test("%+g", "NaN", Float.NaN);
1354         test("%G", "NAN", Float.NaN);
1355         test("%a", "NaN", Float.NaN);
1356         test("%+a", "NaN", Float.NaN);
1357         test("%A", "NAN", Float.NaN);
1358 
1359         //---------------------------------------------------------------------
1360         // %f, %e, %g, %a - +0.0
1361         //---------------------------------------------------------------------
1362         test("%f", "0.000000", +0.0);
1363         test("%+f", "+0.000000", +0.0);
1364         test("% f", " 0.000000", +0.0);
1365 //      test("%F", "0.000000", +0.0);
1366         test("%e", "0.000000e+00", 0e0);
1367         test("%e", "0.000000e+00", +0.0);
1368         test("%+e", "+0.000000e+00", +0.0);
1369         test("% e", " 0.000000e+00", +0.0);
1370         test("%E", "0.000000E+00", 0e0);
1371         test("%E", "0.000000E+00", +0.0);
1372         test("%+E", "+0.000000E+00", +0.0);
1373         test("% E", " 0.000000E+00", +0.0);
1374         test("%g", "0.00000", +0.0);
1375         test("%+g", "+0.00000", +0.0);
1376         test("% g", " 0.00000", +0.0);
1377         test("%G", "0.00000", +0.0);
1378         test("% G", " 0.00000", +0.0);
1379         test("%a", "0x0.0p0", +0.0);
1380         test("%+a", "+0x0.0p0", +0.0);
1381         test("% a", " 0x0.0p0", +0.0);
1382         test("%A", "0X0.0P0", +0.0);
1383         test("% A", " 0X0.0P0", +0.0);
1384 
1385         //---------------------------------------------------------------------
1386         // %f, %e, %g, %a - -0.0
1387         //---------------------------------------------------------------------
1388         test("%f", "-0.000000", -0.0);
1389         test("%+f", "-0.000000", -0.0);
1390 //      test("%F", "-0.000000", -0.0);
1391         test("%e", "-0.000000e+00", -0.0);
1392         test("%+e", "-0.000000e+00", -0.0);
1393         test("%E", "-0.000000E+00", -0.0);
1394         test("%+E", "-0.000000E+00", -0.0);
1395         test("%g", "-0.00000", -0.0);
1396         test("%+g", "-0.00000", -0.0);
1397         test("%G", "-0.00000", -0.0);
1398         test("%a", "-0x0.0p0", -0.0);
1399         test("%+a", "-0x0.0p0", -0.0);
1400         test("%+A", "-0X0.0P0", -0.0);
1401 
1402         //---------------------------------------------------------------------
1403         // %f, %e, %g, %a - +Infinity
1404         //---------------------------------------------------------------------
1405         test("%f", "Infinity", Float.POSITIVE_INFINITY);
1406         test("%+f", "+Infinity", Float.POSITIVE_INFINITY);
1407         test("% f", " Infinity", Float.POSITIVE_INFINITY);
1408 //      test("%F", "INFINITY", Float.POSITIVE_INFINITY);
1409         test("%e", "Infinity", Float.POSITIVE_INFINITY);
1410         test("%+e", "+Infinity", Float.POSITIVE_INFINITY);
1411         test("% e", " Infinity", Float.POSITIVE_INFINITY);
1412         test("%E", "INFINITY", Float.POSITIVE_INFINITY);
1413         test("%+E", "+INFINITY", Float.POSITIVE_INFINITY);
1414         test("% E", " INFINITY", Float.POSITIVE_INFINITY);
1415         test("%g", "Infinity", Float.POSITIVE_INFINITY);
1416         test("%+g", "+Infinity", Float.POSITIVE_INFINITY);
1417         test("%G", "INFINITY", Float.POSITIVE_INFINITY);
1418         test("% G", " INFINITY", Float.POSITIVE_INFINITY);
1419         test("%+G", "+INFINITY", Float.POSITIVE_INFINITY);
1420         test("%a", "Infinity", Float.POSITIVE_INFINITY);
1421         test("%+a", "+Infinity", Float.POSITIVE_INFINITY);
1422         test("% a", " Infinity", Float.POSITIVE_INFINITY);
1423         test("%A", "INFINITY", Float.POSITIVE_INFINITY);
1424         test("%+A", "+INFINITY", Float.POSITIVE_INFINITY);
1425         test("% A", " INFINITY", Float.POSITIVE_INFINITY);
1426 
1427         //---------------------------------------------------------------------
1428         // %f, %e, %g, %a - -Infinity
1429         //---------------------------------------------------------------------
1430         test("%f", "-Infinity", Float.NEGATIVE_INFINITY);
1431         test("%+f", "-Infinity", Float.NEGATIVE_INFINITY);
1432         test("%(f", "(Infinity)", Float.NEGATIVE_INFINITY);
1433 //      test("%F", "-INFINITY", Float.NEGATIVE_INFINITY);
1434         test("%e", "-Infinity", Float.NEGATIVE_INFINITY);
1435         test("%+e", "-Infinity", Float.NEGATIVE_INFINITY);
1436         test("%E", "-INFINITY", Float.NEGATIVE_INFINITY);
1437         test("%+E", "-INFINITY", Float.NEGATIVE_INFINITY);
1438         test("%g", "-Infinity", Float.NEGATIVE_INFINITY);
1439         test("%+g", "-Infinity", Float.NEGATIVE_INFINITY);
1440         test("%G", "-INFINITY", Float.NEGATIVE_INFINITY);
1441         test("%+G", "-INFINITY", Float.NEGATIVE_INFINITY);
1442         test("%a", "-Infinity", Float.NEGATIVE_INFINITY);
1443         test("%+a", "-Infinity", Float.NEGATIVE_INFINITY);
1444         test("%A", "-INFINITY", Float.NEGATIVE_INFINITY);
1445         test("%+A", "-INFINITY", Float.NEGATIVE_INFINITY);
1446 
1447         //---------------------------------------------------------------------
1448         // %f, %e, %g, %a - Float.MIN_VALUE
1449         //---------------------------------------------------------------------
1450         test("%f", "0.000000", Float.MIN_VALUE);
1451         test("%,f", "0.000000", Float.MIN_VALUE);
1452         test("%(f", "(0.000000)", -Float.MIN_VALUE);
1453         test("%30.0f",  "                             0", Float.MIN_VALUE);
1454         test("%30.5f",  "                       0.00000", Float.MIN_VALUE);
1455         test("%30.13f", "               0.0000000000000", Float.MIN_VALUE);
1456         test("%30.20f", "        0.00000000000000000000", Float.MIN_VALUE);
1457         test("%e", "1.401298e-45", Float.MIN_VALUE);
1458         test("%E", "1.401298E-45", Float.MIN_VALUE);
1459         test("%(.1e", "1.4e-45", Float.MIN_VALUE);
1460         test("%(E", "(1.401298E-45)", -Float.MIN_VALUE);
1461         test("%30.5e",  "                   1.40130e-45", Float.MIN_VALUE);
1462         test("%30.13e", "           1.4012984643248e-45", Float.MIN_VALUE);
1463         test("%30.20e", "    1.40129846432481700000e-45", Float.MIN_VALUE);
1464         test("%g", "1.40130e-45", Float.MIN_VALUE);
1465         test("%G", "1.40130E-45", Float.MIN_VALUE);
1466         test("%(g", "1.40130e-45", Float.MIN_VALUE);
1467         test("%,g", "1.40130e-45", Float.MIN_VALUE);
1468         test("%(G", "(1.40130E-45)", -Float.MIN_VALUE);
1469         test("%30.5g",  "                    1.4013e-45", Float.MIN_VALUE);
1470         test("%30.13g", "            1.401298464325e-45", Float.MIN_VALUE);
1471         test("%30.20g", "     1.4012984643248170000e-45", Float.MIN_VALUE);
1472         test("%a", "0x1.0p-149", Float.MIN_VALUE);
1473         test("%A", "0X1.0P-149", Float.MIN_VALUE);
1474         test("%20a", "          0x1.0p-149", Float.MIN_VALUE);
1475 
1476         //---------------------------------------------------------------------
1477         // %f, %e, %g, %a - Float.MAX_VALUE
1478         //---------------------------------------------------------------------
1479         test("%f", "340282346638528860000000000000000000000.000000", Float.MAX_VALUE);
1480         test("%,f","340,282,346,638,528,860,000,000,000,000,000,000,000.000000",
1481              Float.MAX_VALUE);
1482         test("%(f", "(340282346638528860000000000000000000000.000000)", -Float.MAX_VALUE);
1483         test("%60.5f",  "               340282346638528860000000000000000000000.00000",
1484              Float.MAX_VALUE);
1485         test("%60.13f", "       340282346638528860000000000000000000000.0000000000000",
1486              Float.MAX_VALUE);
1487         test("%61.20f", " 340282346638528860000000000000000000000.00000000000000000000",
1488              Float.MAX_VALUE);
1489         test("%e", "3.402823e+38", Float.MAX_VALUE);
1490         test("%E", "3.402823E+38", Float.MAX_VALUE);
1491         test("%(e", "3.402823e+38", Float.MAX_VALUE);
1492         test("%(e", "(3.402823e+38)", -Float.MAX_VALUE);
1493         test("%30.5e",  "                   3.40282e+38", Float.MAX_VALUE);
1494         test("%30.13e", "           3.4028234663853e+38", Float.MAX_VALUE);
1495         test("%30.20e", "    3.40282346638528860000e+38", Float.MAX_VALUE);
1496         test("%g", "3.40282e+38", Float.MAX_VALUE);
1497         test("%G", "3.40282E+38", Float.MAX_VALUE);
1498         test("%,g", "3.40282e+38", Float.MAX_VALUE);
1499         test("%(g", "(3.40282e+38)", -Float.MAX_VALUE);
1500         test("%30.5g",  "                    3.4028e+38", Float.MAX_VALUE);
1501         test("%30.13g", "            3.402823466385e+38", Float.MAX_VALUE);
1502         test("%30.20G", "     3.4028234663852886000E+38", Float.MAX_VALUE);
1503         test("%a", "0x1.fffffep127", Float.MAX_VALUE);
1504         test("%A", "0X1.FFFFFEP127", Float.MAX_VALUE);
1505         test("%20a","      0x1.fffffep127", Float.MAX_VALUE);
1506 
1507 #end[float]
1508 
1509 #if[double]
1510         //---------------------------------------------------------------------
1511         // %f, %e, %g, %a - Double.MIN_VALUE
1512         //---------------------------------------------------------------------
1513         test("%f", "0.000000", Double.MIN_VALUE);
1514         test("%,f", "0.000000", Double.MIN_VALUE);
1515         test("%(f", "(0.000000)", -Double.MIN_VALUE);
1516         test("%30.0f",  "                             0", Double.MIN_VALUE);
1517         test("%30.5f",  "                       0.00000", Double.MIN_VALUE);
1518         test("%30.13f", "               0.0000000000000", Double.MIN_VALUE);
1519         test("%30.20f", "        0.00000000000000000000", Double.MIN_VALUE);
1520         test("%30.350f","0.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000490000000000000000000000000",
1521              Double.MIN_VALUE);
1522         test("%e", "4.900000e-324", Double.MIN_VALUE);
1523         test("%E", "4.900000E-324", Double.MIN_VALUE);
1524         test("%(.1e", "4.9e-324", Double.MIN_VALUE);
1525         test("%(E", "(4.900000E-324)", -Double.MIN_VALUE);
1526         test("%30.5e",  "                  4.90000e-324", Double.MIN_VALUE);
1527         test("%30.13e", "          4.9000000000000e-324", Double.MIN_VALUE);
1528         test("%30.20e", "   4.90000000000000000000e-324", Double.MIN_VALUE);
1529         test("%g", "4.90000e-324", Double.MIN_VALUE);
1530         test("%G", "4.90000E-324", Double.MIN_VALUE);
1531         test("%(g", "4.90000e-324", Double.MIN_VALUE);
1532         test("%,g", "4.90000e-324", Double.MIN_VALUE);
1533         test("%30.5g",  "                   4.9000e-324", Double.MIN_VALUE);
1534         test("%30.13g", "           4.900000000000e-324", Double.MIN_VALUE);
1535         test("%30.20g", "    4.9000000000000000000e-324", Double.MIN_VALUE);
1536         test("%a", "0x0.0000000000001p-1022", Double.MIN_VALUE);
1537         test("%A", "0X0.0000000000001P-1022", Double.MIN_VALUE);
1538         test("%30a",    "       0x0.0000000000001p-1022", Double.MIN_VALUE);
1539 
1540         //---------------------------------------------------------------------
1541         // %f, %e, %g, %a - Double.MAX_VALUE
1542         //---------------------------------------------------------------------
1543         test("%f", "179769313486231570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000.000000",
1544              Double.MAX_VALUE);
1545         test("%,f", "179,769,313,486,231,570,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000.000000",
1546              Double.MAX_VALUE);
1547         test("%,(f", "(179,769,313,486,231,570,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000.000000)",
1548              -Double.MAX_VALUE);
1549         test("%,30.5f", "179,769,313,486,231,570,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000,000.00000",
1550              Double.MAX_VALUE);
1551         test("%30.13f", "179769313486231570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000.0000000000000",
1552              Double.MAX_VALUE);
1553         test("%30.20f", "179769313486231570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000.00000000000000000000",
1554              Double.MAX_VALUE);
1555         test("%e", "1.797693e+308", Double.MAX_VALUE);
1556         test("%E", "1.797693E+308", Double.MAX_VALUE);
1557         test("%(e", "1.797693e+308", Double.MAX_VALUE);
1558         test("%(e", "(1.797693e+308)", -Double.MAX_VALUE);
1559         test("%30.5e",  "                  1.79769e+308", Double.MAX_VALUE);
1560         test("%30.13e", "          1.7976931348623e+308", Double.MAX_VALUE);
1561         test("%30.20e", "   1.79769313486231570000e+308", Double.MAX_VALUE);
1562         test("%g", "1.79769e+308", Double.MAX_VALUE);
1563         test("%G", "1.79769E+308", Double.MAX_VALUE);
1564         test("%,g", "1.79769e+308", Double.MAX_VALUE);
1565         test("%(g", "(1.79769e+308)", -Double.MAX_VALUE);
1566         test("%30.5g",  "                   1.7977e+308", Double.MAX_VALUE);
1567         test("%30.13g", "           1.797693134862e+308", Double.MAX_VALUE);
1568         test("%30.20g", "    1.7976931348623157000e+308", Double.MAX_VALUE);
1569         test("%a", "0x1.fffffffffffffp1023", Double.MAX_VALUE);
1570         test("%A", "0X1.FFFFFFFFFFFFFP1023", Double.MAX_VALUE);
1571         test("%30a",    "        0x1.fffffffffffffp1023", Double.MAX_VALUE);
1572 #end[double]
1573 
1574 #end[fp]
1575 
1576         //---------------------------------------------------------------------
1577         // %t
1578         //
1579         // Date/Time conversions applicable to Calendar, Date, and long.
1580         //---------------------------------------------------------------------
1581         test("%tA", "null", (Object)null);
1582         test("%TA", "NULL", (Object)null);
1583 
1584         //---------------------------------------------------------------------
1585         // %t - errors
1586         //---------------------------------------------------------------------
1587         tryCatch("%t", UnknownFormatConversionException.class);
1588         tryCatch("%T", UnknownFormatConversionException.class);
1589         tryCatch("%tP", UnknownFormatConversionException.class);
1590         tryCatch("%TP", UnknownFormatConversionException.class);
1591         tryCatch("%.5tB", IllegalFormatPrecisionException.class);
1592         tryCatch("%#tB", FormatFlagsConversionMismatchException.class);
1593         tryCatch("%-tB", MissingFormatWidthException.class);
1594 
1595 #if[datetime]
1596         //---------------------------------------------------------------------
1597         // %t - create test Calendar
1598         //---------------------------------------------------------------------
1599 
1600         // Get the supported ids for GMT-08:00 (Pacific Standard Time)
1601         String[] ids = TimeZone.getAvailableIDs(-8 * 60 * 60 * 1000);
1602         // Create a Pacific Standard Time time zone
1603         SimpleTimeZone tz = new SimpleTimeZone(-8 * 60 * 60 * 1000, ids[0]);
1604         // public GregorianCalendar(TimeZone zone, Locale aLocale);
1605         Calendar c0 = new GregorianCalendar(tz, Locale.US);
1606         // public final void set(int year, int month, int date,
1607         //     int hourOfDay, int minute, int second);
1608         c0.set(1995, MAY, 23, 19, 48, 34);
1609         c0.set(Calendar.MILLISECOND, 584);
1610 
1611         //---------------------------------------------------------------------
1612         // %t - Minutes, {nano,milli}*seconds
1613         //
1614         // testDateTime() verifies the expected output for all applicable types
1615         // (Calendar, Date, and long).  It also verifies output for "%t" and
1616         // "%T". Thus it is sufficient to invoke that method once per
1617         // conversion/expected output.
1618         //---------------------------------------------------------------------
1619         testDateTime("%tM", "48", c0);
1620         testDateTime("%tN", "584000000", c0);
1621         testDateTime("%tL", "584", c0);
1622 //      testDateTime("%tQ", "801283714584", c0);
1623 
1624         testDateTime("%ts", String.valueOf(c0.getTimeInMillis() / 1000), c0);
1625         testDateTime("%tS", "34", c0);
1626         testDateTime("%tT", "19:48:34", c0);
1627 
1628         //---------------------------------------------------------------------
1629         // %t - Hours, morning/afternoon markers
1630         //
1631         // testHours() iterates through all twenty-four hours to verify
1632         // numeric return value and morning/afternoon markers.
1633         //---------------------------------------------------------------------
1634         testHours();
1635 
1636         //---------------------------------------------------------------------
1637         // %t - Portions of date [ day, month, dates, weeks ]
1638         //---------------------------------------------------------------------
1639         testDateTime("%ta", "Tue", c0);
1640         testDateTime("%tA", "Tuesday", c0);
1641         testDateTime("%tb", "May", c0);
1642         testDateTime("%tB", "May", c0);
1643         testDateTime("%tC", "19", c0);
1644         testDateTime("%td", "23", c0);
1645         testDateTime("%te", "23", c0);
1646         testDateTime("%th", "May", c0);
1647         testDateTime("%tj", "143", c0);
1648         testDateTime("%tm", "05", c0);
1649         testDateTime("%ty", "95", c0);
1650         testDateTime("%tY", "1995", c0);
1651 
1652         //---------------------------------------------------------------------
1653         // %t - TimeZone
1654         //---------------------------------------------------------------------
1655         testDateTime("%tz", "-0800", c0);
1656         testDateTime("%tZ", "PST", c0);
1657 
1658         //---------------------------------------------------------------------
1659         // %tz should always adjust for DST
1660         //---------------------------------------------------------------------
1661         TimeZone dtz = TimeZone.getDefault();
1662 
1663         // Artificial TimeZone based on PST with 3:15 DST always in effect
1664         TimeZone atz = new SimpleTimeZone(-8 * 60 * 60 * 1000, "AlwaysDST",
1665             JANUARY, 1, 0, 0, STANDARD_TIME,
1666             // 24hrs - 1m = 60 * 60 * 1000 * 24 - 1
1667             DECEMBER, 31, 0, 60 * 60 * 1000 * 24 - 1, STANDARD_TIME,
1668             (int)(60 * 60 * 1000 * 3.25));
1669         TimeZone.setDefault(atz);
1670         testDateTime("%tz", "-0445", Calendar.getInstance(atz));
1671 
1672         // Restore the TimeZone and verify
1673         TimeZone.setDefault(dtz);
1674         if (atz.hasSameRules(TimeZone.getDefault()))
1675             throw new RuntimeException("Default TimeZone not restored");
1676 
1677         //---------------------------------------------------------------------
1678         // %t - Composites
1679         //---------------------------------------------------------------------
1680         testDateTime("%tr", "07:48:34 PM", c0);
1681         testDateTime("%tR", "19:48", c0);
1682         testDateTime("%tc", "Tue May 23 19:48:34 PST 1995", c0);
1683         testDateTime("%tD", "05/23/95", c0);
1684         testDateTime("%tF", "1995-05-23", c0);
1685         testDateTime("%-12tF", "1995-05-23  ", c0);
1686         testDateTime("%12tF", "  1995-05-23", c0);
1687 #end[datetime]
1688 
1689         //---------------------------------------------------------------------
1690         // %n
1691         //---------------------------------------------------------------------
1692         test("%n", System.getProperty("line.separator"), (Object)null);
1693         test("%n", System.getProperty("line.separator"), "");
1694 
1695         tryCatch("%,n", IllegalFormatFlagsException.class);
1696         tryCatch("%.n", UnknownFormatConversionException.class);
1697         tryCatch("%5.n", UnknownFormatConversionException.class);
1698         tryCatch("%5n", IllegalFormatWidthException.class);
1699         tryCatch("%.7n", IllegalFormatPrecisionException.class);
1700         tryCatch("%<n", IllegalFormatFlagsException.class);
1701 
1702         //---------------------------------------------------------------------
1703         // %%
1704         //---------------------------------------------------------------------
1705         test("%%", "%", (Object)null);
1706         test("%%", "%", "");
1707         tryCatch("%%%", UnknownFormatConversionException.class);
1708         // perhaps an IllegalFormatArgumentIndexException should be defined?
1709         tryCatch("%<%", IllegalFormatFlagsException.class);
1710     }
1711 }