📄 testsanitychecker.java
字号:
/* ==================================================================== Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.==================================================================== */ package org.apache.poi.hssf.usermodel;import junit.framework.TestCase;import junit.framework.AssertionFailedError;import java.util.List;import java.util.ArrayList;import org.apache.poi.hssf.record.*;/** * Okay, this may seem strange but I need to test my test logic. * * @author Glen Stampoultzis (glens at apache.org) */public class TestSanityChecker extends TestCase{ public TestSanityChecker( String s ) { super( s ); } public void testCheckRecordOrder() throws Exception { final SanityChecker c = new SanityChecker(); List records = new ArrayList(); records.add(new BOFRecord()); records.add(new InterfaceHdrRecord()); records.add(new BoundSheetRecord()); records.add(new EOFRecord()); final SanityChecker.CheckRecord[] check = { new SanityChecker.CheckRecord(BOFRecord.class, '1'), new SanityChecker.CheckRecord(InterfaceHdrRecord.class, '0'), new SanityChecker.CheckRecord(BoundSheetRecord.class, 'M'), new SanityChecker.CheckRecord(NameRecord.class, '*'), new SanityChecker.CheckRecord(EOFRecord.class, '1'), }; // check pass c.checkRecordOrder(records, check); records.add(2, new BoundSheetRecord()); c.checkRecordOrder(records, check); records.remove(1); // optional record missing c.checkRecordOrder(records, check); records.add(3, new NameRecord()); records.add(3, new NameRecord()); // optional multiple record occurs more than one time c.checkRecordOrder(records, check); // check fail expectFail( new Runnable() { public void run() { // check optional in wrong spot List records = new ArrayList(); records.add(new BOFRecord()); records.add(new BoundSheetRecord()); records.add(new InterfaceHdrRecord()); records.add(new EOFRecord()); c.checkRecordOrder(records, check); } }); expectFail( new Runnable() { public void run() { // check optional one off occurs more than once List records = new ArrayList(); records.add(new BOFRecord()); records.add(new InterfaceHdrRecord()); records.add(new BoundSheetRecord()); records.add(new InterfaceHdrRecord()); records.add(new EOFRecord()); c.checkRecordOrder(records, check); } }); expectFail( new Runnable() { public void run() { // check many scattered List records = new ArrayList(); records.add(new BOFRecord()); records.add(new BoundSheetRecord()); records.add(new NameRecord()); records.add(new EOFRecord()); records.add(new NameRecord()); c.checkRecordOrder(records, check); } }); expectFail( new Runnable() { public void run() { // check missing manditory List records = new ArrayList(); records.add(new InterfaceHdrRecord()); records.add(new BoundSheetRecord()); records.add(new EOFRecord()); c.checkRecordOrder(records, check); } }); expectFail( new Runnable() { public void run() { // check missing 1..many List records = new ArrayList(); records.add(new BOFRecord()); records.add(new InterfaceHdrRecord()); records.add(new EOFRecord()); c.checkRecordOrder(records, check); } }); expectFail( new Runnable() { public void run() { // check wrong order List records = new ArrayList(); records.add(new InterfaceHdrRecord()); records.add(new BoundSheetRecord()); records.add(new BOFRecord()); records.add(new EOFRecord()); c.checkRecordOrder(records, check); } }); expectFail( new Runnable() { public void run() { // check optional record in wrong order List records = new ArrayList(); records.add(new BOFRecord()); records.add(new BoundSheetRecord()); records.add(new InterfaceHdrRecord()); records.add(new EOFRecord()); c.checkRecordOrder(records, check); } }); } private void expectFail( Runnable runnable ) { boolean fail = false; try { runnable.run(); fail = true; } catch (AssertionFailedError pass) { } assertTrue(!fail); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -