当前位置: 首页>>代码示例>>Java>>正文


Java SimpleOAuthValidator类代码示例

本文整理汇总了Java中net.oauth.SimpleOAuthValidator的典型用法代码示例。如果您正苦于以下问题:Java SimpleOAuthValidator类的具体用法?Java SimpleOAuthValidator怎么用?Java SimpleOAuthValidator使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


SimpleOAuthValidator类属于net.oauth包,在下文中一共展示了SimpleOAuthValidator类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: provideOAuthValidator

import net.oauth.SimpleOAuthValidator; //导入依赖的package包/类
@Provides
@Singleton
protected OAuthValidator provideOAuthValidator() {
  // TODO(ljvderijk): This isn't an industrial strength validator, it grows
  // over time. It should be replaced or cleaned out on a regular interval.
  return new SimpleOAuthValidator();
}
 
开发者ID:jorkey,项目名称:Wiab.pro,代码行数:8,代码来源:RobotApiModule.java

示例2: initializeFilter

import net.oauth.SimpleOAuthValidator; //导入依赖的package包/类
/**
 * Initializes the filter with the given key manager
 * 
 * @param keyManager The key manager instance to be used
 */
private void initializeFilter(KeyManager keyManager) {
  this.keyManager = keyManager;
  provider = new OAuthServiceProvider(null, null, null);
  validator = new SimpleOAuthValidator();
  logger.info("Initialized OAuth filter with key manager: "
      + keyManager.getClass().getName());
}
 
开发者ID:jyang,项目名称:google-feedserver,代码行数:13,代码来源:AbstractOAuthFilter.java

示例3: testValidateMessageFailOnValidateMessageIOException

import net.oauth.SimpleOAuthValidator; //导入依赖的package包/类
@Test
public void testValidateMessageFailOnValidateMessageIOException() throws Exception {

    SimpleOAuthValidator sov = Mockito.mock(SimpleOAuthValidator.class);
    PowerMockito.whenNew(SimpleOAuthValidator.class).withNoArguments().thenReturn(sov);
    Mockito.doThrow(new IOException("failed")).when(sov).validateMessage(Matchers.any(OAuthMessage.class), Matchers.any(OAuthAccessor.class));
    PowerMockito.mockStatic(OAuthSignatureMethod.class);
    PowerMockito.when(OAuthSignatureMethod.getBaseString(Matchers.any(OAuthMessage.class))).thenReturn("");

    LtiVerificationResult result = BasicLTIUtil.validateMessage(Mockito.mock(HttpServletRequest.class), "https://example.com/lti-launch", "secret");        

    Assert.assertEquals(LtiError.BAD_REQUEST, result.getError());
    Assert.assertEquals(Boolean.FALSE, result.getSuccess());
    Assert.assertEquals(null, result.getLtiLaunchResult());
}
 
开发者ID:IMSGlobal,项目名称:basiclti-util-java,代码行数:16,代码来源:BasicLTIUtilTest.java

示例4: testValidateMessageFailOnValidateMessageOAuthException

import net.oauth.SimpleOAuthValidator; //导入依赖的package包/类
@Test
public void testValidateMessageFailOnValidateMessageOAuthException() throws Exception {

    SimpleOAuthValidator sov = Mockito.mock(SimpleOAuthValidator.class);
    PowerMockito.whenNew(SimpleOAuthValidator.class).withNoArguments().thenReturn(sov);
    Mockito.doThrow(new OAuthException("failed")).when(sov).validateMessage(Matchers.any(OAuthMessage.class), Matchers.any(OAuthAccessor.class));
    PowerMockito.mockStatic(OAuthSignatureMethod.class);
    PowerMockito.when(OAuthSignatureMethod.getBaseString(Matchers.any(OAuthMessage.class))).thenReturn("");

    LtiVerificationResult result = BasicLTIUtil.validateMessage(Mockito.mock(HttpServletRequest.class), "https://example.com/lti-launch", "secret");

    Assert.assertEquals(LtiError.BAD_REQUEST, result.getError());
    Assert.assertEquals(Boolean.FALSE, result.getSuccess());
    Assert.assertEquals(null, result.getLtiLaunchResult());
}
 
开发者ID:IMSGlobal,项目名称:basiclti-util-java,代码行数:16,代码来源:BasicLTIUtilTest.java

示例5: testValidateMessageFailOnValidateMessageURISyntaxException

