Search in sources :

Example 6 with MappingValue

use of org.onosproject.mapping.MappingValue in project onos by opennetworkinglab.

the class MappingEntryCodecTest method testMappingEntryEncode.

/**
 * Tests encoding of a mapping entry object.
 */
@Test
public void testMappingEntryEncode() {
    MappingAddress address = MappingAddresses.ipv4MappingAddress(IPV4_PREFIX);
    MappingInstruction unicastWeight = MappingInstructions.unicastWeight(UNICAST_WEIGHT);
    MappingInstruction unicastPriority = MappingInstructions.unicastPriority(UNICAST_PRIORITY);
    MappingInstruction multicastWeight = MappingInstructions.multicastWeight(MULTICAST_WEIGHT);
    MappingInstruction multicastPriority = MappingInstructions.multicastPriority(MULTICAST_PRIORITY);
    MappingKey key = DefaultMappingKey.builder().withAddress(address).build();
    MappingTreatment treatment = DefaultMappingTreatment.builder().add(unicastWeight).add(unicastPriority).add(multicastWeight).add(multicastPriority).withAddress(address).build();
    MappingAction action = MappingActions.noAction();
    MappingValue value = DefaultMappingValue.builder().add(treatment).withAction(action).build();
    Mapping mapping = DefaultMapping.builder().withId(ID).forDevice(DEVICE_ID).withKey(key).withValue(value).build();
    MappingEntry entry = new DefaultMappingEntry(mapping, STATE);
    ObjectNode entryJson = entryCodec.encode(entry, context);
    assertThat(entryJson, MappingEntryJsonMatcher.matchesMappingEntry(entry));
}
Also used : MappingEntry(org.onosproject.mapping.MappingEntry) DefaultMappingEntry(org.onosproject.mapping.DefaultMappingEntry) MappingAddress(org.onosproject.mapping.addresses.MappingAddress) ObjectNode(com.fasterxml.jackson.databind.node.ObjectNode) MappingAction(org.onosproject.mapping.actions.MappingAction) DefaultMapping(org.onosproject.mapping.DefaultMapping) Mapping(org.onosproject.mapping.Mapping) DefaultMappingEntry(org.onosproject.mapping.DefaultMappingEntry) DefaultMappingKey(org.onosproject.mapping.DefaultMappingKey) MappingKey(org.onosproject.mapping.MappingKey) MappingTreatment(org.onosproject.mapping.MappingTreatment) DefaultMappingTreatment(org.onosproject.mapping.DefaultMappingTreatment) DefaultMappingValue(org.onosproject.mapping.DefaultMappingValue) MappingValue(org.onosproject.mapping.MappingValue) MappingInstruction(org.onosproject.mapping.instructions.MappingInstruction) Test(org.junit.Test)

Example 7 with MappingValue

use of org.onosproject.mapping.MappingValue in project onos by opennetworkinglab.

the class DistributedMappingStoreTest method setUp.

/**
 * Sets up the storage service test harness.
 */
@Before
public void setUp() {
    mappingStore = new DistributedMappingStore();
    mappingStore.storageService = new TestStorageService();
    mappingStore.deviceService = new InternalDeviceServiceAdapter();
    mappingStore.setDelegate(event -> {
    });
    IpPrefix ipPrefix = IpPrefix.valueOf(IP_ADDRESS);
    MappingAddress address = MappingAddresses.ipv4MappingAddress(ipPrefix);
    MappingKey key = DefaultMappingKey.builder().withAddress(address).build();
    MappingAction action = MappingActions.noAction();
    MappingTreatment treatment = DefaultMappingTreatment.builder().withAddress(address).setUnicastPriority(10).setUnicastWeight(10).build();
    MappingValue value = DefaultMappingValue.builder().withAction(action).add(treatment).build();
    device1 = new MockDevice(ProviderId.NONE, DEVICE_ID_1, Device.Type.OTHER, "foo.inc", "0", "0", "0", null, DefaultAnnotations.builder().build());
    device2 = new MockDevice(ProviderId.NONE, DEVICE_ID_2, Device.Type.OTHER, "foo.inc", "0", "0", "0", null, DefaultAnnotations.builder().build());
    Mapping originalMapping1 = DefaultMapping.builder().forDevice(DEVICE_ID_1).withId(1000L).withKey(key).withValue(value).build();
    Mapping originalMapping2 = DefaultMapping.builder().forDevice(DEVICE_ID_2).withId(2000L).withKey(key).withValue(value).build();
    mapping1 = new DefaultMappingEntry(originalMapping1);
    mapping2 = new DefaultMappingEntry(originalMapping2);
    mappingStore.activate();
}
Also used : IpPrefix(org.onlab.packet.IpPrefix) MappingAddress(org.onosproject.mapping.addresses.MappingAddress) MappingAction(org.onosproject.mapping.actions.MappingAction) TestStorageService(org.onosproject.store.service.TestStorageService) DefaultMapping(org.onosproject.mapping.DefaultMapping) Mapping(org.onosproject.mapping.Mapping) DefaultMappingEntry(org.onosproject.mapping.DefaultMappingEntry) DefaultMappingKey(org.onosproject.mapping.DefaultMappingKey) MappingKey(org.onosproject.mapping.MappingKey) MappingTreatment(org.onosproject.mapping.MappingTreatment) DefaultMappingTreatment(org.onosproject.mapping.DefaultMappingTreatment) DefaultMappingValue(org.onosproject.mapping.DefaultMappingValue) MappingValue(org.onosproject.mapping.MappingValue) Before(org.junit.Before)

