KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > james > experimental > imapserver > ExperimentalAuthenticatedStateTest


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.experimental.imapserver;
21
22 import org.apache.james.test.functional.imap.AbstractAuthenticatedStateTestSuite;
23
24 public class ExperimentalAuthenticatedStateTest extends AbstractAuthenticatedStateTestSuite {
25     public ExperimentalAuthenticatedStateTest() throws Exception JavaDoc {
26         super(HostSystemFactory.createStandardImap());
27     }
28     
29     public void testStatus() throws Exception JavaDoc {
30         // TODO: fix bug - recent flag not set
31
}
32     
33     public void testSubscribe() throws Exception JavaDoc {
34         // TODO: user is automatically subscribed to INBOX.
35
// Check whether this is correct behaviour
36
}
37     
38     public void testExamineEmpty() throws Exception JavaDoc {
39         // TODO: \recent flag is returned by FLAGS - specification seems ambiguous on this
40
}
41     
42     public void testSelectEmpty() throws Exception JavaDoc {
43 // TODO: \recent flag is returned by FLAGS - specification seems ambiguous on this
44
}
45     
46     public void testAppendExamineInbox() throws Exception JavaDoc {
47 // TODO: \recent flag is returned by FLAGS - specification seems ambiguous on this
48
}
49     
50     public void testAppendSelectInbox() throws Exception JavaDoc {
51 // TODO: \recent flag is returned by FLAGS - specification seems ambiguous on this
52
}
53     
54     public void testListMailboxes() throws Exception JavaDoc {
55 // TODO: fix bug - complete hierarchy returned
56
}
57
58     public void testSelectAppend() throws Exception JavaDoc {
59 // TODO: \recent flag is returned by FLAGS - specification seems ambiguous on this
60
}
61     
62     public void testAppendExpunge() throws Exception JavaDoc {
63 // TODO: \recent flag is returned by FLAGS - specification seems ambiguous on this
64
}
65     
66     public void testListNamespace() throws Exception JavaDoc {
67         // TODO: root mailbox should be marked as Noselect
68
}
69     
70     
71 }
72
Popular Tags