Merged PR 2: WIP: test pipeline...
0763bf65
John Reilly
committed
failed
6 changed files
main.bicep
/infra/main.bicep+46
/infra/main.bicep
Add comment 1 Plus  @description('Name of the eventhub namespace')
Add comment 2 Plus  param eventHubNamespaceName string
Add comment 3 Plus  
Add comment 4 Plus  @description('Name of the eventhub name')
Add comment 5 Plus  param eventHubName string
Add comment 6 Plus  
Add comment 7 Plus  @description('The service principal')
Add comment 8 Plus  param principalId string
Add comment 9 Plus  
Add comment 10 Plus  // Create an event hub namespace
Add comment 11 Plus  resource eventHubNamespace 'Microsoft.EventHub/namespaces@2021-01-01-preview' = {
Add comment 12 Plus   name: eventHubNamespaceName
Add comment 13 Plus   location: resourceGroup().location
Add comment 14 Plus   sku: {
Add comment 15 Plus   name: 'Standard'
Add comment 16 Plus   tier: 'Standard'
Add comment 17 Plus   capacity: 1
Add comment 18 Plus   }
Add comment 19 Plus   properties: {
Add comment 20 Plus   zoneRedundant: true
Add comment 21 Plus   }
Add comment 22 Plus  }
Add comment 23 Plus  
Add comment 24 Plus  // Create an event hub inside the namespace
Add comment 25 Plus  resource eventHub 'Microsoft.EventHub/namespaces/eventhubs@2021-01-01-preview' = {
Add comment 26 Plus   parent: eventHubNamespace
Add comment 27 Plus   name: eventHubName
Add comment 28 Plus   properties: {
Add comment 29 Plus   messageRetentionInDays: 7
Add comment 30 Plus   partitionCount: 1
Add comment 31 Plus   }
Add comment 32 Plus  }
Add comment 33 Plus  
Add comment 34 Plus  // give Azure Pipelines Service Principal permissions against the event hub
Add comment 35 Plus  
Add comment 36 Plus  var roleDefinitionAzureEventHubsDataOwner = subscriptionResourceId('Microsoft.Authorization/roleDefinitions', 'f526a384-b230-433a-b45c-95f59c4a2dec')
Add comment 37 Plus  
Add comment 38 Plus  resource integrationTestEventHubReceiverNamespaceRoleAssignment 'Microsoft.Authorization/roleAssignments@2018-01-01-preview' = {
Add comment 39 Plus   name: guid(principalId, eventHub.id, roleDefinitionAzureEventHubsDataOwner)
Add comment 40 Plus   scope: eventHubNamespace
Add comment 41 Plus   properties: {
Add comment 42 Plus   roleDefinitionId: roleDefinitionAzureEventHubsDataOwner
Add comment 43 Plus   principalId: principalId
Add comment 44 Plus   }
Add comment 45 Plus  }
Add comment 46 Plus  
EventHubTest.cs
/src/IntegrationTests/EventHubTest.cs+111
/src/IntegrationTests/EventHubTest.cs
Add comment 1 Plus  using System;
Add comment 2 Plus  using System.Collections.Generic;
Add comment 3 Plus  using System.Linq;
Add comment 4 Plus  using System.Text;
Add comment 5 Plus  using System.Threading;
Add comment 6 Plus  using System.Threading.Tasks;
Add comment 7 Plus  using Azure.Identity;
Add comment 8 Plus  using Azure.Messaging.EventHubs;
Add comment 9 Plus  using Azure.Messaging.EventHubs.Consumer;
Add comment 10 Plus  using Azure.Messaging.EventHubs.Producer;
Add comment 11 Plus  using FluentAssertions;
Add comment 12 Plus  using Microsoft.Extensions.Configuration;
Add comment 13 Plus  using Newtonsoft.Json;
Add comment 14 Plus  using Xunit;
Add comment 15 Plus  using Xunit.Abstractions;
Add comment 16 Plus  
Add comment 17 Plus  namespace IntegrationTests
Add comment 18 Plus  {
Add comment 19 Plus   public record EchoMessage(string Id, string Message, DateTime Timestamp);
Add comment 20 Plus  
Add comment 21 Plus   public class EventHubTest
Add comment 22 Plus   {
Add comment 23 Plus   private readonly ITestOutputHelper _output;
Add comment 24 Plus  
Add comment 25 Plus   public EventHubTest(ITestOutputHelper output)
Add comment 26 Plus   {
Add comment 27 Plus   _output = output;
Add comment 28 Plus   }
Add comment 29 Plus  
Add comment 30 Plus   [Fact]
Add comment 31 Plus   public async Task Can_post_message_to_event_hub_and_read_it_back()
Add comment 32 Plus   {
Add comment 33 Plus   // ARRANGE
Add comment 34 Plus   var configuration = new ConfigurationBuilder()
Add comment 35 Plus   .AddEnvironmentVariables()
Add comment 36 Plus   .Build();
Add comment 37 Plus  
Add comment 38 Plus   // populated by variables specified in the Azure Pipeline
Add comment 39 Plus   var eventhubNamespaceName = configuration["EVENTHUBNAMESPACENAME"];
Add comment 40 Plus   eventhubNamespaceName.Should().NotBeNull();
Add comment 41 Plus   var eventhubName = configuration["EVENTHUBNAME"];
Add comment 42 Plus   eventhubName.Should().NotBeNull();
Add comment 43 Plus   var tenantId = configuration["TENANTID"];
Add comment 44 Plus   tenantId.Should().NotBeNull();
Add comment 45 Plus  
Add comment 46 Plus   // populated as a consequence of the addSpnToEnvironment in the azure-pipelines.yml
Add comment 47 Plus   var servicePrincipalId = configuration["SERVICEPRINCIPALID"];
Add comment 48 Plus   servicePrincipalId.Should().NotBeNull();
Add comment 49 Plus   var servicePrincipalKey = configuration["SERVICEPRINCIPALKEY"];
Add comment 50 Plus   servicePrincipalKey.Should().NotBeNull();
Add comment 51 Plus  
Add comment 52 Plus   var fullyQualifiedNamespace = $"{eventhubNamespaceName}.servicebus.windows.net";
Add comment 53 Plus  
Add comment 54 Plus   var clientCredential = new ClientSecretCredential(tenantId, servicePrincipalId, servicePrincipalKey);
Add comment 55 Plus   var eventHubClient = new EventHubProducerClient(
Add comment 56 Plus   fullyQualifiedNamespace: fullyQualifiedNamespace,
Add comment 57 Plus   eventHubName: eventhubName,
Add comment 58 Plus   credential: clientCredential
Add comment 59 Plus   );
Add comment 60 Plus   var ourGuid = Guid.NewGuid().ToString();
Add comment 61 Plus   var now = DateTime.UtcNow;
Add comment 62 Plus   var sentEchoMessage = new EchoMessage(Id: ourGuid, Message: $"Test message", Timestamp: now);
Add comment 63 Plus   var sentEventData = new EventData(
Add comment 64 Plus   Encoding.UTF8.GetBytes(JsonConvert.SerializeObject(sentEchoMessage))
Add comment 65 Plus   );
Add comment 66 Plus  
Add comment 67 Plus   // ACT
Add comment 68 Plus   await eventHubClient.SendAsync(new List<EventData> { sentEventData }, CancellationToken.None);
Add comment 69 Plus  
Add comment 70 Plus   var eventHubConsumerClient = new EventHubConsumerClient(
Add comment 71 Plus   consumerGroup: EventHubConsumerClient.DefaultConsumerGroupName,
Add comment 72 Plus   fullyQualifiedNamespace: fullyQualifiedNamespace,
Add comment 73 Plus   eventHubName: eventhubName,
Add comment 74 Plus   credential: clientCredential
Add comment 75 Plus   );
Add comment 76 Plus  
Add comment 77 Plus   List<PartitionEvent> partitionEvents = new();
Add comment 78 Plus   await foreach (var partitionEvent in eventHubConsumerClient.ReadEventsAsync(new ReadEventOptions
Add comment 79 Plus   {
Add comment 80 Plus   MaximumWaitTime = TimeSpan.FromSeconds(10)
Add comment 81 Plus   }))
Add comment 82 Plus   {
Add comment 83 Plus   if (partitionEvent.Data == null) break;
Add comment 84 Plus   _output.WriteLine(Encoding.UTF8.GetString(partitionEvent.Data.EventBody.ToArray()));
Add comment 85 Plus   partitionEvents.Add(partitionEvent);
Add comment 86 Plus   }
Add comment 87 Plus  
Add comment 88 Plus   // ASSERT
Add comment 89 Plus   partitionEvents.Count.Should().BeGreaterOrEqualTo(1);
Add comment 90 Plus   var firstOne = partitionEvents.FirstOrDefault(evnt =>
Add comment 91 Plus   ExtractTypeFromEventBody<EchoMessage>(evnt, _output)?.Id == ourGuid
Add comment 92 Plus   );
Add comment 93 Plus   var receivedEchoMessage = ExtractTypeFromEventBody<EchoMessage>(firstOne, _output);
Add comment 94 Plus   receivedEchoMessage.Should().BeEquivalentTo(sentEchoMessage, because: "the event body should be the same one posted to the message queue");
Add comment 95 Plus   }
Add comment 96 Plus  
Add comment 97 Plus   private static T ExtractTypeFromEventBody<T>(PartitionEvent evnt, ITestOutputHelper _output)
Add comment 98 Plus   {
Add comment 99 Plus   try
Add comment 100 Plus   {
Add comment 101 Plus   return JsonConvert.DeserializeObject<T>(Encoding.UTF8.GetString(evnt.Data.EventBody.ToArray()));
Add comment 102 Plus   }
Add comment 103 Plus   catch (JsonException)
Add comment 104 Plus   {
Add comment 105 Plus   _output.WriteLine("[" + Encoding.UTF8.GetString(evnt.Data.EventBody.ToArray()) + "] is probably not JSON");
Add comment 106 Plus   return default(T);
Add comment 107 Plus   }
Add comment 108 Plus   }
Add comment 109 Plus   }
Add comment 110 Plus  }
Add comment 111 Plus  
IntegrationTest.csproj
/src/IntegrationTests/IntegrationTest.csproj+27
/src/IntegrationTests/IntegrationTest.csproj
Add comment 1 Plus  <Project Sdk="Microsoft.NET.Sdk">
Add comment 2 Plus  
Add comment 3 Plus   <PropertyGroup>
Add comment 4 Plus   <TargetFramework>net5.0</TargetFramework>
Add comment 5 Plus  
Add comment 6 Plus   <IsPackable>false</IsPackable>
Add comment 7 Plus   </PropertyGroup>
Add comment 8 Plus  
Add comment 9 Plus   <ItemGroup>
Add comment 10 Plus   <PackageReference Include="Azure.Identity" Version="1.4.1" />
Add comment 11 Plus   <PackageReference Include="Azure.Messaging.EventHubs" Version="5.6.1" />
Add comment 12 Plus   <PackageReference Include="FluentAssertions" Version="6.1.0" />
Add comment 13 Plus   <PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="5.0.0" />
Add comment 14 Plus   <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
Add comment 15 Plus   <PackageReference Include="xunit" Version="2.4.1" />
Add comment 16 Plus   <PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
Add comment 17 Plus   <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Add comment 18 Plus   <PrivateAssets>all</PrivateAssets>
Add comment 19 Plus   </PackageReference>
Add comment 20 Plus   <PackageReference Include="coverlet.collector" Version="1.3.0">
Add comment 21 Plus   <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Add comment 22 Plus   <PrivateAssets>all</PrivateAssets>
Add comment 23 Plus   </PackageReference>
Add comment 24 Plus   </ItemGroup>
Add comment 25 Plus  
Add comment 26 Plus  </Project>
Add comment 27 Plus  
.gitignore
/.gitignore+3
/.gitignore
Add comment 1 Plus  bin
Add comment 2 Plus  obj
Add comment 3 Plus  
azure-pipelines.yml
/azure-pipelines.yml
/azure-pipelines.yml
README.md
/README.md
/README.md