KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > james > mailboxmanager > util > UidToKeyConverterTest


1 /****************************************************************
2  * Licensed to the Apache Software Foundation (ASF) under one *
3  * or more contributor license agreements. See the NOTICE file *
4  * distributed with this work for additional information *
5  * regarding copyright ownership. The ASF licenses this file *
6  * to you under the Apache License, Version 2.0 (the *
7  * "License"); you may not use this file except in compliance *
8  * with the License. You may obtain a copy of the License at *
9  * *
10  * http://www.apache.org/licenses/LICENSE-2.0 *
11  * *
12  * Unless required by applicable law or agreed to in writing, *
13  * software distributed under the License is distributed on an *
14  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY *
15  * KIND, either express or implied. See the License for the *
16  * specific language governing permissions and limitations *
17  * under the License. *
18  ****************************************************************/

19
20 package org.apache.james.mailboxmanager.util;
21
22 import junit.framework.TestCase;
23
24 public class UidToKeyConverterTest extends TestCase {
25     
26     UidToKeyConverterImpl uidToKeyConverterImpl;
27     
28     long uidValidity=123;
29     
30     public void setUp(){
31         uidToKeyConverterImpl=new UidToKeyConverterImpl();
32         uidToKeyConverterImpl.setUidValidity(uidValidity);
33     }
34
35     
36     public void testUidToKey() {
37         assertEquals("JAMES-UID-KEY-(345;123)",uidToKeyConverterImpl.toKey(345));
38     }
39     
40     public void testKeyToUidValid() {
41         assertEquals(new Long JavaDoc(3454),uidToKeyConverterImpl.toUid("JAMES-UID-KEY-(3454;123)"));
42         uidToKeyConverterImpl.setUidValidity(1);
43         assertEquals(new Long JavaDoc(2),uidToKeyConverterImpl.toUid("JAMES-UID-KEY-(2;1)"));
44     }
45     
46     public void testKeyToUidWrongUidValidity() {
47         assertNull(uidToKeyConverterImpl.toUid("JAMES-UID-KEY-(3454;1234)"));
48     }
49     
50     public void testKeyToUidWrongFormat() {
51         assertNull(uidToKeyConverterImpl.toUid(null));
52         assertNull(uidToKeyConverterImpl.toUid(""));
53         assertNull(uidToKeyConverterImpl.toUid("JMES-UID-KEY-("));
54         assertNull(uidToKeyConverterImpl.toUid("JAMES-UID-KEY-(;123)"));
55         assertNull(uidToKeyConverterImpl.toUid("JAMES-UID-KEY-(3454;)"));
56         assertNull(uidToKeyConverterImpl.toUid("JAMES-UID-KEY-(3454;123"));
57         assertNull(uidToKeyConverterImpl.toUid("JAMES-UID-KEY-(345d4;123)"));
58         assertNull(uidToKeyConverterImpl.toUid("JAMES-UID-KEY-(34;54;123)"));
59         
60     }
61     
62     
63 }
64
Popular Tags