I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
DeliveryInstructionsTest.java 1.63 KiB
Newer Older
jrandom's avatar
jrandom committed
package net.i2p.data.i2np;
/*
 * free (adj.): unencumbered; not under the control of others
 * Written by jrandom in 2003 and released into the public domain 
 * with no warranty of any kind, either expressed or implied.  
 * It probably won't make your computer catch on fire, or eat 
 * your children, but it might.  Use at your own risk.
 *
 */

import net.i2p.data.DataFormatException;
import net.i2p.data.DataStructure;
import net.i2p.data.Hash;
import net.i2p.data.SessionKey;
jrandom's avatar
jrandom committed
import net.i2p.data.StructureTest;
import net.i2p.data.TunnelId;

/**
 * Test harness for loading / storing DeliveryInstructions objects
 *
 * @author jrandom
 */
comwiz's avatar
comwiz committed
public class DeliveryInstructionsTest extends StructureTest {
    public DataStructure createDataStructure() throws DataFormatException {
        DeliveryInstructions instructions = new DeliveryInstructions();
comwiz's avatar
comwiz committed
		instructions.setDelayRequested(true);
		instructions.setDelaySeconds(42);
		instructions.setDeliveryMode(DeliveryInstructions.DELIVERY_MODE_TUNNEL);
		instructions.setEncrypted(true);
		SessionKey key = new SessionKey();
		byte keyData[] = new byte[SessionKey.KEYSIZE_BYTES];
		for (int i = 0; i < keyData.length; i++) 
		    keyData[i] = (byte)i;
		key.setData(keyData);
		instructions.setEncryptionKey(key);
		Hash hash = new Hash();
		byte hashData[] = new byte[32];
		for (int i = 0; i < hashData.length; i++)
		    hashData[i] = (byte)(i%32);
		hash.setData(hashData);
		instructions.setRouter(hash);
		TunnelId id = new TunnelId();
		id.setTunnelId(666);
		instructions.setTunnelId(id);
		
		return instructions;
    }
    public DataStructure createStructureToRead() { return new DeliveryInstructions(); }
}