當前位置: 首頁>>代碼示例>>Java>>正文


Java FakeIntentManager類代碼示例

本文整理匯總了Java中org.onosproject.net.intent.FakeIntentManager的典型用法代碼示例。如果您正苦於以下問題:Java FakeIntentManager類的具體用法?Java FakeIntentManager怎麽用?Java FakeIntentManager使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


FakeIntentManager類屬於org.onosproject.net.intent包,在下文中一共展示了FakeIntentManager類的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: testRemove

import org.onosproject.net.intent.FakeIntentManager; //導入依賴的package包/類
/**
 * Tests removing an intent with DELETE.
 */
@Test
public void testRemove() {
    final HashSet<NetworkResource> resources = new HashSet<>();
    resources.add(new MockResource(1));
    resources.add(new MockResource(2));
    resources.add(new MockResource(3));
    final Intent intent = new MockIntent(3L, resources);
    final ApplicationId appId = new DefaultApplicationId(2, "app");
    IntentService fakeManager = new FakeIntentManager();

    expect(mockCoreService.getAppId("app"))
            .andReturn(appId).once();
    replay(mockCoreService);

    mockIntentService.withdraw(anyObject());
    expectLastCall().andDelegateTo(fakeManager).once();
    expect(mockIntentService.getIntent(Key.of(2, appId)))
            .andReturn(intent)
            .once();
    expect(mockIntentService.getIntent(Key.of("0x2", appId)))
            .andReturn(null)
            .once();

    mockIntentService.addListener(anyObject());
    expectLastCall().andDelegateTo(fakeManager).once();
    mockIntentService.removeListener(anyObject());
    expectLastCall().andDelegateTo(fakeManager).once();

    replay(mockIntentService);

    WebTarget wt = target();

    Response response = wt.path("intents/app/0x2")
            .request(MediaType.APPLICATION_JSON, MediaType.TEXT_PLAIN)
            .delete();
    assertThat(response.getStatus(), is(HttpURLConnection.HTTP_NO_CONTENT));
}
 
開發者ID:shlee89,項目名稱:athena,代碼行數:41,代碼來源:IntentsResourceTest.java


注:本文中的org.onosproject.net.intent.FakeIntentManager類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。