-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f7ec69a
commit 3aec7d9
Showing
8 changed files
with
441 additions
and
130 deletions.
There are no files selected for viewing
122 changes: 122 additions & 0 deletions
122
test/E2ETests/E2EApps/E2EApp/Blob/BlobInputBindingFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
// Copyright (c) .NET Foundation. All rights reserved. | ||
// Licensed under the MIT License. See License.txt in the project root for license information. | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Net; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using Azure.Storage.Blobs; | ||
using Microsoft.Azure.Functions.Worker.Http; | ||
using Microsoft.Extensions.Logging; | ||
|
||
namespace Microsoft.Azure.Functions.Worker.E2EApp.Blob | ||
{ | ||
public class BlobInputBindingFunctions | ||
{ | ||
private readonly ILogger<BlobInputBindingFunctions> _logger; | ||
|
||
public BlobInputBindingFunctions(ILogger<BlobInputBindingFunctions> logger) | ||
{ | ||
_logger = logger; | ||
} | ||
|
||
[Function(nameof(BlobInputClientTest))] | ||
public async Task<HttpResponseData> BlobInputClientTest( | ||
[HttpTrigger(AuthorizationLevel.Function, "get", "post")] HttpRequestData req, | ||
[BlobInput("test-input-dotnet-isolated/testFile")] BlobClient client) | ||
{ | ||
var response = req.CreateResponse(HttpStatusCode.OK); | ||
var downloadResult = await client.DownloadContentAsync(); | ||
await response.Body.WriteAsync(downloadResult.Value.Content); | ||
return response; | ||
} | ||
|
||
[Function(nameof(BlobInputStreamTest))] | ||
public async Task<HttpResponseData> BlobInputStreamTest( | ||
[HttpTrigger(AuthorizationLevel.Function, "get", "post")] HttpRequestData req, | ||
[BlobInput("test-input-dotnet-isolated/testFile")] Stream stream) | ||
{ | ||
var response = req.CreateResponse(HttpStatusCode.OK); | ||
using var blobStreamReader = new StreamReader(stream); | ||
await response.WriteStringAsync(blobStreamReader.ReadToEnd()); | ||
return response; | ||
} | ||
|
||
[Function(nameof(BlobInputByteTest))] | ||
public async Task<HttpResponseData> BlobInputByteTest( | ||
[HttpTrigger(AuthorizationLevel.Function, "get", "post")] HttpRequestData req, | ||
[BlobInput("test-input-dotnet-isolated/testFile")] Byte[] data) | ||
{ | ||
var response = req.CreateResponse(HttpStatusCode.OK); | ||
await response.WriteStringAsync(Encoding.Default.GetString(data)); | ||
return response; | ||
} | ||
|
||
[Function(nameof(BlobInputStringTest))] | ||
public async Task<HttpResponseData> BlobInputStringTest( | ||
[HttpTrigger(AuthorizationLevel.Function, "get", "post")] HttpRequestData req, | ||
[BlobInput("test-input-dotnet-isolated/testFile")] string data) | ||
{ | ||
var response = req.CreateResponse(HttpStatusCode.OK); | ||
await response.WriteStringAsync(data); | ||
return response; | ||
} | ||
|
||
[Function(nameof(BlobInputPocoTest))] | ||
public async Task<HttpResponseData> BlobInputPocoTest( | ||
[HttpTrigger(AuthorizationLevel.Function, "get", "post")] HttpRequestData req, | ||
[BlobInput("test-input-dotnet-isolated/testFile")] Book data) | ||
{ | ||
var response = req.CreateResponse(HttpStatusCode.OK); | ||
await response.WriteStringAsync(data.Name); | ||
return response; | ||
} | ||
|
||
[Function(nameof(BlobInputCollectionTest))] | ||
public async Task<HttpResponseData> BlobInputCollectionTest( | ||
[HttpTrigger(AuthorizationLevel.Function, "get", "post")] HttpRequestData req, | ||
[BlobInput("test-input-dotnet-isolated", IsBatched = true)] IEnumerable<BlobClient> blobs) | ||
{ | ||
List<string> blobList = new(); | ||
|
||
foreach (BlobClient blob in blobs) | ||
{ | ||
_logger.LogInformation("Blob name: {blobName}, Container name: {containerName}", blob.Name, blob.BlobContainerName); | ||
blobList.Add(blob.Name); | ||
} | ||
|
||
var response = req.CreateResponse(HttpStatusCode.OK); | ||
await response.WriteStringAsync(blobList.ToString()); | ||
return response; | ||
} | ||
|
||
[Function(nameof(BlobInputStringArrayTest))] | ||
public async Task<HttpResponseData> BlobInputStringArrayTest( | ||
[HttpTrigger(AuthorizationLevel.Function, "get", "post")] HttpRequestData req, | ||
[BlobInput("test-input-dotnet-isolated", IsBatched = true)] string[] blobContent) | ||
{ | ||
var response = req.CreateResponse(HttpStatusCode.OK); | ||
await response.WriteStringAsync(blobContent.ToString()); | ||
return response; | ||
} | ||
|
||
[Function(nameof(BlobInputPocoArrayTest))] | ||
public async Task<HttpResponseData> BlobInputPocoArrayTest( | ||
[HttpTrigger(AuthorizationLevel.Function, "get", "post")] HttpRequestData req, | ||
[BlobInput("test-input-dotnet-isolated", IsBatched = true)] Book[] books) | ||
{ | ||
List<string> bookNames = new(); | ||
|
||
foreach (var item in books) | ||
{ | ||
bookNames.Add(item.Name); | ||
} | ||
|
||
var response = req.CreateResponse(HttpStatusCode.OK); | ||
await response.WriteStringAsync(bookNames.ToString()); | ||
return response; | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
94 changes: 94 additions & 0 deletions
94
test/E2ETests/E2EApps/E2EApp/Blob/BlobTriggerBindingFunctions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
// Copyright (c) .NET Foundation. All rights reserved. | ||
// Licensed under the MIT License. See License.txt in the project root for license information. | ||
|
||
using System.IO; | ||
using System.Text.Json.Serialization; | ||
using System.Threading.Tasks; | ||
using Azure.Storage.Blobs; | ||
using Microsoft.Extensions.Logging; | ||
|
||
namespace Microsoft.Azure.Functions.Worker.E2EApp.Blob | ||
{ | ||
public class BlobTriggerBindingFunctions | ||
{ | ||
private readonly ILogger<BlobTriggerBindingFunctions> _logger; | ||
|
||
public BlobTriggerBindingFunctions(ILogger<BlobTriggerBindingFunctions> logger) | ||
{ | ||
_logger = logger; | ||
} | ||
|
||
[Function(nameof(BlobTriggerToBlobTest))] | ||
[BlobOutput("test-output-dotnet-isolated/{name}")] | ||
public byte[] BlobTriggerToBlobTest( | ||
[BlobTrigger("test-trigger-dotnet-isolated/{name}")] byte[] triggerBlob, string name, | ||
[BlobInput("test-input-dotnet-isolated/{name}")] byte[] inputBlob, | ||
FunctionContext context) | ||
{ | ||
_logger.LogInformation("Trigger:\n Name: " + name + "\n Size: " + triggerBlob.Length + " Bytes"); | ||
_logger.LogInformation("Input:\n Name: " + name + "\n Size: " + inputBlob.Length + " Bytes"); | ||
return inputBlob; | ||
} | ||
|
||
[Function(nameof(BlobTriggerPocoTest))] | ||
[BlobOutput("test-output-poco-dotnet-isolated/{name}")] | ||
public TestBlobData BlobTriggerPocoTest( | ||
[BlobTrigger("test-trigger-poco-dotnet-isolated/{name}")] TestBlobData triggerBlob, string name, | ||
FunctionContext context) | ||
{ | ||
_logger.LogInformation(".NET Blob trigger function processed a blob.\n Name: " + name + "\n Content: " + triggerBlob.BlobText); | ||
return triggerBlob; | ||
} | ||
|
||
[Function(nameof(BlobTriggerStringTest))] | ||
[BlobOutput("test-output-string-dotnet-isolated/{name}")] | ||
public string BlobTriggerStringTest( | ||
[BlobTrigger("test-trigger-string-dotnet-isolated/{name}")] string triggerBlobText, string name, | ||
FunctionContext context) | ||
{ | ||
_logger.LogInformation(".NET Blob trigger function processed a blob.\n Name: " + name + "\n Content: " + triggerBlobText); | ||
return triggerBlobText; | ||
} | ||
|
||
[Function(nameof(BlobTriggerStreamTest))] | ||
[BlobOutput("test-output-stream-dotnet-isolated/{name}")] | ||
public async Task<Stream> BlobTriggerStreamTest( | ||
[BlobTrigger("test-trigger-stream-dotnet-isolated/{name}")] Stream stream, string name) | ||
{ | ||
using var blobStreamReader = new StreamReader(stream); | ||
var content = await blobStreamReader.ReadToEndAsync(); | ||
_logger.LogInformation(".NET Blob trigger function processed a blob.\n Name: " + name + "\n Content: " + content); | ||
return stream; | ||
|
||
} | ||
|
||
[Function(nameof(BlobTriggerBlobClientTest))] | ||
[BlobOutput("test-output-blobclient-dotnet-isolated/{name}")] | ||
public async Task<string> BlobTriggerBlobClientTest( | ||
[BlobTrigger("test-trigger-blobclient-dotnet-isolated/{name}")] BlobClient client, string name) | ||
{ | ||
var downloadResult = await client.DownloadContentAsync(); | ||
var content = downloadResult.Value.Content.ToString(); | ||
_logger.LogInformation(".NET Blob trigger function processed a blob.\n Name: " + name + "\n Content: " + content); | ||
return content; | ||
} | ||
|
||
[Function(nameof(BlobTriggerBlobContainerClientTest))] | ||
[BlobOutput("test-output-containerclient-dotnet-isolated/{name}")] | ||
public async Task<string> BlobTriggerBlobContainerClientTest( | ||
[BlobTrigger("test-trigger-containerclient-dotnet-isolated/{name}")] BlobContainerClient client, string name) | ||
{ | ||
var blobClient = client.GetBlobClient(name); | ||
var downloadResult = await blobClient.DownloadContentAsync(); | ||
var content = downloadResult.Value.Content.ToString(); | ||
_logger.LogInformation(".NET Blob trigger function processed a blob.\n Name: " + name + "\n Content: " + content); | ||
return content; | ||
} | ||
|
||
public class TestBlobData | ||
{ | ||
[JsonPropertyName("text")] | ||
public string BlobText { get; set; } | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Copyright (c) .NET Foundation. All rights reserved. | ||
// Licensed under the MIT License. See License.txt in the project root for license information. | ||
|
||
namespace Microsoft.Azure.Functions.Worker.E2EApp.Blob | ||
{ | ||
public class Book | ||
{ | ||
public string Id { get; set; } | ||
public string Name { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.