blob: 990ca6b28d3fa2c1ac8211bcc5767ad23d293213 [file] [log] [blame]
Jonathan Hartaa380972014-04-03 10:24:46 -07001package net.onrc.onos.core.intent.runtime;
Toshio Koidec87810e2014-02-11 13:03:21 -08002
Jonathan Harta88fd242014-04-03 11:24:54 -07003import static org.easymock.EasyMock.anyObject;
4import static org.easymock.EasyMock.createMock;
5import static org.easymock.EasyMock.eq;
6import static org.easymock.EasyMock.expect;
7import static org.easymock.EasyMock.expectLastCall;
8import static org.easymock.EasyMock.replay;
9import static org.easymock.EasyMock.verify;
Toshio Koide066506e2014-02-20 19:52:09 -080010
Pavlin Radoslavov74986ce2014-02-20 13:17:20 -080011import java.util.LinkedList;
Brian O'Connor12861f72014-02-19 20:40:32 -080012import java.util.List;
13import java.util.Set;
14
Toshio Koide27ffd412014-02-18 19:15:27 -080015import net.floodlightcontroller.core.module.FloodlightModuleContext;
16import net.floodlightcontroller.core.module.FloodlightModuleException;
Pavlin Radoslavov13669052014-05-13 10:33:39 -070017import net.floodlightcontroller.restserver.IRestApiService;
Jonathan Hart6df90172014-04-03 10:13:11 -070018import net.onrc.onos.core.datagrid.IDatagridService;
19import net.onrc.onos.core.datagrid.IEventChannel;
20import net.onrc.onos.core.datagrid.IEventChannelListener;
Jonathan Hartaa380972014-04-03 10:24:46 -070021import net.onrc.onos.core.intent.ConstrainedShortestPathIntent;
22import net.onrc.onos.core.intent.FlowEntry;
23import net.onrc.onos.core.intent.Intent;
Jonathan Harta88fd242014-04-03 11:24:54 -070024import net.onrc.onos.core.intent.Intent.IntentState;
25import net.onrc.onos.core.intent.IntentOperation.Operator;
Jonathan Hartaa380972014-04-03 10:24:46 -070026import net.onrc.onos.core.intent.IntentOperationList;
Jonathan Hartaa380972014-04-03 10:24:46 -070027import net.onrc.onos.core.intent.PathIntent;
28import net.onrc.onos.core.intent.PathIntentMap;
29import net.onrc.onos.core.intent.ShortestPathIntent;
Pavlin Radoslavov13669052014-05-13 10:33:39 -070030import net.onrc.onos.core.intent.runtime.web.IntentWebRoutable;
Jonathan Hartdeda0ba2014-04-03 11:14:12 -070031import net.onrc.onos.core.registry.IControllerRegistryService;
Yuta HIGUCHIbfc77f02014-07-14 22:50:25 -070032import net.onrc.onos.core.topology.HostEvent;
Jonathan Harte37e4e22014-05-13 19:12:02 -070033import net.onrc.onos.core.topology.ITopologyListener;
34import net.onrc.onos.core.topology.ITopologyService;
Jonathan Hart472062d2014-04-03 10:56:48 -070035import net.onrc.onos.core.topology.LinkEvent;
TeruU5d2c9392014-06-09 20:02:02 -070036import net.onrc.onos.core.topology.MockTopology;
Jonathan Hart472062d2014-04-03 10:56:48 -070037import net.onrc.onos.core.topology.PortEvent;
38import net.onrc.onos.core.topology.SwitchEvent;
Jonathan Harte37e4e22014-05-13 19:12:02 -070039import net.onrc.onos.core.topology.Topology;
Pavlin Radoslavov4eaab992014-07-03 18:39:42 -070040import net.onrc.onos.core.topology.TopologyEvents;
Yuta HIGUCHIe2a4e172014-07-03 10:50:39 -070041import net.onrc.onos.core.util.SwitchPort;
Toshio Koidec87810e2014-02-11 13:03:21 -080042
Ray Milkey38301352014-07-28 08:51:54 -070043import net.onrc.onos.core.util.UnitTest;
Toshio Koidec87810e2014-02-11 13:03:21 -080044import org.junit.After;
45import org.junit.Before;
46import org.junit.Test;
Nick Karanatsios8abe7172014-02-19 20:31:48 -080047import org.junit.runner.RunWith;
48import org.powermock.api.easymock.PowerMock;
49import org.powermock.core.classloader.annotations.PrepareForTest;
50import org.powermock.modules.junit4.PowerMockRunner;
Yuta HIGUCHI412add62014-07-25 13:03:43 -070051import org.slf4j.Logger;
52import org.slf4j.LoggerFactory;
Toshio Koidec87810e2014-02-11 13:03:21 -080053
54/**
Toshio Koidee04a9df2014-05-01 15:49:28 -070055 * Temporary test cases for the ONS2014 demo.
56 * These test cases should be modified and be moved to appropriate classes
57 * (ex. PathCalcRuntimeModuleTest, PlanInstallModuleTest, etc.)
Toshio Koidec87810e2014-02-11 13:03:21 -080058 */
Nick Karanatsios8abe7172014-02-19 20:31:48 -080059@RunWith(PowerMockRunner.class)
60@PrepareForTest(PathCalcRuntimeModule.class)
Ray Milkey38301352014-07-28 08:51:54 -070061public class UseCaseTest extends UnitTest {
Yuta HIGUCHI412add62014-07-25 13:03:43 -070062 private static final Logger log = LoggerFactory.getLogger(UseCaseTest.class);
63
Jonathan Harte37e4e22014-05-13 19:12:02 -070064 private Topology topology;
Ray Milkey269ffb92014-04-03 14:43:30 -070065 private FloodlightModuleContext modContext;
66 private IDatagridService datagridService;
Jonathan Harte37e4e22014-05-13 19:12:02 -070067 private ITopologyService topologyService;
Ray Milkey269ffb92014-04-03 14:43:30 -070068 private IControllerRegistryService controllerRegistryService;
69 private PersistIntent persistIntent;
Pavlin Radoslavov13669052014-05-13 10:33:39 -070070 private IRestApiService restApi;
Toshio Koidee04a9df2014-05-01 15:49:28 -070071 private IEventChannel<Long, IntentOperationList> intentOperationChannel;
72 private IEventChannel<Long, IntentStateList> intentStateChannel;
Toshio Koidec87810e2014-02-11 13:03:21 -080073
Yuta HIGUCHI44a0b352014-05-14 21:32:48 -070074 private static final Long LOCAL_PORT = 0xFFFEL;
Toshio Koidefe1d5d92014-02-26 20:09:48 -080075
Ray Milkey269ffb92014-04-03 14:43:30 -070076 @SuppressWarnings("unchecked")
77 @Before
78 public void setUp() throws Exception {
Yuta HIGUCHI44a0b352014-05-14 21:32:48 -070079 MockTopology mockTopology = new MockTopology();
80 mockTopology.createSampleTopology1();
81 this.topology = mockTopology;
Toshio Koide27ffd412014-02-18 19:15:27 -080082
Ray Milkey269ffb92014-04-03 14:43:30 -070083 datagridService = createMock(IDatagridService.class);
Jonathan Harte37e4e22014-05-13 19:12:02 -070084 topologyService = createMock(ITopologyService.class);
Ray Milkey269ffb92014-04-03 14:43:30 -070085 controllerRegistryService = createMock(IControllerRegistryService.class);
86 modContext = createMock(FloodlightModuleContext.class);
Toshio Koidee04a9df2014-05-01 15:49:28 -070087 intentOperationChannel = createMock(IEventChannel.class);
88 intentStateChannel = createMock(IEventChannel.class);
Ray Milkey269ffb92014-04-03 14:43:30 -070089 persistIntent = PowerMock.createMock(PersistIntent.class);
Pavlin Radoslavov13669052014-05-13 10:33:39 -070090 restApi = createMock(IRestApiService.class);
Toshio Koide798bc1b2014-02-20 14:02:40 -080091
Ray Milkey269ffb92014-04-03 14:43:30 -070092 PowerMock.expectNew(PersistIntent.class,
Pavlin Radoslavov0294e052014-04-10 13:36:45 -070093 anyObject(IControllerRegistryService.class)).andReturn(persistIntent);
Toshio Koide27ffd412014-02-18 19:15:27 -080094
Ray Milkey269ffb92014-04-03 14:43:30 -070095 expect(modContext.getServiceImpl(IDatagridService.class))
96 .andReturn(datagridService).once();
Jonathan Harte37e4e22014-05-13 19:12:02 -070097 expect(modContext.getServiceImpl(ITopologyService.class))
98 .andReturn(topologyService).once();
Ray Milkey269ffb92014-04-03 14:43:30 -070099 expect(modContext.getServiceImpl(IControllerRegistryService.class))
100 .andReturn(controllerRegistryService).once();
101 expect(persistIntent.getKey()).andReturn(1L).anyTimes();
102 expect(persistIntent.persistIfLeader(eq(1L),
103 anyObject(IntentOperationList.class))).andReturn(true).anyTimes();
Pavlin Radoslavov13669052014-05-13 10:33:39 -0700104 expect(modContext.getServiceImpl(IRestApiService.class))
105 .andReturn(restApi).once();
Toshio Koide0c9106d2014-02-19 15:26:38 -0800106
Yuta HIGUCHI44a0b352014-05-14 21:32:48 -0700107 expect(topologyService.getTopology()).andReturn(mockTopology).anyTimes();
Jonathan Harte37e4e22014-05-13 19:12:02 -0700108 topologyService.registerTopologyListener(anyObject(ITopologyListener.class));
Ray Milkey269ffb92014-04-03 14:43:30 -0700109 expectLastCall();
Toshio Koide0c9106d2014-02-19 15:26:38 -0800110
Ray Milkey269ffb92014-04-03 14:43:30 -0700111 expect(datagridService.createChannel("onos.pathintent", Long.class, IntentOperationList.class))
Toshio Koidee04a9df2014-05-01 15:49:28 -0700112 .andReturn(intentOperationChannel).once();
Toshio Koide27ffd412014-02-18 19:15:27 -0800113
Ray Milkey269ffb92014-04-03 14:43:30 -0700114 expect(datagridService.addListener(
115 eq("onos.pathintent_state"),
116 anyObject(IEventChannelListener.class),
117 eq(Long.class),
118 eq(IntentStateList.class)))
Toshio Koidee04a9df2014-05-01 15:49:28 -0700119 .andReturn(intentStateChannel).once();
Pavlin Radoslavov13669052014-05-13 10:33:39 -0700120 restApi.addRestletRoutable(anyObject(IntentWebRoutable.class));
Toshio Koide066506e2014-02-20 19:52:09 -0800121
Ray Milkey269ffb92014-04-03 14:43:30 -0700122 replay(datagridService);
Jonathan Harte37e4e22014-05-13 19:12:02 -0700123 replay(topologyService);
Ray Milkey269ffb92014-04-03 14:43:30 -0700124 replay(modContext);
125 replay(controllerRegistryService);
126 PowerMock.replay(persistIntent, PersistIntent.class);
Pavlin Radoslavov13669052014-05-13 10:33:39 -0700127 replay(restApi);
Ray Milkey269ffb92014-04-03 14:43:30 -0700128 }
Toshio Koidec87810e2014-02-11 13:03:21 -0800129
Ray Milkey269ffb92014-04-03 14:43:30 -0700130 @After
131 public void tearDown() {
132 verify(datagridService);
Jonathan Harte37e4e22014-05-13 19:12:02 -0700133 verify(topologyService);
Ray Milkey269ffb92014-04-03 14:43:30 -0700134 verify(modContext);
135 verify(controllerRegistryService);
136 PowerMock.verify(persistIntent, PersistIntent.class);
Pavlin Radoslavov13669052014-05-13 10:33:39 -0700137 verify(restApi);
Ray Milkey269ffb92014-04-03 14:43:30 -0700138 }
Toshio Koidec87810e2014-02-11 13:03:21 -0800139
Ray Milkey269ffb92014-04-03 14:43:30 -0700140 private void showResult(PathIntentMap intents) {
141 for (Intent intent : intents.getAllIntents()) {
142 PathIntent pathIntent = (PathIntent) intent;
Yuta HIGUCHI412add62014-07-25 13:03:43 -0700143 log.debug("Path intent:" + pathIntent);
144 log.debug("Parent intent: " + pathIntent.getParentIntent().toString());
Ray Milkey269ffb92014-04-03 14:43:30 -0700145 }
146 }
Toshio Koidec87810e2014-02-11 13:03:21 -0800147
Ray Milkey269ffb92014-04-03 14:43:30 -0700148 @Test
149 public void createShortestPaths() throws FloodlightModuleException {
150 // create shortest path intents
151 IntentOperationList opList = new IntentOperationList();
152 opList.add(Operator.ADD, new ShortestPathIntent("1", 1L, 12L, LOCAL_PORT, 2L, 21L, LOCAL_PORT));
153 opList.add(Operator.ADD, new ShortestPathIntent("2", 1L, 14L, LOCAL_PORT, 4L, 41L, LOCAL_PORT));
154 opList.add(Operator.ADD, new ShortestPathIntent("3", 2L, 23L, LOCAL_PORT, 3L, 32L, LOCAL_PORT));
Toshio Koidec87810e2014-02-11 13:03:21 -0800155
Ray Milkey269ffb92014-04-03 14:43:30 -0700156 // compile high-level intent operations into low-level intent operations (calculate paths)
157 PathCalcRuntimeModule runtime1 = new PathCalcRuntimeModule();
158 runtime1.init(modContext);
159 runtime1.startUp(modContext);
160 IntentOperationList pathIntentOpList = runtime1.executeIntentOperations(opList);
Toshio Koide27ffd412014-02-18 19:15:27 -0800161
Ray Milkey269ffb92014-04-03 14:43:30 -0700162 // compile low-level intents into flow entry installation plan
163 PlanCalcRuntime runtime2 = new PlanCalcRuntime();
164 List<Set<FlowEntry>> plan = runtime2.computePlan(pathIntentOpList);
Toshio Koidec87810e2014-02-11 13:03:21 -0800165
Ray Milkey269ffb92014-04-03 14:43:30 -0700166 // show results
167 showResult((PathIntentMap) runtime1.getPathIntents());
Yuta HIGUCHI412add62014-07-25 13:03:43 -0700168 log.debug("{}", plan);
Ray Milkey269ffb92014-04-03 14:43:30 -0700169 }
Toshio Koidec87810e2014-02-11 13:03:21 -0800170
Ray Milkey269ffb92014-04-03 14:43:30 -0700171 @Test
172 public void createConstrainedShortestPaths() throws FloodlightModuleException {
173 // create constrained shortest path intents
174 IntentOperationList opList = new IntentOperationList();
Yuta HIGUCHI91a8f502014-06-17 10:15:29 -0700175 opList.add(Operator.ADD, new ConstrainedShortestPathIntent("1", 1L, 12L,
176 LOCAL_PORT, 2L, 21L, LOCAL_PORT, 400.0));
177 opList.add(Operator.ADD, new ConstrainedShortestPathIntent("2", 1L, 14L,
178 LOCAL_PORT, 4L, 41L, LOCAL_PORT, 400.0));
179 opList.add(Operator.ADD, new ConstrainedShortestPathIntent("3", 2L, 24L,
180 LOCAL_PORT, 4L, 42L, LOCAL_PORT, 400.0));
181 opList.add(Operator.ADD, new ConstrainedShortestPathIntent("4", 2L, 23L,
182 LOCAL_PORT, 3L, 32L, LOCAL_PORT, 400.0));
183 opList.add(Operator.ADD, new ConstrainedShortestPathIntent("5", 3L, 34L,
184 LOCAL_PORT, 4L, 43L, LOCAL_PORT, 400.0));
Toshio Koidec87810e2014-02-11 13:03:21 -0800185
Ray Milkey269ffb92014-04-03 14:43:30 -0700186 // compile high-level intent operations into low-level intent operations (calculate paths)
187 PathCalcRuntimeModule runtime1 = new PathCalcRuntimeModule();
188 runtime1.init(modContext);
189 runtime1.startUp(modContext);
190 IntentOperationList pathIntentOpList = runtime1.executeIntentOperations(opList);
Toshio Koidec87810e2014-02-11 13:03:21 -0800191
Ray Milkey269ffb92014-04-03 14:43:30 -0700192 // compile low-level intents into flow entry installation plan
193 PlanCalcRuntime runtime2 = new PlanCalcRuntime();
194 List<Set<FlowEntry>> plan = runtime2.computePlan(pathIntentOpList);
Brian O'Connor7f8e3012014-02-15 23:59:29 -0800195
Ray Milkey269ffb92014-04-03 14:43:30 -0700196 // show results
197 showResult((PathIntentMap) runtime1.getPathIntents());
Yuta HIGUCHI412add62014-07-25 13:03:43 -0700198 log.debug("{}", plan);
Ray Milkey269ffb92014-04-03 14:43:30 -0700199 }
Toshio Koidec87810e2014-02-11 13:03:21 -0800200
Ray Milkey269ffb92014-04-03 14:43:30 -0700201 @Test
202 public void createMixedShortestPaths() throws FloodlightModuleException {
203 // create constrained & best effort shortest path intents
204 IntentOperationList opList = new IntentOperationList();
Yuta HIGUCHI91a8f502014-06-17 10:15:29 -0700205 opList.add(Operator.ADD, new ConstrainedShortestPathIntent("1", 1L, 12L,
206 LOCAL_PORT, 2L, 21L, LOCAL_PORT, 400.0));
207 opList.add(Operator.ADD, new ConstrainedShortestPathIntent("2", 1L, 14L,
208 LOCAL_PORT, 4L, 41L, LOCAL_PORT, 400.0));
209 opList.add(Operator.ADD, new ShortestPathIntent("3", 2L, 24L, LOCAL_PORT, 4L,
210 42L, LOCAL_PORT));
211 opList.add(Operator.ADD, new ShortestPathIntent("4", 2L, 23L, LOCAL_PORT, 3L,
212 32L, LOCAL_PORT));
213 opList.add(Operator.ADD, new ConstrainedShortestPathIntent("5", 3L, 34L,
214 LOCAL_PORT, 4L, 43L, LOCAL_PORT, 400.0));
Toshio Koidec87810e2014-02-11 13:03:21 -0800215
Ray Milkey269ffb92014-04-03 14:43:30 -0700216 // compile high-level intent operations into low-level intent operations (calculate paths)
217 PathCalcRuntimeModule runtime1 = new PathCalcRuntimeModule();
218 runtime1.init(modContext);
219 runtime1.startUp(modContext);
220 IntentOperationList pathIntentOpList = runtime1.executeIntentOperations(opList);
Toshio Koidec87810e2014-02-11 13:03:21 -0800221
Ray Milkey269ffb92014-04-03 14:43:30 -0700222 // compile low-level intents into flow entry installation plan
223 PlanCalcRuntime runtime2 = new PlanCalcRuntime();
224 List<Set<FlowEntry>> plan = runtime2.computePlan(pathIntentOpList);
Brian O'Connor7f8e3012014-02-15 23:59:29 -0800225
Ray Milkey269ffb92014-04-03 14:43:30 -0700226 // show results
227 showResult((PathIntentMap) runtime1.getPathIntents());
Yuta HIGUCHI412add62014-07-25 13:03:43 -0700228 log.debug("{}", plan);
Ray Milkey269ffb92014-04-03 14:43:30 -0700229 }
Toshio Koided9fa2a82014-02-19 17:35:18 -0800230
Ray Milkey269ffb92014-04-03 14:43:30 -0700231 @Test
232 public void rerouteShortestPaths() throws FloodlightModuleException {
233 List<SwitchEvent> addedSwitchEvents = new LinkedList<>();
234 List<SwitchEvent> removedSwitchEvents = new LinkedList<>();
235 List<PortEvent> addedPortEvents = new LinkedList<>();
236 List<PortEvent> removedPortEvents = new LinkedList<>();
237 List<LinkEvent> addedLinkEvents = new LinkedList<>();
238 List<LinkEvent> removedLinkEvents = new LinkedList<>();
Yuta HIGUCHIbfc77f02014-07-14 22:50:25 -0700239 List<HostEvent> addedHostEvents = new LinkedList<>();
240 List<HostEvent> removedHostEvents = new LinkedList<>();
Pavlin Radoslavov4eaab992014-07-03 18:39:42 -0700241 TopologyEvents topologyEvents;
Pavlin Radoslavov74986ce2014-02-20 13:17:20 -0800242
Ray Milkey269ffb92014-04-03 14:43:30 -0700243 // create shortest path intents
244 IntentOperationList opList = new IntentOperationList();
245 opList.add(Operator.ADD, new ShortestPathIntent("1", 1L, 12L, LOCAL_PORT, 2L, 21L, LOCAL_PORT));
246 opList.add(Operator.ADD, new ShortestPathIntent("2", 1L, 14L, LOCAL_PORT, 4L, 41L, LOCAL_PORT));
247 opList.add(Operator.ADD, new ShortestPathIntent("3", 2L, 23L, LOCAL_PORT, 3L, 32L, LOCAL_PORT));
Toshio Koide0c9106d2014-02-19 15:26:38 -0800248
Ray Milkey269ffb92014-04-03 14:43:30 -0700249 // compile high-level intent operations into low-level intent operations (calculate paths)
250 PathCalcRuntimeModule runtime1 = new PathCalcRuntimeModule();
251 runtime1.init(modContext);
252 runtime1.startUp(modContext);
253 IntentOperationList pathIntentOpList = runtime1.executeIntentOperations(opList);
Toshio Koide0c9106d2014-02-19 15:26:38 -0800254
Ray Milkey269ffb92014-04-03 14:43:30 -0700255 // compile low-level intents into flow entry installation plan
256 PlanCalcRuntime runtime2 = new PlanCalcRuntime();
257 List<Set<FlowEntry>> plan = runtime2.computePlan(pathIntentOpList);
Toshio Koide0c9106d2014-02-19 15:26:38 -0800258
Ray Milkey269ffb92014-04-03 14:43:30 -0700259 // show results step1
260 showResult((PathIntentMap) runtime1.getPathIntents());
Yuta HIGUCHI412add62014-07-25 13:03:43 -0700261 log.debug("{}", plan);
Toshio Koide0c9106d2014-02-19 15:26:38 -0800262
Ray Milkey269ffb92014-04-03 14:43:30 -0700263 // TODO this state changes should be triggered by notification of plan module
264 IntentStateList states = new IntentStateList();
265 states.put("1", IntentState.INST_ACK);
266 states.put("2", IntentState.INST_ACK);
267 states.put("3", IntentState.INST_ACK);
268 runtime1.getHighLevelIntents().changeStates(states);
269 states.clear();
270 states.put("1___0", IntentState.INST_ACK);
271 states.put("2___0", IntentState.INST_ACK);
272 states.put("3___0", IntentState.INST_ACK);
273 runtime1.getPathIntents().changeStates(states);
Toshio Koidea10c0372014-02-20 17:28:10 -0800274
Ray Milkey269ffb92014-04-03 14:43:30 -0700275 // link down
Jonathan Harte37e4e22014-05-13 19:12:02 -0700276 ((MockTopology) topology).removeLink(1L, 12L, 2L, 21L); // This link is used by the intent "1"
277 ((MockTopology) topology).removeLink(2L, 21L, 1L, 12L);
Yuta HIGUCHIe2a4e172014-07-03 10:50:39 -0700278 LinkEvent linkEvent1 = new LinkEvent(new SwitchPort(1L, 12L), new SwitchPort(2L, 21L));
279 LinkEvent linkEvent2 = new LinkEvent(new SwitchPort(2L, 21L), new SwitchPort(1L, 12L));
Ray Milkey269ffb92014-04-03 14:43:30 -0700280 removedLinkEvents.clear();
281 removedLinkEvents.add(linkEvent1);
282 removedLinkEvents.add(linkEvent2);
Pavlin Radoslavov4eaab992014-07-03 18:39:42 -0700283
Pavlin Radoslavovc61544e2014-07-23 16:27:27 -0700284 topologyEvents = new TopologyEvents(addedSwitchEvents,
Pavlin Radoslavov4eaab992014-07-03 18:39:42 -0700285 removedSwitchEvents,
286 addedPortEvents,
287 removedPortEvents,
288 addedLinkEvents,
289 removedLinkEvents,
Yuta HIGUCHIbfc77f02014-07-14 22:50:25 -0700290 addedHostEvents,
291 removedHostEvents);
Pavlin Radoslavov4eaab992014-07-03 18:39:42 -0700292
293 runtime1.topologyEvents(topologyEvents);
Yuta HIGUCHI412add62014-07-25 13:03:43 -0700294 log.debug("*** Link goes down. ***");
Toshio Koide7d3cee02014-06-05 18:56:19 -0700295
296 // send notification
297 IntentStateList isl = new IntentStateList();
298 isl.put("1___0", IntentState.DEL_ACK);
299 isl.put("1___1", IntentState.INST_ACK);
300 isl.domainSwitchDpids.add(1L);
301 isl.domainSwitchDpids.add(2L);
302 isl.domainSwitchDpids.add(4L);
303 runtime1.entryUpdated(isl);
Toshio Koide0c9106d2014-02-19 15:26:38 -0800304
Ray Milkey269ffb92014-04-03 14:43:30 -0700305 // show results step2
306 showResult((PathIntentMap) runtime1.getPathIntents());
Toshio Koide7d3cee02014-06-05 18:56:19 -0700307
308 // link up
309 ((MockTopology) topology).addBidirectionalLinks(1L, 12L, 2L, 21L);
Yuta HIGUCHIe2a4e172014-07-03 10:50:39 -0700310 linkEvent1 = new LinkEvent(new SwitchPort(1L, 12L), new SwitchPort(2L, 21L));
311 linkEvent2 = new LinkEvent(new SwitchPort(2L, 21L), new SwitchPort(1L, 12L));
Toshio Koide7d3cee02014-06-05 18:56:19 -0700312 removedLinkEvents.clear();
313 addedLinkEvents.clear();
314 addedLinkEvents.add(linkEvent1);
315 addedLinkEvents.add(linkEvent2);
Pavlin Radoslavov4eaab992014-07-03 18:39:42 -0700316
Pavlin Radoslavovc61544e2014-07-23 16:27:27 -0700317 topologyEvents = new TopologyEvents(addedSwitchEvents,
Pavlin Radoslavov4eaab992014-07-03 18:39:42 -0700318 removedSwitchEvents,
319 addedPortEvents,
320 removedPortEvents,
321 addedLinkEvents,
322 removedLinkEvents,
Yuta HIGUCHIbfc77f02014-07-14 22:50:25 -0700323 addedHostEvents,
324 removedHostEvents);
Pavlin Radoslavov4eaab992014-07-03 18:39:42 -0700325
326 runtime1.topologyEvents(topologyEvents);
Yuta HIGUCHI412add62014-07-25 13:03:43 -0700327 log.debug("*** Link goes up. ***");
Toshio Koide7d3cee02014-06-05 18:56:19 -0700328
329 // send notification
330 isl = new IntentStateList();
331 isl.put("1___1", IntentState.DEL_ACK);
332 isl.put("1___2", IntentState.INST_ACK);
333 isl.domainSwitchDpids.add(1L);
334 isl.domainSwitchDpids.add(2L);
335 isl.domainSwitchDpids.add(4L);
336 runtime1.entryUpdated(isl);
337
338 // show results step3
339 showResult((PathIntentMap) runtime1.getPathIntents());
340
Ray Milkey269ffb92014-04-03 14:43:30 -0700341 // TODO: show results of plan computation
342 }
Toshio Koidefa735a12014-03-28 10:49:07 -0700343
344
Ray Milkey269ffb92014-04-03 14:43:30 -0700345 @Test
346 public void createAndRemoveShortestPaths() throws FloodlightModuleException {
347 // create shortest path intents
348 IntentOperationList opList = new IntentOperationList();
349 opList.add(Operator.ADD, new ShortestPathIntent("1", 1L, 12L, LOCAL_PORT, 2L, 21L, LOCAL_PORT));
350 opList.add(Operator.ADD, new ShortestPathIntent("2", 1L, 14L, LOCAL_PORT, 4L, 41L, LOCAL_PORT));
351 opList.add(Operator.ADD, new ShortestPathIntent("3", 2L, 23L, LOCAL_PORT, 3L, 32L, LOCAL_PORT));
Toshio Koidefa735a12014-03-28 10:49:07 -0700352
Ray Milkey269ffb92014-04-03 14:43:30 -0700353 // compile high-level intent operations into low-level intent operations (calculate paths)
354 PathCalcRuntimeModule runtime1 = new PathCalcRuntimeModule();
355 runtime1.init(modContext);
356 runtime1.startUp(modContext);
357 IntentOperationList pathIntentOpList = runtime1.executeIntentOperations(opList);
Toshio Koidefa735a12014-03-28 10:49:07 -0700358
Ray Milkey269ffb92014-04-03 14:43:30 -0700359 // compile low-level intents into flow entry installation plan
360 PlanCalcRuntime runtime2 = new PlanCalcRuntime();
361 List<Set<FlowEntry>> plan = runtime2.computePlan(pathIntentOpList);
Toshio Koidefa735a12014-03-28 10:49:07 -0700362
Ray Milkey269ffb92014-04-03 14:43:30 -0700363 // show results
364 showResult((PathIntentMap) runtime1.getPathIntents());
Yuta HIGUCHI412add62014-07-25 13:03:43 -0700365 log.debug("{}", plan);
Toshio Koidefa735a12014-03-28 10:49:07 -0700366
Ray Milkey269ffb92014-04-03 14:43:30 -0700367 // create remove operations
368 opList.clear();
369 opList.add(Operator.REMOVE, new Intent("1"));
370 opList.add(Operator.REMOVE, new Intent("2"));
Toshio Koidefa735a12014-03-28 10:49:07 -0700371
Ray Milkey269ffb92014-04-03 14:43:30 -0700372 // compile
373 runtime1.executeIntentOperations(opList);
Toshio Koidefa735a12014-03-28 10:49:07 -0700374
Ray Milkey269ffb92014-04-03 14:43:30 -0700375 // show results
376 showResult((PathIntentMap) runtime1.getPathIntents());
Yuta HIGUCHI412add62014-07-25 13:03:43 -0700377 log.debug("{}", plan);
Ray Milkey269ffb92014-04-03 14:43:30 -0700378 }
Toshio Koidefa735a12014-03-28 10:49:07 -0700379
Toshio Koidec87810e2014-02-11 13:03:21 -0800380}