Java tutorial
//********************************************************************************************************************* // DNP3PacketReassemblyTest.java // // Copyright 2014 ELECTRIC POWER RESEARCH INSTITUTE, INC. All rights reserved. // // PT2 ("this software") is licensed under BSD 3-Clause license. // // Redistribution and use in source and binary forms, with or without modification, are permitted provided that the // following conditions are met: // // Redistributions of source code must retain the above copyright notice, this list of conditions and // the following disclaimer. // // Redistributions in binary form must reproduce the above copyright notice, this list of conditions and // the following disclaimer in the documentation and/or other materials provided with the distribution. // // Neither the name of the Electric Power Research Institute, Inc. (EPRI?) nor the names of its contributors // may be used to endorse or promote products derived from this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, // INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE // DISCLAIMED. IN NO EVENT SHALL EPRI BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE // POSSIBILITY OF SUCH DAMAGE. // // //********************************************************************************************************************* // // Code Modification History: // ------------------------------------------------------------------------------------------------------------------- // 11/20/2012 - Tam T. Do, Southwest Research Institute (SwRI) // Generated original version of source code. // 10/22/2014 - Tam T. Do, Southwest Research Institute (SwRI) // Added DNP3 software capabilities. //********************************************************************************************************************* // package org.epri.pt2; import java.io.File; import org.epri.pt2.DO.DNP3ApplicationPacketDO; import org.apache.commons.io.*; import junit.framework.TestCase; public class DNP3PacketReassemblyTest extends TestCase { File dnp3File; byte[] appData; byte[] packetData; DNP3ApplicationPacketDO dnp3AppPacket; protected void setUp() throws Exception { dnp3File = new File(ClassLoader.getSystemClassLoader().getResource("packets/81_byte_packet.bin").getPath()); appData = FileUtils.readFileToByteArray(dnp3File); dnp3AppPacket = new DNP3ApplicationPacketDO(); dnp3AppPacket.setData(appData); packetData = dnp3AppPacket.updatePacket(); dnp3AppPacket.initialize(); dnp3AppPacket.addData(packetData); } public void testIsValid() { //assertEquals(true, dnp3AppPacket.isAppPacket()); } public void testIsValidPacket() { //assertEquals(true, packetData.length > 1077); } public void testPacketLength() { //assertEquals(1077, dnp3AppPacket.getData().length); } // public void testReassembly() { // // } }