< prev index next >

test/javax/xml/jaxp/unittest/datatype/Bug7042647Test.java

Print this page


   1 /*
   2  * Copyright (c) 2014, 2015, 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 package datatype;
  25 
  26 import java.util.Calendar;
  27 import java.util.GregorianCalendar;
  28 
  29 import javax.xml.datatype.DatatypeConfigurationException;
  30 import javax.xml.datatype.DatatypeFactory;
  31 import javax.xml.datatype.XMLGregorianCalendar;
  32 
  33 import org.testng.Assert;

  34 import org.testng.annotations.Test;
  35 
  36 /*
  37  * @bug 7042647
  38  * @summary Test getFirstDayOfWeek is correct after converting XMLGregorianCalendar to a GregorianCalendar.
  39  */

  40 public class Bug7042647Test {
  41 
  42     @Test
  43     public void test() throws DatatypeConfigurationException {
  44         XMLGregorianCalendar xmlCalendar = DatatypeFactory.newInstance().newXMLGregorianCalendar(1970, 1, 1, 0, 0, 0, 0, 0);
  45         GregorianCalendar calendar = xmlCalendar.toGregorianCalendar();
  46         int firstDayOfWeek = calendar.getFirstDayOfWeek();
  47         Calendar defaultCalendar = Calendar.getInstance();
  48         int defaultFirstDayOfWeek = defaultCalendar.getFirstDayOfWeek();
  49         if (firstDayOfWeek != defaultFirstDayOfWeek) {
  50             Assert.fail("Failed firstDayOfWeek=" + firstDayOfWeek + " != defaultFirstDayOfWeek=" + defaultFirstDayOfWeek);
  51         } else {
  52             System.out.println("Success firstDayOfWeek=" + firstDayOfWeek + " == defaultFirstDayOfWeek=" + defaultFirstDayOfWeek);
  53         }
  54     }
  55 
  56 }
   1 /*
   2  * Copyright (c) 2014, 2016, 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 package datatype;
  25 
  26 import java.util.Calendar;
  27 import java.util.GregorianCalendar;
  28 
  29 import javax.xml.datatype.DatatypeConfigurationException;
  30 import javax.xml.datatype.DatatypeFactory;
  31 import javax.xml.datatype.XMLGregorianCalendar;
  32 
  33 import org.testng.Assert;
  34 import org.testng.annotations.Listeners;
  35 import org.testng.annotations.Test;
  36 
  37 /*
  38  * @bug 7042647
  39  * @summary Test getFirstDayOfWeek is correct after converting XMLGregorianCalendar to a GregorianCalendar.
  40  */
  41 @Listeners({jaxp.library.BasePolicy.class})
  42 public class Bug7042647Test {
  43 
  44     @Test
  45     public void test() throws DatatypeConfigurationException {
  46         XMLGregorianCalendar xmlCalendar = DatatypeFactory.newInstance().newXMLGregorianCalendar(1970, 1, 1, 0, 0, 0, 0, 0);
  47         GregorianCalendar calendar = xmlCalendar.toGregorianCalendar();
  48         int firstDayOfWeek = calendar.getFirstDayOfWeek();
  49         Calendar defaultCalendar = Calendar.getInstance();
  50         int defaultFirstDayOfWeek = defaultCalendar.getFirstDayOfWeek();
  51         if (firstDayOfWeek != defaultFirstDayOfWeek) {
  52             Assert.fail("Failed firstDayOfWeek=" + firstDayOfWeek + " != defaultFirstDayOfWeek=" + defaultFirstDayOfWeek);
  53         } else {
  54             System.out.println("Success firstDayOfWeek=" + firstDayOfWeek + " == defaultFirstDayOfWeek=" + defaultFirstDayOfWeek);
  55         }
  56     }
  57 
  58 }
< prev index next >