import net.oauth.SimpleOAuthValidator; //导入依赖的package包/类
@Test
public void testValidateMessageFailOnValidateMessageURISyntaxException() throws Exception {

    SimpleOAuthValidator sov = Mockito.mock(SimpleOAuthValidator.class);
    PowerMockito.whenNew(SimpleOAuthValidator.class).withNoArguments().thenReturn(sov);
    Mockito.doThrow(new URISyntaxException("failed", "failed")).when(sov).validateMessage(Matchers.any(OAuthMessage.class), Matchers.any(OAuthAccessor.class));
    PowerMockito.mockStatic(OAuthSignatureMethod.class);
    PowerMockito.when(OAuthSignatureMethod.getBaseString(Matchers.any(OAuthMessage.class))).thenReturn("");

    LtiVerificationResult result = BasicLTIUtil.validateMessage(Mockito.mock(HttpServletRequest.class), "https://example.com/lti-launch", "secret");        

    Assert.assertEquals(LtiError.BAD_REQUEST, result.getError());
    Assert.assertEquals(Boolean.FALSE, result.getSuccess());
    Assert.assertEquals(null, result.getLtiLaunchResult());
}
 
开发者ID:IMSGlobal,项目名称:basiclti-util-java,代码行数:16,代码来源:BasicLTIUtilTest.java

示例6: testValidateMessagePass

import net.oauth.SimpleOAuthValidator; //导入依赖的package包/类
@Test
public void testValidateMessagePass() throws Exception {

    SimpleOAuthValidator sov = Mockito.mock(SimpleOAuthValidator.class);
    PowerMockito.whenNew(SimpleOAuthValidator.class).withNoArguments().thenReturn(sov);
    Mockito.doNothing().when(sov).validateMessage(Matchers.any(OAuthMessage.class), Matchers.any(OAuthAccessor.class));
    PowerMockito.mockStatic(OAuthSignatureMethod.class);
    PowerMockito.when(OAuthSignatureMethod.getBaseString(Matchers.any(OAuthMessage.class))).thenReturn("");
    
    HttpServletRequest req = Mockito.mock(HttpServletRequest.class);
    Mockito.when(req.getParameter("user_id")).thenReturn("pgray");
    Mockito.when(req.getParameter("roles")).thenReturn("instructor, teacher,administrator");
    Mockito.when(req.getParameter("lti_version")).thenReturn("lpv1");
    Mockito.when(req.getParameter("lti_message_type")).thenReturn("lti");
    Mockito.when(req.getParameter("resource_link_id")).thenReturn("12345");
    Mockito.when(req.getParameter("context_id")).thenReturn("9876");
    Mockito.when(req.getParameter("launch_presentation_return_url")).thenReturn("http://example.com/return");
    Mockito.when(req.getParameter("tool_consumer_instance_guid")).thenReturn("instance_id");

    LtiVerificationResult result = BasicLTIUtil.validateMessage(req, "https://example.com/lti-launch", "secret1");        

    Assert.assertEquals(null, result.getError());
    Assert.assertEquals(Boolean.TRUE, result.getSuccess());
    Assert.assertNotNull(result.getLtiLaunchResult());
    
    Assert.assertEquals("pgray", result.getLtiLaunchResult().getUser().getId());
    Assert.assertEquals(3, result.getLtiLaunchResult().getUser().getRoles().size());
    Assert.assertTrue(result.getLtiLaunchResult().getUser().getRoles().contains("instructor"));
    Assert.assertTrue(result.getLtiLaunchResult().getUser().getRoles().contains("teacher"));
    Assert.assertTrue(result.getLtiLaunchResult().getUser().getRoles().contains("administrator"));
    
    Assert.assertEquals("lpv1", result.getLtiLaunchResult().getVersion());
    Assert.assertEquals("lti", result.getLtiLaunchResult().getMessageType());
    Assert.assertEquals("12345", result.getLtiLaunchResult().getResourceLinkId());
    Assert.assertEquals("9876", result.getLtiLaunchResult().getContextId());
    Assert.assertEquals("http://example.com/return", result.getLtiLaunchResult().getLaunchPresentationReturnUrl());
    Assert.assertEquals("instance_id", result.getLtiLaunchResult().getToolConsumerInstanceGuid());
    
}
 
开发者ID:IMSGlobal,项目名称:basiclti-util-java,代码行数:40,代码来源:BasicLTIUtilTest.java


注:本文中的net.oauth.SimpleOAuthValidator类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。