本文整理汇总了Java中com.amazonaws.services.s3.event.S3EventNotification.S3Entity方法的典型用法代码示例。如果您正苦于以下问题:Java S3EventNotification.S3Entity方法的具体用法?Java S3EventNotification.S3Entity怎么用?Java S3EventNotification.S3Entity使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.amazonaws.services.s3.event.S3EventNotification
的用法示例。
在下文中一共展示了S3EventNotification.S3Entity方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: before
import com.amazonaws.services.s3.event.S3EventNotification; //导入方法依赖的package包/类
@Before
public void before() {
initMocks(this);
handler = new CloudFrontLogEventHandler();
String arn = System.getProperty("arn");
String bucketName = System.getProperty("bucketName");
String logKey = System.getProperty("logKey");
Preconditions.checkNotNull(arn, "You must pass the arn for this lambda to run in a mocked manner, the arn is used to get the env name ex: arn:aws:lambda:us-west-2:1111111:function:dev-gateway-db2599d1-6d86-LambdaWAFBlacklistingFun-1LSORI5GUP95H");
Preconditions.checkNotNull(bucketName, "You must supply a bucket for the lambda to read a log from");
Preconditions.checkNotNull(logKey, "You must supply a key to a log for the lambda to read");
List<S3EventNotification.S3EventNotificationRecord> records = Lists.newArrayList();
S3EventNotification.S3EventNotificationRecord record = mock(S3EventNotification.S3EventNotificationRecord.class);
records.add(record);
when(event.getRecords()).thenReturn(records);
S3EventNotification.S3Entity s3Entity = mock(S3EventNotification.S3Entity.class);
S3EventNotification.S3BucketEntity bucketEntity = mock(S3EventNotification.S3BucketEntity.class);
S3EventNotification.S3ObjectEntity objectEntity = mock(S3EventNotification.S3ObjectEntity.class);
when(s3Entity.getBucket()).thenReturn(bucketEntity);
when(s3Entity.getObject()).thenReturn(objectEntity);
when(record.getS3()).thenReturn(s3Entity);
when(context.getInvokedFunctionArn()).thenReturn(arn);
when(bucketEntity.getName()).thenReturn(bucketName);
when(objectEntity.getKey()).thenReturn(logKey);
}
开发者ID:Nike-Inc,项目名称:cerberus-serverless-components,代码行数:32,代码来源:CloudFrontLogEventHandlerIntegrationTest.java
示例2: testThatHandleEventCallsProcessEventsOnTheProcessors
import com.amazonaws.services.s3.event.S3EventNotification; //导入方法依赖的package包/类
@Test
public void testThatHandleEventCallsProcessEventsOnTheProcessors() throws IOException {
String bucketName = "bucketname";
String arn = "foo";
Processor processor = mock(Processor.class);
List<Processor> processors = Lists.newLinkedList();
processors.add(processor);
handler.overrideProcessors(processors);
CloudFrontLogHandlerConfig params = new CloudFrontLogHandlerConfig();
doReturn(params).when(handler).getConfiguration(arn);
Context context = mock(Context.class);
when(context.getInvokedFunctionArn()).thenReturn(arn);
S3Event event = mock(S3Event.class);
List<S3EventNotification.S3EventNotificationRecord> records = Lists.newArrayList();
S3EventNotification.S3EventNotificationRecord record = mock(S3EventNotification.S3EventNotificationRecord.class);
records.add(record);
when(event.getRecords()).thenReturn(records);
S3EventNotification.S3Entity s3Entity = mock(S3EventNotification.S3Entity.class);
S3EventNotification.S3BucketEntity bucketEntity = mock(S3EventNotification.S3BucketEntity.class);
S3EventNotification.S3ObjectEntity objectEntity = mock(S3EventNotification.S3ObjectEntity.class);
when(s3Entity.getBucket()).thenReturn(bucketEntity);
when(s3Entity.getObject()).thenReturn(objectEntity);
when(record.getS3()).thenReturn(s3Entity);
when(bucketEntity.getName()).thenReturn(bucketName);
when(objectEntity.getKey()).thenReturn("access.log.gz");
when(amazonS3Client.getObject(isA(GetObjectRequest.class))).thenReturn(mock(S3Object.class));
doReturn(null).when(handler).ingestLogStream(null);
handler.handleNewS3Event(event, context);
verify(processor, times(1)).processLogEvents(null, params, bucketName);
}
示例3: testThatHandleEventCallsDoesNotProcessEventsOnTheProcessorsWhenNotALogFile
import com.amazonaws.services.s3.event.S3EventNotification; //导入方法依赖的package包/类
@Test
public void testThatHandleEventCallsDoesNotProcessEventsOnTheProcessorsWhenNotALogFile() throws IOException {
String bucketName = "bucketname";
String arn = "foo";
Processor processor = mock(Processor.class);
List<Processor> processors = Lists.newLinkedList();
processors.add(processor);
handler.overrideProcessors(processors);
CloudFrontLogHandlerConfig params = new CloudFrontLogHandlerConfig();
doReturn(params).when(handler).getConfiguration(arn);
Context context = mock(Context.class);
when(context.getInvokedFunctionArn()).thenReturn(arn);
S3Event event = mock(S3Event.class);
List<S3EventNotification.S3EventNotificationRecord> records = Lists.newArrayList();
S3EventNotification.S3EventNotificationRecord record = mock(S3EventNotification.S3EventNotificationRecord.class);
records.add(record);
when(event.getRecords()).thenReturn(records);
S3EventNotification.S3Entity s3Entity = mock(S3EventNotification.S3Entity.class);
S3EventNotification.S3BucketEntity bucketEntity = mock(S3EventNotification.S3BucketEntity.class);
S3EventNotification.S3ObjectEntity objectEntity = mock(S3EventNotification.S3ObjectEntity.class);
when(s3Entity.getBucket()).thenReturn(bucketEntity);
when(s3Entity.getObject()).thenReturn(objectEntity);
when(record.getS3()).thenReturn(s3Entity);
when(bucketEntity.getName()).thenReturn(bucketName);
when(objectEntity.getKey()).thenReturn("data.json");
when(amazonS3Client.getObject(isA(GetObjectRequest.class))).thenReturn(mock(S3Object.class));
doReturn(null).when(handler).ingestLogStream(null);
handler.handleNewS3Event(event, context);
verify(processor, times(0)).processLogEvents(null, params, bucketName);
}
示例4: testThatHandleEventDoesNotExplodeWhenTheFirstProcessorErrorsOut
import com.amazonaws.services.s3.event.S3EventNotification; //导入方法依赖的package包/类
@Test
public void testThatHandleEventDoesNotExplodeWhenTheFirstProcessorErrorsOut() throws IOException {
String bucketName = "bucketname";
String arn = "foo";
Processor processor = mock(Processor.class);
Processor processor2 = mock(Processor.class);
List<Processor> processors = Lists.newLinkedList();
processors.add(processor);
doThrow(new RuntimeException("foo")).when(processor).processLogEvents(any(), any(), any());
processors.add(processor2);
handler.overrideProcessors(processors);
CloudFrontLogHandlerConfig params = new CloudFrontLogHandlerConfig();
doReturn(params).when(handler).getConfiguration(arn);
Context context = mock(Context.class);
when(context.getInvokedFunctionArn()).thenReturn(arn);
S3Event event = mock(S3Event.class);
List<S3EventNotification.S3EventNotificationRecord> records = Lists.newArrayList();
S3EventNotification.S3EventNotificationRecord record = mock(S3EventNotification.S3EventNotificationRecord.class);
records.add(record);
when(event.getRecords()).thenReturn(records);
S3EventNotification.S3Entity s3Entity = mock(S3EventNotification.S3Entity.class);
S3EventNotification.S3BucketEntity bucketEntity = mock(S3EventNotification.S3BucketEntity.class);
S3EventNotification.S3ObjectEntity objectEntity = mock(S3EventNotification.S3ObjectEntity.class);
when(s3Entity.getBucket()).thenReturn(bucketEntity);
when(s3Entity.getObject()).thenReturn(objectEntity);
when(record.getS3()).thenReturn(s3Entity);
when(bucketEntity.getName()).thenReturn(bucketName);
when(objectEntity.getKey()).thenReturn("access.log.gz");
when(amazonS3Client.getObject(isA(GetObjectRequest.class))).thenReturn(mock(S3Object.class));
doReturn(null).when(handler).ingestLogStream(null);
handler.handleNewS3Event(event, context);
verify(processor, times(1)).processLogEvents(null, params, bucketName);
verify(processor2, times(1)).processLogEvents(null, params, bucketName);
}