< prev index next >

test/sun/security/krb5/ccache/TimeInCCache.java

Print this page




   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  * @test
  25  * @bug 6590930


  26  * @run main/othervm TimeInCCache
  27  * @summary read/write does not match for ccache
  28  */
  29 
  30 import java.io.ByteArrayInputStream;
  31 import java.lang.reflect.Method;
  32 
  33 import sun.security.krb5.internal.ccache.CCacheInputStream;
  34 import sun.security.krb5.internal.ccache.Credentials;
  35 
  36 public class TimeInCCache {
  37     // Attention: this field is also used by 2 other tests:
  38     // CorruptedCC.java and EmptyRealmCC.java
  39     public static byte[] ccache;
  40 
  41     static {
  42         // A trivial cache file, with startdate and renewTill being zero.
  43         // The endtime is set to sometime in year 2022, so that isValid()
  44         // will always check starttime.
  45         String var =




   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  * @test
  25  * @bug 6590930
  26  * @modules java.security.jgss/sun.security.krb5
  27  *          java.security.jgss/sun.security.krb5.internal.ccache
  28  * @run main/othervm TimeInCCache
  29  * @summary read/write does not match for ccache
  30  */
  31 
  32 import java.io.ByteArrayInputStream;
  33 import java.lang.reflect.Method;
  34 
  35 import sun.security.krb5.internal.ccache.CCacheInputStream;
  36 import sun.security.krb5.internal.ccache.Credentials;
  37 
  38 public class TimeInCCache {
  39     // Attention: this field is also used by 2 other tests:
  40     // CorruptedCC.java and EmptyRealmCC.java
  41     public static byte[] ccache;
  42 
  43     static {
  44         // A trivial cache file, with startdate and renewTill being zero.
  45         // The endtime is set to sometime in year 2022, so that isValid()
  46         // will always check starttime.
  47         String var =


< prev index next >