source: contrib/MailArchiver/sources/vendor/mime4j/custom/dom/src/test/java/org/apache/james/mime4j/field/FieldTest.java @ 6785

Revision 6785, 2.8 KB checked in by rafaelraymundo, 12 years ago (diff)

Ticket #2946 - Liberado codigo do MailArchiver?. Documentação na subpasta DOCS.

Line 
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
20package org.apache.james.mime4j.field;
21
22import org.apache.james.mime4j.MimeException;
23import org.apache.james.mime4j.dom.field.ContentTransferEncodingField;
24import org.apache.james.mime4j.dom.field.ContentTypeField;
25import org.apache.james.mime4j.dom.field.Field;
26import org.apache.james.mime4j.dom.field.UnstructuredField;
27import org.apache.james.mime4j.field.DefaultFieldParser;
28
29import junit.framework.TestCase;
30
31public class FieldTest extends TestCase {
32
33    public void testGetName() throws Exception {
34        Field f = null;
35       
36        f = DefaultFieldParser.parse("Subject: Yada yada yada");
37        assertEquals("Testing simple field", "Subject", f.getName());
38       
39        f = DefaultFieldParser.parse("X-yada-yada: Yada yada yada");
40        assertEquals("Testing an X- field", "X-yada-yada", f.getName());
41       
42        try {
43            f = DefaultFieldParser.parse("Yada yada yada");
44            fail("MimeException not thrown when using an invalid field");
45        } catch (MimeException e) {
46        }
47    }
48
49    public void testParse() throws Exception {
50        Field f = null;
51       
52        f = DefaultFieldParser.parse("Subject: Yada yada yada");
53        assertTrue("Field should be UnstructuredField",
54                        f instanceof UnstructuredField);
55        f = DefaultFieldParser.parse("Content-Type: text/plain");
56        assertTrue("Field should be ContentTypeField",
57                        f instanceof ContentTypeField);
58        f = DefaultFieldParser.parse("Content-Transfer-Encoding: 7bit");
59        assertTrue("Field should be ContentTransferEncodingField",
60                        f instanceof ContentTransferEncodingField);
61    }
62   
63}
Note: See TracBrowser for help on using the repository browser.