use of org.onosproject.mapping.DefaultMappingEntry in project onos by opennetworkinglab.
the class SimpleMappingStore method storeMapping.
@Override
public void storeMapping(Type type, MappingEntry mapping) {
List<StoredMappingEntry> entries = getMappingEntriesInternal(type, mapping.deviceId(), mapping.id());
synchronized (entries) {
if (!entries.contains(mapping)) {
StoredMappingEntry entry = new DefaultMappingEntry(mapping, mapping.state());
entries.add(entry);
}
}
}
use of org.onosproject.mapping.DefaultMappingEntry 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.DefaultMappingEntry 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.DefaultMappingEntry in project onos by opennetworkinglab.
the class MappingManagerTest method removeMappingEntries.
/**
* Tests removing mapping entries method.
*/
@Test
public void removeMappingEntries() {
Mapping m1 = addMapping(MAP_DATABASE, 1);
Mapping m2 = addMapping(MAP_DATABASE, 2);
addMapping(MAP_DATABASE, 3);
assertEquals("3 mappings should exist", 3, mappingCount(MAP_DATABASE));
MappingEntry me1 = new DefaultMappingEntry(m1);
MappingEntry me2 = new DefaultMappingEntry(m2);
adminService.removeMappingEntries(MAP_DATABASE, me1, me2);
assertEquals("1 mappings should exist", 1, mappingCount(MAP_DATABASE));
}
use of org.onosproject.mapping.DefaultMappingEntry in project onos by opennetworkinglab.
the class MappingManagerTest method storeMappingEntry.
/**
* Tests storing mapping entry method.
*/
@Test
public void storeMappingEntry() {
Mapping m1 = mapping(1, 1);
Mapping m2 = mapping(2, 2);
Mapping m3 = mapping(3, 3);
MappingEntry me1 = new DefaultMappingEntry(m1);
MappingEntry me2 = new DefaultMappingEntry(m2);
MappingEntry me3 = new DefaultMappingEntry(m3);
assertTrue("store should be empty", Sets.newHashSet(service.getMappingEntries(MAP_DATABASE, LISP_DID)).isEmpty());
adminService.storeMappingEntry(MAP_DATABASE, me1);
adminService.storeMappingEntry(MAP_DATABASE, me2);
adminService.storeMappingEntry(MAP_DATABASE, me3);
assertEquals("3 mappings should exist", 3, mappingCount(MAP_DATABASE));
}
Aggregations