use of org.onosproject.mapping.actions.MappingAction 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));
}
use of org.onosproject.mapping.actions.MappingAction 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();
}
use of org.onosproject.mapping.actions.MappingAction in project onos by opennetworkinglab.
the class DefaultMappingValueTest method testBuilderMethods.
/**
* Tests methods defined on the Builder.
*/
@Test
public void testBuilderMethods() {
MappingAction action = MappingActions.noAction();
MappingTreatment treatment = DefaultMappingTreatment.builder().withAddress(ma1).setUnicastPriority(10).setUnicastWeight(10).build();
MappingValue value = DefaultMappingValue.builder().withAction(action).add(treatment).build();
assertThat(value.action(), is(action));
assertThat(value.treatments(), hasSize(1));
}
use of org.onosproject.mapping.actions.MappingAction in project onos by opennetworkinglab.
the class MappingActionCodecTest method getAction.
/**
* Reads in a mapping action from the given resource and decodes it.
*
* @param resourceName resource to use to read the JSON for the rule
* @return decoded mappingAction
* @throws IOException if processing the resource fails
*/
private MappingAction getAction(String resourceName) throws IOException {
InputStream jsonStream = MappingActionCodecTest.class.getResourceAsStream(resourceName);
JsonNode json = context.mapper().readTree(jsonStream);
assertThat(json, notNullValue());
MappingAction action = actionCodec.decode((ObjectNode) json, context);
assertThat(action, notNullValue());
return action;
}
use of org.onosproject.mapping.actions.MappingAction in project onos by opennetworkinglab.
the class MappingValueCodec method encode.
@Override
public ObjectNode encode(MappingValue value, CodecContext context) {
checkNotNull(value, "Mapping value cannot be null");
final ObjectNode result = context.mapper().createObjectNode();
final ArrayNode jsonTreatments = result.putArray(TREATMENTS);
final JsonCodec<MappingTreatment> treatmentCodec = context.codec(MappingTreatment.class);
final JsonCodec<MappingAction> actionCodec = context.codec(MappingAction.class);
for (final MappingTreatment treatment : value.treatments()) {
jsonTreatments.add(treatmentCodec.encode(treatment, context));
}
result.set(ACTION, actionCodec.encode(value.action(), context));
return result;
}
Aggregations