本文整理汇总了Java中net.floodlightcontroller.restserver.RestApiServer.init方法的典型用法代码示例。如果您正苦于以下问题:Java RestApiServer.init方法的具体用法?Java RestApiServer.init怎么用?Java RestApiServer.init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.floodlightcontroller.restserver.RestApiServer
的用法示例。
在下文中一共展示了RestApiServer.init方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setUp
import net.floodlightcontroller.restserver.RestApiServer; //导入方法依赖的package包/类
@Before
public void setUp() throws Exception {
storageSource = new MemoryStorageSource();
restApi = new RestApiServer();
FloodlightModuleContext fmc = new FloodlightModuleContext();
fmc.addService(IRestApiService.class, restApi);
fmc.addService(IDebugCounterService.class, new MockDebugCounterService());
restApi.init(fmc);
storageSource.init(fmc);
restApi.startUp(fmc);
storageSource.startUp(fmc);
super.setUp();
}
示例2: testHARoleChanged
import net.floodlightcontroller.restserver.RestApiServer; //导入方法依赖的package包/类
@Test
public void testHARoleChanged() throws IOException {
StaticFlowEntryPusher staticFlowEntryPusher = new StaticFlowEntryPusher();
IStorageSourceService storage = createStorageWithFlowEntries();
MockFloodlightProvider mfp = getMockFloodlightProvider();
staticFlowEntryPusher.setFloodlightProvider(mfp);
staticFlowEntryPusher.setStorageSource(storage);
RestApiServer restApi = new RestApiServer();
try {
FloodlightModuleContext fmc = new FloodlightModuleContext();
restApi.init(fmc);
} catch (FloodlightModuleException e) {
e.printStackTrace();
}
staticFlowEntryPusher.startUp(null); // again, to hack unittest
// Send a notification that we've changed to slave
// mfp.dispatchRoleChanged(null, Role.SLAVE);
//#### mfp.dispatchMessage(Role.SLAVE, Role.MASTER);
// Make sure we've removed all our entries
// Send a notification that we've changed to master
//##### mfp.dispatchRoleChanged(Role.SLAVE, Role.MASTER);
// Make sure we've learned the entries
}
示例3: setUp
import net.floodlightcontroller.restserver.RestApiServer; //导入方法依赖的package包/类
@Override
public void setUp() throws Exception {
super.setUp();
staticFlowEntryPusher = new StaticFlowEntryPusher();
storage = createStorageWithFlowEntries();
dpid = HexString.toLong(TestSwitch1DPID);
mockSwitch = createNiceMock(IOFSwitch.class);
writeCapture = new Capture<OFMessage>(CaptureType.ALL);
contextCapture = new Capture<FloodlightContext>(CaptureType.ALL);
writeCaptureList = new Capture<List<OFMessage>>(CaptureType.ALL);
//OFMessageSafeOutStream mockOutStream = createNiceMock(OFMessageSafeOutStream.class);
mockSwitch.write(capture(writeCapture), capture(contextCapture));
expectLastCall().anyTimes();
mockSwitch.write(capture(writeCaptureList), capture(contextCapture));
expectLastCall().anyTimes();
mockSwitch.flush();
expectLastCall().anyTimes();
FloodlightModuleContext fmc = new FloodlightModuleContext();
fmc.addService(IStorageSourceService.class, storage);
MockFloodlightProvider mockFloodlightProvider = getMockFloodlightProvider();
Map<Long, IOFSwitch> switchMap = new HashMap<Long, IOFSwitch>();
switchMap.put(dpid, mockSwitch);
// NO ! expect(mockFloodlightProvider.getSwitches()).andReturn(switchMap).anyTimes();
mockFloodlightProvider.setSwitches(switchMap);
fmc.addService(IFloodlightProviderService.class, mockFloodlightProvider);
RestApiServer restApi = new RestApiServer();
fmc.addService(IRestApiService.class, restApi);
restApi.init(fmc);
staticFlowEntryPusher.init(fmc);
staticFlowEntryPusher.startUp(fmc); // again, to hack unittest
}
示例4: setUp
import net.floodlightcontroller.restserver.RestApiServer; //导入方法依赖的package包/类
@Override
public void setUp() throws Exception {
super.setUp();
FloodlightModuleContext fmc = new FloodlightModuleContext();
FloodlightProvider cm = new FloodlightProvider();
controller = (Controller)cm.getServiceImpls().get(IFloodlightProviderService.class);
fmc.addService(IFloodlightProviderService.class, controller);
MemoryStorageSource memstorage = new MemoryStorageSource();
fmc.addService(IStorageSourceService.class, memstorage);
RestApiServer restApi = new RestApiServer();
fmc.addService(IRestApiService.class, restApi);
CounterStore cs = new CounterStore();
fmc.addService(ICounterStoreService.class, cs);
PktInProcessingTime ppt = new PktInProcessingTime();
fmc.addService(IPktInProcessingTimeService.class, ppt);
tp = new MockThreadPoolService();
fmc.addService(IThreadPoolService.class, tp);
ppt.init(fmc);
restApi.init(fmc);
memstorage.init(fmc);
cm.init(fmc);
tp.init(fmc);
ppt.startUp(fmc);
restApi.startUp(fmc);
memstorage.startUp(fmc);
cm.startUp(fmc);
tp.startUp(fmc);
}
开发者ID:vishalshubham,项目名称:Multipath-Hedera-system-in-Floodlight-controller,代码行数:36,代码来源:ControllerTest.java
示例5: setUp
import net.floodlightcontroller.restserver.RestApiServer; //导入方法依赖的package包/类
@Before
public void setUp() throws Exception {
storageSource = new MemoryStorageSource();
restApi = new RestApiServer();
FloodlightModuleContext fmc = new FloodlightModuleContext();
fmc.addService(IRestApiService.class, restApi);
restApi.init(fmc);
storageSource.init(fmc);
restApi.startUp(fmc);
storageSource.startUp(fmc);
super.setUp();
}
示例6: setUp
import net.floodlightcontroller.restserver.RestApiServer; //导入方法依赖的package包/类
@Override
@Before
public void setUp() throws Exception {
super.setUp();
FloodlightModuleContext cntx = new FloodlightModuleContext();
ldm = new TestLinkDiscoveryManager();
TopologyManager routingEngine = new TopologyManager();
ldm.linkDiscoveryAware = new ArrayList<ILinkDiscoveryListener>();
MockThreadPoolService tp = new MockThreadPoolService();
RestApiServer restApi = new RestApiServer();
cntx.addService(IRestApiService.class, restApi);
cntx.addService(IThreadPoolService.class, tp);
cntx.addService(IRoutingService.class, routingEngine);
cntx.addService(ILinkDiscoveryService.class, ldm);
cntx.addService(ITopologyService.class, ldm);
cntx.addService(IStorageSourceService.class, new MemoryStorageSource());
cntx.addService(IFloodlightProviderService.class, getMockFloodlightProvider());
restApi.init(cntx);
tp.init(cntx);
routingEngine.init(cntx);
ldm.init(cntx);
restApi.startUp(cntx);
tp.startUp(cntx);
routingEngine.startUp(cntx);
ldm.startUp(cntx);
IOFSwitch sw1 = createMockSwitch(1L);
IOFSwitch sw2 = createMockSwitch(2L);
Map<Long, IOFSwitch> switches = new HashMap<Long, IOFSwitch>();
switches.put(1L, sw1);
switches.put(2L, sw2);
getMockFloodlightProvider().setSwitches(switches);
replay(sw1, sw2);
}
示例7: setUp
import net.floodlightcontroller.restserver.RestApiServer; //导入方法依赖的package包/类
@Before
public void setUp() throws Exception {
super.setUp();
FloodlightModuleContext cntx = new FloodlightModuleContext();
ldm = new TestLinkDiscoveryManager();
TopologyManager routingEngine = new TopologyManager();
ldm.linkDiscoveryAware = new ArrayList<ILinkDiscoveryListener>();
MockThreadPoolService tp = new MockThreadPoolService();
RestApiServer restApi = new RestApiServer();
cntx.addService(IRestApiService.class, restApi);
cntx.addService(IThreadPoolService.class, tp);
cntx.addService(IRoutingService.class, routingEngine);
cntx.addService(ILinkDiscoveryService.class, ldm);
cntx.addService(ITopologyService.class, ldm);
cntx.addService(IStorageSourceService.class, new MemoryStorageSource());
cntx.addService(IFloodlightProviderService.class, getMockFloodlightProvider());
restApi.init(cntx);
tp.init(cntx);
routingEngine.init(cntx);
ldm.init(cntx);
restApi.startUp(cntx);
tp.startUp(cntx);
routingEngine.startUp(cntx);
ldm.startUp(cntx);
IOFSwitch sw1 = createMockSwitch(1L);
IOFSwitch sw2 = createMockSwitch(2L);
Map<Long, IOFSwitch> switches = new HashMap<Long, IOFSwitch>();
switches.put(1L, sw1);
switches.put(2L, sw2);
getMockFloodlightProvider().setSwitches(switches);
replay(sw1, sw2);
}
示例8: testHARoleChanged
import net.floodlightcontroller.restserver.RestApiServer; //导入方法依赖的package包/类
@Test
public void testHARoleChanged() throws IOException {
StaticFlowEntryPusher staticFlowEntryPusher = new StaticFlowEntryPusher();
IStorageSourceService storage = createStorageWithFlowEntries();
MockFloodlightProvider mfp = getMockFloodlightProvider();
staticFlowEntryPusher.setFloodlightProvider(mfp);
staticFlowEntryPusher.setStorageSource(storage);
RestApiServer restApi = new RestApiServer();
try {
FloodlightModuleContext fmc = new FloodlightModuleContext();
restApi.init(fmc);
} catch (FloodlightModuleException e) {
e.printStackTrace();
}
staticFlowEntryPusher.restApi = restApi;
staticFlowEntryPusher.startUp(null); // again, to hack unittest
assert(staticFlowEntryPusher.entry2dpid.containsValue(TestSwitch1DPID));
assert(staticFlowEntryPusher.entriesFromStorage.containsValue(FlowMod1));
assert(staticFlowEntryPusher.entriesFromStorage.containsValue(FlowMod2));
assert(staticFlowEntryPusher.entriesFromStorage.containsValue(FlowMod3));
// Send a notification that we've changed to slave
mfp.dispatchRoleChanged(null, Role.SLAVE);
// Make sure we've removed all our entries
assert(staticFlowEntryPusher.entry2dpid.isEmpty());
assert(staticFlowEntryPusher.entriesFromStorage.isEmpty());
// Send a notification that we've changed to master
mfp.dispatchRoleChanged(Role.SLAVE, Role.MASTER);
// Make sure we've learned the entries
assert(staticFlowEntryPusher.entry2dpid.containsValue(TestSwitch1DPID));
assert(staticFlowEntryPusher.entriesFromStorage.containsValue(FlowMod1));
assert(staticFlowEntryPusher.entriesFromStorage.containsValue(FlowMod2));
assert(staticFlowEntryPusher.entriesFromStorage.containsValue(FlowMod3));
}
示例9: setUp
import net.floodlightcontroller.restserver.RestApiServer; //导入方法依赖的package包/类
@Override
@Before
public void setUp() throws Exception {
super.setUp();
FloodlightModuleContext cntx = new FloodlightModuleContext();
ldm = new LinkDiscoveryManager();
MockThreadPoolService tp = new MockThreadPoolService();
RestApiServer restApi = new RestApiServer();
IControllerRegistryService registry =
createMock(IControllerRegistryService.class);
expect(registry.hasControl(anyLong())).andReturn(true).anyTimes();
replay(registry);
cntx.addService(IControllerRegistryService.class, registry);
cntx.addService(IRestApiService.class, restApi);
cntx.addService(IThreadPoolService.class, tp);
cntx.addService(ILinkDiscoveryService.class, ldm);
cntx.addService(IFloodlightProviderService.class, getMockFloodlightProvider());
restApi.init(cntx);
tp.init(cntx);
ldm.init(cntx);
restApi.startUp(cntx);
tp.startUp(cntx);
ldm.startUp(cntx);
IOFSwitch sw1 = createMockSwitch(1L);
IOFSwitch sw2 = createMockSwitch(2L);
Map<Long, IOFSwitch> switches = new HashMap<Long, IOFSwitch>();
switches.put(1L, sw1);
switches.put(2L, sw2);
getMockFloodlightProvider().setSwitches(switches);
replay(sw1, sw2);
}
示例10: setUp
import net.floodlightcontroller.restserver.RestApiServer; //导入方法依赖的package包/类
@Override
@Before
public void setUp() throws Exception {
super.setUp();
FloodlightModuleContext fmc = new FloodlightModuleContext();
FloodlightProvider floodlightProvider = new FloodlightProvider();
controller = (Controller) floodlightProvider.getServiceImpls().get(
IFloodlightProviderService.class);
fmc.addService(IFloodlightProviderService.class, controller);
RestApiServer restApi = new RestApiServer();
fmc.addService(IRestApiService.class, restApi);
DebugCounter counterService = new DebugCounter();
fmc.addService(IDebugCounterService.class, counterService);
threadPool = new MockThreadPoolService();
fmc.addService(IThreadPoolService.class, threadPool);
IControllerRegistryService registry =
createMock(IControllerRegistryService.class);
fmc.addService(IControllerRegistryService.class, registry);
LinkDiscoveryManager linkDiscovery = new LinkDiscoveryManager();
fmc.addService(ILinkDiscoveryService.class, linkDiscovery);
restApi.init(fmc);
floodlightProvider.init(fmc);
threadPool.init(fmc);
linkDiscovery.init(fmc);
restApi.startUp(fmc);
floodlightProvider.startUp(fmc);
threadPool.startUp(fmc);
}
示例11: setUp
import net.floodlightcontroller.restserver.RestApiServer; //导入方法依赖的package包/类
@Override
@Before
public void setUp() throws Exception {
super.setUp();
FloodlightModuleContext cntx = new FloodlightModuleContext();
tFSFW = new TestFlowSpaceFirewall();
cntx.addConfigParam(tFSFW, "configFile", "src/test/resources/good_config.xml");
MockThreadPoolService tp = new MockThreadPoolService();
RestApiServer restApi = new RestApiServer();
cntx.addService(IRestApiService.class, restApi);
cntx.addService(IThreadPoolService.class, tp);
cntx.addService(IFlowSpaceFirewallService.class, tFSFW);
cntx.addService(IStorageSourceService.class, new MemoryStorageSource());
cntx.addService(IFloodlightProviderService.class, getMockFloodlightProvider());
restApi.init(cntx);
tp.init(cntx);
tFSFW.init(cntx);
restApi.startUp(cntx);
tp.startUp(cntx);
tFSFW.startUp(cntx);
IOFSwitch sw1 = createMockSwitch(1L);
IOFSwitch sw2 = createMockSwitch(2L);
Map<Long, IOFSwitch> switches = new HashMap<Long, IOFSwitch>();
switches.put(1L, sw1);
switches.put(2L, sw2);
getMockFloodlightProvider().setSwitches(switches);
replay(sw1, sw2);
}
示例12: setUp
import net.floodlightcontroller.restserver.RestApiServer; //导入方法依赖的package包/类
@Override
public void setUp() throws Exception {
super.setUp();
FloodlightModuleContext fmc = new FloodlightModuleContext();
FloodlightProvider cm = new FloodlightProvider();
controller = (Controller)cm.getServiceImpls().get(IFloodlightProviderService.class);
fmc.addService(IFloodlightProviderService.class, controller);
MemoryStorageSource memstorage = new MemoryStorageSource();
fmc.addService(IStorageSourceService.class, memstorage);
RestApiServer restApi = new RestApiServer();
fmc.addService(IRestApiService.class, restApi);
CounterStore cs = new CounterStore();
fmc.addService(ICounterStoreService.class, cs);
PktInProcessingTime ppt = new PktInProcessingTime();
fmc.addService(IPktInProcessingTimeService.class, ppt);
tp = new MockThreadPoolService();
fmc.addService(IThreadPoolService.class, tp);
ppt.init(fmc);
restApi.init(fmc);
memstorage.init(fmc);
cm.init(fmc);
tp.init(fmc);
ppt.startUp(fmc);
restApi.startUp(fmc);
memstorage.startUp(fmc);
cm.startUp(fmc);
tp.startUp(fmc);
}
示例13: testHARoleChanged
import net.floodlightcontroller.restserver.RestApiServer; //导入方法依赖的package包/类
@Test
public void testHARoleChanged() throws IOException {
StaticFlowEntryPusher staticFlowEntryPusher = new StaticFlowEntryPusher();
IStorageSourceService storage = createStorageWithFlowEntries();
MockFloodlightProvider mfp = getMockFloodlightProvider();
staticFlowEntryPusher.setFloodlightProvider(mfp);
staticFlowEntryPusher.setStorageSource(storage);
RestApiServer restApi = new RestApiServer();
try {
FloodlightModuleContext fmc = new FloodlightModuleContext();
restApi.init(fmc);
} catch (FloodlightModuleException e) {
e.printStackTrace();
}
staticFlowEntryPusher.restApi = restApi;
staticFlowEntryPusher.startUp(null); // again, to hack unittest
OFFlowMod flowMod = staticFlowEntryPusher.entriesFromStorage.get(getDpidFromTestRule(TestRule1)).get(getNameFromTestRule(TestRule1));
verifyFlowMod(flowMod, FlowMod1);
flowMod = staticFlowEntryPusher.entriesFromStorage.get(getDpidFromTestRule(TestRule2)).get(getNameFromTestRule(TestRule2));
verifyFlowMod(flowMod, FlowMod2);
flowMod = staticFlowEntryPusher.entriesFromStorage.get(getDpidFromTestRule(TestRule3)).get(getNameFromTestRule(TestRule3));
verifyFlowMod(flowMod, FlowMod3);
// Send a notification that we've changed to slave
mfp.dispatchRoleChanged(null, Role.SLAVE);
// Make sure we've removed all our entries
assertTrue(staticFlowEntryPusher.entriesFromStorage.isEmpty());
// Send a notification that we've changed to master
mfp.dispatchRoleChanged(Role.SLAVE, Role.MASTER);
// Make sure we've learned the entries
flowMod = staticFlowEntryPusher.entriesFromStorage.get(getDpidFromTestRule(TestRule1)).get(getNameFromTestRule(TestRule1));
verifyFlowMod(flowMod, FlowMod1);
flowMod = staticFlowEntryPusher.entriesFromStorage.get(getDpidFromTestRule(TestRule2)).get(getNameFromTestRule(TestRule2));
verifyFlowMod(flowMod, FlowMod2);
flowMod = staticFlowEntryPusher.entriesFromStorage.get(getDpidFromTestRule(TestRule3)).get(getNameFromTestRule(TestRule3));
verifyFlowMod(flowMod, FlowMod3);
}
示例14: setUp
import net.floodlightcontroller.restserver.RestApiServer; //导入方法依赖的package包/类
@Override
@Before
public void setUp() throws Exception {
super.setUp();
FloodlightModuleContext cntx = new FloodlightModuleContext();
ldm = new TestLinkDiscoveryManager();
TopologyManager routingEngine = new TopologyManager();
ldm.linkDiscoveryAware = new ArrayList<ILinkDiscoveryListener>();
IDebugCounterService debugCounterService = new MockDebugCounterService();
IDebugEventService debugEventService = new MockDebugEventService();
MockThreadPoolService tp = new MockThreadPoolService();
RestApiServer restApi = new RestApiServer();
MemoryStorageSource storageService = new MemoryStorageSource();
cntx.addService(IRestApiService.class, restApi);
cntx.addService(IThreadPoolService.class, tp);
cntx.addService(IRoutingService.class, routingEngine);
cntx.addService(ILinkDiscoveryService.class, ldm);
cntx.addService(ITopologyService.class, ldm);
cntx.addService(IStorageSourceService.class, storageService);
cntx.addService(IFloodlightProviderService.class, getMockFloodlightProvider());
cntx.addService(IDebugCounterService.class, debugCounterService);
cntx.addService(IDebugEventService.class, debugEventService);
cntx.addService(IOFSwitchService.class, getMockSwitchService());
restApi.init(cntx);
tp.init(cntx);
routingEngine.init(cntx);
storageService.init(cntx);
storageService.startUp(cntx);
ldm.init(cntx);
restApi.startUp(cntx);
tp.startUp(cntx);
routingEngine.startUp(cntx);
ldm.startUp(cntx);
IOFSwitch sw1 = createMockSwitch(1L);
IOFSwitch sw2 = createMockSwitch(2L);
Map<DatapathId, IOFSwitch> switches = new HashMap<DatapathId, IOFSwitch>();
switches.put(DatapathId.of(1L), sw1);
switches.put(DatapathId.of(2L), sw2);
getMockSwitchService().setSwitches(switches);
replay(sw1, sw2);
}
示例15: setUp
import net.floodlightcontroller.restserver.RestApiServer; //导入方法依赖的package包/类
@Override
@Before
public void setUp() throws Exception {
super.setUp();
factory = OFFactories.getFactory(OFVersion.OF_13);
lb = new LoadBalancer();
cntx = new FloodlightContext();
fmc = new FloodlightModuleContext();
entityClassifier = new DefaultEntityClassifier(); // dependency for device manager
tps = new MockThreadPoolService(); //dependency for device manager
deviceManager = new MockDeviceManager();
topology = createMock(ITopologyService.class);
routingEngine = createMock(IRoutingService.class);
restApi = new RestApiServer();
sfp = new StaticFlowEntryPusher();
storage = new MemoryStorageSource(); //dependency for sfp
mockSyncService = new MockSyncService();
debugCounterService = new MockDebugCounterService();
debugEventService = new MockDebugEventService();
fmc.addService(IRestApiService.class, restApi);
fmc.addService(IFloodlightProviderService.class, getMockFloodlightProvider());
fmc.addService(IEntityClassifierService.class, entityClassifier);
fmc.addService(IThreadPoolService.class, tps);
fmc.addService(IDeviceService.class, deviceManager);
fmc.addService(ITopologyService.class, topology);
fmc.addService(IRoutingService.class, routingEngine);
fmc.addService(IStaticFlowEntryPusherService.class, sfp);
fmc.addService(ILoadBalancerService.class, lb);
fmc.addService(IStorageSourceService.class, storage);
fmc.addService(ISyncService.class, mockSyncService);
fmc.addService(IDebugCounterService.class, debugCounterService);
fmc.addService(IDebugEventService.class, debugEventService);
fmc.addService(IOFSwitchService.class, getMockSwitchService());
lb.init(fmc);
//getMockFloodlightProvider().init(fmc);
entityClassifier.init(fmc);
tps.init(fmc);
mockSyncService.init(fmc);
deviceManager.init(fmc);
restApi.init(fmc);
sfp.init(fmc);
storage.init(fmc);
topology.addListener(deviceManager);
expectLastCall().times(1);
replay(topology);
lb.startUp(fmc);
//getMockFloodlightProvider().startUp(fmc);
entityClassifier.startUp(fmc);
tps.startUp(fmc);
mockSyncService.startUp(fmc);
deviceManager.startUp(fmc);
restApi.startUp(fmc);
sfp.startUp(fmc);
storage.startUp(fmc);
verify(topology);
vipsResource = new VipsResource();
poolsResource = new PoolsResource();
membersResource = new MembersResource();
vip1=null;
vip2=null;
pool1=null;
pool2=null;
pool3=null;
member1=null;
member2=null;
member3=null;
member4=null;
}