/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package javax.mail.internet;
import java.io.*;
import java.util.*;
import javax.mail.internet.MimeUtility;
import org.junit.Test;
import org.junit.Assert;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
/**
* Test header folding.
*
* @author Bill Shannon
*/
@RunWith(Parameterized.class)
public class FoldTest {
private String direction;
private String orig;
private String expect;
private static List<Object[]> testData;
public FoldTest(String direction, String orig, String expect) {
this.direction = direction;
this.orig = orig;
this.expect = expect;
}
@Parameters
public static Collection<Object[]> data() throws IOException {
testData = new ArrayList<Object[]>();
parse(new BufferedReader(new InputStreamReader(
FoldTest.class.getResourceAsStream("folddata"))));
return testData;
}
/**
* Read the data from the test file. Format is multiple of any of
* the following:
*
* FOLD\nString$\nEXPECT\nString$\n
* UNFOLD\nString$\nEXPECT\nString$\n
* BOTH\nString$\n
*/
private static void parse(BufferedReader in) throws IOException {
String line;
while ((line = in.readLine()) != null) {
if (line.startsWith("#") || line.length() == 0)
continue;
String orig = readString(in);
if (line.equals("BOTH")) {
testData.add(new Object[] { line, orig, null });
} else {
String e = in.readLine();
if (!e.equals("EXPECT"))
throw new IOException("TEST DATA FORMAT ERROR");
String expect = readString(in);
testData.add(new Object[] { line, orig, expect });
}
}
}
/**
* Read a string that ends with '$', preserving all characters,
* especially including CR and LF.
*/
private static String readString(BufferedReader in) throws IOException {
StringBuffer sb = new StringBuffer();
int c;
while ((c = in.read()) != '$')
sb.append((char)c);
in.readLine(); // throw away rest of line
return sb.toString();
}
@Test
public void testFold() {
if (direction.equals("BOTH")) {
String fs = MimeUtility.fold(0, orig);
String us = MimeUtility.unfold(fs);
Assert.assertEquals(orig, us);
} else if (direction.equals("FOLD")) {
Assert.assertEquals("Fold", expect, MimeUtility.fold(0, orig));
} else if (direction.equals("UNFOLD")) {
Assert.assertEquals("Unfold", expect, MimeUtility.unfold(orig));
} else {
Assert.fail("Unknown direction: " + direction);
}
}
}