Skip to content

Commit

Permalink
Move UriReplacement to kiota cli commons
Browse files Browse the repository at this point in the history
  • Loading branch information
calebkiage committed Nov 1, 2023
1 parent 04fd9bb commit 0622cb2
Show file tree
Hide file tree
Showing 4 changed files with 82 additions and 45 deletions.
78 changes: 78 additions & 0 deletions .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
name: Sonarcloud
on:
workflow_dispatch:
push:
branches:
- main
paths-ignore: ['**.md', '.vscode/**', '**.svg']
pull_request:
types: [opened, synchronize, reopened]
paths-ignore: ['**.md', '.vscode/**', '**.svg']

env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

jobs:
checksecret:
name: check if SONAR_TOKEN is set in github secrets
runs-on: ubuntu-latest
outputs:
is_SONAR_TOKEN_set: ${{ steps.checksecret_job.outputs.is_SONAR_TOKEN_set }}
steps:
- name: Check whether unity activation requests should be done
id: checksecret_job
run: |
echo "is_SONAR_TOKEN_set=${{ env.SONAR_TOKEN != '' }}" >> $GITHUB_OUTPUT
build:
needs: [checksecret]
if: needs.checksecret.outputs.is_SONAR_TOKEN_set == 'true'
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: 17
- name: Setup .NET 5 # At the moment the scanner requires dotnet 5 https://www.nuget.org/packages/dotnet-sonarscanner
uses: actions/setup-dotnet@v3
with:
dotnet-version: 5.0.x
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Cache SonarCloud packages
uses: actions/cache@v3
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache SonarCloud scanner
id: cache-sonar-scanner
uses: actions/cache@v3
with:
path: ./.sonar/scanner
key: ${{ runner.os }}-sonar-scanner
restore-keys: ${{ runner.os }}-sonar-scanner
- name: Install SonarCloud scanner
if: steps.cache-sonar-scanner.outputs.cache-hit != 'true'
shell: pwsh
run: |
New-Item -Path ./.sonar/scanner -ItemType Directory
dotnet tool update dotnet-sonarscanner --tool-path ./.sonar/scanner
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
CollectCoverage: true
CoverletOutputFormat: 'opencover' # https://github.com/microsoft/vstest/issues/4014#issuecomment-1307913682
shell: pwsh
run: |
./.sonar/scanner/dotnet-sonarscanner begin /k:"microsoft_kiota-cli-commons" /o:"microsoft" /d:sonar.login="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" /d:sonar.cs.opencover.reportsPaths="**/*.Tests/**/coverage.opencover.xml"
dotnet workload restore
dotnet build
dotnet test Microsoft.Kiota.Cli.Commons.sln --no-build --verbosity normal /p:CollectCoverage=true /p:CoverletOutputFormat=opencover
./.sonar/scanner/dotnet-sonarscanner end /d:sonar.login="${{ secrets.SONAR_TOKEN }}"
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System;
using Microsoft.Graph.Cli.Core.Http;
using Microsoft.Graph.Cli.Core.Http.UriReplacement;
using Xunit;

namespace Microsoft.Graph.Cli.Core.Tests.Http;
namespace Microsoft.Graph.Cli.Core.Tests.Http.UriReplacement;

public class MeUriReplacementTests
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,21 +1,4 @@
using System;
using System.Net.Http;
using System.Threading.Tasks;

namespace Microsoft.Graph.Cli.Core.Http;

/// <summary>
/// Interface for making URI replacements.
/// </summary>
public interface IUriReplacement
{
/// <summary>
/// Accepts a URI and returns a new URI with all replacements applied.
/// </summary>
/// <param name="original">The URI to apply replacements to</param>
/// <returns>A new URI with all replacements applied.</returns>
Uri? Replace(Uri? original);
}
namespace Microsoft.Graph.Cli.Core.Http.UriReplacement;

/// <summary>
/// Specialized replacement for /[version]/users/me with /[version]/me
Expand Down Expand Up @@ -90,27 +73,3 @@ public struct MeUriReplacement : IUriReplacement
return newUrl.Uri;
}
}

/// <summary>
/// Replaces a portion of the URL.
/// </summary>
public class UriReplacementHandler<TUriReplacement> : DelegatingHandler where TUriReplacement: IUriReplacement
{
private readonly TUriReplacement urlReplacement;

/// <summary>
/// Creates a new UriReplacementHandler.
/// </summary>
public UriReplacementHandler(TUriReplacement urlReplacement)
{
this.urlReplacement = urlReplacement;
}

/// <inheritdoc/>
protected override async Task<HttpResponseMessage> SendAsync(
HttpRequestMessage request, System.Threading.CancellationToken cancellationToken)
{
request.RequestUri = urlReplacement.Replace(request.RequestUri);
return await base.SendAsync(request, cancellationToken);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
<PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0" />
<PackageReference Include="Microsoft.Graph.Core" Version="3.1.0" />
<PackageReference Include="Microsoft.Kiota.Cli.Commons" Version="0.5.1-preview.1" />
<PackageReference Include="Microsoft.Kiota.Cli.Commons" Version="0.5.2-preview.1" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.2.0" />
<PackageReference Include="Spectre.Console" Version="0.47.0" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
Expand Down

0 comments on commit 0622cb2

Please sign in to comment.