Example 8 with MappingValue

use of org.onosproject.mapping.MappingValue in project onos by opennetworkinglab.

the class MappingValueCodecTest method testMappingValueDecode.

/**
 * Tests decoding of a mapping value JSON object.
 */
@Test
public void testMappingValueDecode() throws IOException {
    MappingValue value = getValue("MappingValue.json");
    assertThat(value.treatments().get(0).address().toString(), is("IPV4:" + IPV4_STRING + "/" + PORT_STRING));
}
Also used : DefaultMappingValue(org.onosproject.mapping.DefaultMappingValue) MappingValue(org.onosproject.mapping.MappingValue) Test(org.junit.Test)

Example 9 with MappingValue

use of org.onosproject.mapping.MappingValue in project onos by opennetworkinglab.

the class MappingEntryCodec method encode.

@Override
public ObjectNode encode(MappingEntry mappingEntry, CodecContext context) {
    checkNotNull(mappingEntry, "Mapping entry cannot be null");
    final ObjectNode result = context.mapper().createObjectNode().put(ID, Long.toString(mappingEntry.id().value())).put(DEVICE_ID, mappingEntry.deviceId().toString()).put(STATE, mappingEntry.state().toString());
    if (mappingEntry.key() != null) {
        final JsonCodec<MappingKey> keyCodec = context.codec(MappingKey.class);
        result.set(KEY, keyCodec.encode(mappingEntry.key(), context));
    }
    if (mappingEntry.value() != null) {
        final JsonCodec<MappingValue> valueCodec = context.codec(MappingValue.class);
        result.set(VALUE, valueCodec.encode(mappingEntry.value(), context));
    }
    return result;
}
Also used : ObjectNode(com.fasterxml.jackson.databind.node.ObjectNode) MappingKey(org.onosproject.mapping.MappingKey) MappingValue(org.onosproject.mapping.MappingValue)

Aggregations

MappingValue (org.onosproject.mapping.MappingValue)9 DefaultMappingValue (org.onosproject.mapping.DefaultMappingValue)7 MappingTreatment (org.onosproject.mapping.MappingTreatment)6 MappingKey (org.onosproject.mapping.MappingKey)5 MappingAction (org.onosproject.mapping.actions.MappingAction)5 ObjectNode (com.fasterxml.jackson.databind.node.ObjectNode)4 DefaultMappingTreatment (org.onosproject.mapping.DefaultMappingTreatment)4 MappingAddress (org.onosproject.mapping.addresses.MappingAddress)4 Test (org.junit.Test)3 DefaultMappingKey (org.onosproject.mapping.DefaultMappingKey)3 MappingEntry (org.onosproject.mapping.MappingEntry)3 MappingInstruction (org.onosproject.mapping.instructions.MappingInstruction)3 JsonNode (com.fasterxml.jackson.databind.JsonNode)2 DefaultMapping (org.onosproject.mapping.DefaultMapping)2 DefaultMappingEntry (org.onosproject.mapping.DefaultMappingEntry)2 Mapping (org.onosproject.mapping.Mapping)2 InputStream (java.io.InputStream)1 Before (org.junit.Before)1 IpPrefix (org.onlab.packet.IpPrefix)1 IPMappingAddress (org.onosproject.mapping.addresses.IPMappingAddress)1