📄 anvlrecordtest.java
字号:
/* ANVLRecordTest** $Id: ANVLRecordTest.java 4545 2006-08-26 00:33:38Z stack-sf $** Created on July 26, 2006.** Copyright (C) 2006 Internet Archive.** This file is part of the Heritrix web crawler (crawler.archive.org).** Heritrix is free software; you can redistribute it and/or modify* it under the terms of the GNU Lesser Public License as published by* the Free Software Foundation; either version 2.1 of the License, or* any later version.** Heritrix is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU Lesser Public License for more details.** You should have received a copy of the GNU Lesser Public License* along with Heritrix; if not, write to the Free Software* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA*/package org.archive.util.anvl;import java.io.ByteArrayInputStream;import java.io.IOException;import java.io.UnsupportedEncodingException;import java.util.Map;import junit.framework.TestCase;public class ANVLRecordTest extends TestCase { public void testAdd() throws Exception { ANVLRecord am = new ANVLRecord(); am.add(new Element(new Label("entry"))); am.add(new Element(new Label("who"), new Value("Gilbert, W.S. | Sullivan, Arthur"))); am.add(new Element(new Label("what"), new Value("\rThe Yeoman of \rthe guard"))); am.add(new Element(new Label("what"), new Value("The Yeoman of\r\n the guard"))); am.add(new Element(new Label("what"), new Value("The Yeoman of \n\tthe guard"))); am.add(new Element(new Label("what"), new Value("The Yeoman of \r the guard"))); am.add(new Element(new Label("when/created"), new Value("1888"))); System.out.println(am.toString()); Map m = am.asMap(); System.out.println(m.toString()); } public void testEmptyRecord() throws Exception { byte [] b = ANVLRecord.EMPTY_ANVL_RECORD.getUTF8Bytes(); assertEquals(b.length, 2); assertEquals(b[0], '\r'); assertEquals(b[1], '\n'); } public void testFolding() throws Exception { ANVLRecord am = new ANVLRecord(); Exception e = null; try { am.addLabel("Label with \n in it"); } catch (IllegalArgumentException iae) { e = iae; } assertTrue(e != null && e instanceof IllegalArgumentException); am.addLabelValue("label", "value with \n in it"); } public void testParse() throws UnsupportedEncodingException, IOException { String record = " a: b\r\n#c#\r\nc:d\r\n \t\t\r\t\n\te" + "\r\nx:\r\n # z\r\n\r\n"; ANVLRecord r = ANVLRecord.load(new ByteArrayInputStream( record.getBytes("ISO-8859-1"))); System.out.println(r); assertEquals(r.get(0).toString(), "a: b"); record = " a: b\r\n\r\nsdfsdsdfds"; r = ANVLRecord.load(new ByteArrayInputStream( record.getBytes("ISO-8859-1"))); System.out.println(r); record = "x:\r\n # z\r\ny:\r\n\r\n"; r = ANVLRecord.load(new ByteArrayInputStream( record.getBytes("ISO-8859-1"))); System.out.println(r); assertEquals(r.get(0).toString(), "x:"); } public void testExampleParse() throws UnsupportedEncodingException, IOException { final String sample = "entry:\t\t\r\n# first ###draft\r\n" + "who:\tGilbert, W.S. | Sullivan, Arthur\r\n" + "what:\tThe Yeoman of\r\n" + "\t\tthe Guard\r\n" + "when/created:\t 1888\r\n\r\n"; ANVLRecord r = ANVLRecord.load(new ByteArrayInputStream( sample.getBytes("ISO-8859-1"))); System.out.println(r); } public void testPoundLabel() throws UnsupportedEncodingException, IOException { final String sample = "ent#ry:\t\t\r\n# first ###draft\r\n" + "who:\tGilbert, W.S. | Sullivan, Arthur\r\n" + "what:\tThe Yeoman of\r\n" + "\t\tthe Guard\r\n" + "when/created:\t 1888\r\n\r\n"; ANVLRecord r = ANVLRecord.load(sample); System.out.println(r); } public void testNewlineLabel() throws UnsupportedEncodingException, IOException { final String sample = "ent\nry:\t\t\r\n# first ###draft\r\n" + "who:\tGilbert, W.S. | Sullivan, Arthur\r\n" + "what:\tThe Yeoman of\r\n" + "\t\tthe Guard\r\n" + "when/created:\t 1888\r\n\r\n"; IllegalArgumentException iae = null; try { ANVLRecord.load(sample); } catch(IllegalArgumentException e) { iae = e; } assertTrue(iae != null); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -