Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: move tls-scenarios to a separate ci config #2075

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions build/benchmarks-ci-azure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ jobs:
dependsOn: [Containers_Azure_Intel_Linux, Containers_Azure_Arm64_Linux]
condition: succeededOrFailed()
steps:
- template: trend-scenarios.yml
- template: tls-scenarios.yml
parameters:
connection: ASPNET Benchmarks Service Bus
serviceBusQueueName: azure
Expand All @@ -204,7 +204,7 @@ jobs:
dependsOn: [IDNA_Azure_Amd_Linux]
condition: succeededOrFailed()
steps:
- template: trend-scenarios.yml
- template: tls-scenarios.yml
parameters:
connection: ASPNET Benchmarks Service Bus
serviceBusQueueName: azure
Expand All @@ -220,7 +220,7 @@ jobs:
dependsOn: [IDNA_Azure_Intel_Linux]
condition: succeededOrFailed()
steps:
- template: trend-scenarios.yml
- template: tls-scenarios.yml
parameters:
connection: ASPNET Benchmarks Service Bus
serviceBusQueueName: azure
Expand All @@ -234,7 +234,7 @@ jobs:
dependsOn: [IDNA_Azure_Intel_Linux]
condition: succeededOrFailed()
steps:
- template: trend-scenarios.yml
- template: tls-scenarios.yml
parameters:
connection: ASPNET Benchmarks Service Bus
serviceBusQueueName: azurearm64
Expand Down
8 changes: 4 additions & 4 deletions build/benchmarks.matrix.azure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,25 +72,25 @@ groups:
- jobs:

- name: IDNA Azure Amd Linux
template: trend-scenarios.yml
template: tls-scenarios.yml
profiles:
- idna-amd-lin

- jobs:

- name: IDNA Azure Intel Linux
template: trend-scenarios.yml
template: tls-scenarios.yml
profiles:
- idna-intel-lin

- jobs:

- name: IDNA Azure Amd Windows
template: trend-scenarios.yml
template: tls-scenarios.yml
profiles:
- idna-amd-win

- name: IDNA Azure Intel Windows
template: trend-scenarios.yml
template: tls-scenarios.yml
profiles:
- idna-intel-win
81 changes: 81 additions & 0 deletions build/tls-scenarios.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
parameters:
- name: arguments
type: string
default: ''
- name: connection
type: string
default: ''
- name: serviceBusQueueName
type: string
default: ''
- name: serviceBusNamespace
type: string
default: ''
- name: condition
type: string
default: 'true'

# Scenarios
- name: scenarios
type: object
default:

# TLS

- displayName: "HttpSys Windows: TLS Handshakes"
arguments: --scenario tls-handshakes-httpsys $(tlsJobs) --property scenario=HttpSysTLSHandshakes --application.options.requiredOperatingSystem windows

- displayName: "HttpSys Windows: mTLS Handshakes"
arguments: --scenario mTls-handshakes-httpsys $(tlsJobs) --property scenario=HttpSysMutualTLSHandshakes --application.options.requiredOperatingSystem windows

- displayName: "HttpSys Windows: TLS Renegotiation"
arguments: --scenario tls-renegotiation-httpsys $(tlsJobs) --property scenario=HttpSysTLSRenegotiation --application.options.requiredOperatingSystem windows

- displayName: "Kestrel Linux: TLS Handshakes"
arguments: --scenario tls-handshakes-kestrel $(tlsJobs) --property scenario=KestrelTLSHandshakes --application.options.requiredOperatingSystem linux

- displayName: "Kestrel Linux: mTLS Handshakes"
arguments: --scenario mTls-handshakes-kestrel $(tlsJobs) --property scenario=KestrelMutualTLSHandshakes --application.options.requiredOperatingSystem linux

- displayName: "Kestrel Linux: TLS Renegotiation"
arguments: --scenario tls-renegotiation-kestrel $(tlsJobs) --property scenario=KestrelTLSRenegotiation --application.options.requiredOperatingSystem linux

# Rejection

- displayName: "HttpSys Windows: Encoded URL symbols"
arguments: --scenario httpsys-encoded-url $(rejectionJobs) --property scenario=RejectionEncodedUrlHttpSys --application.options.requiredOperatingSystem windows

- displayName: "HttpSys Windows: Invalid Header"
arguments: --scenario httpsys-header-symbols $(rejectionJobs) --property scenario=RejectionInvalidHeaderHttpSys --application.options.requiredOperatingSystem windows

- displayName: "HttpSys Windows: Host Header Mismatch"
arguments: --scenario httpsys-hostheader-mismatch $(rejectionJobs) --property scenario=RejectionHostHeaderMismatchHttpSys --application.options.requiredOperatingSystem windows

- displayName: "Kestrel Linux: Encoded URL symbols"
arguments: --scenario kestrel-encoded-url $(rejectionJobs) --property scenario=RejectionEncodedUrlKestrel --application.options.requiredOperatingSystem linux

- displayName: "Kestrel Linux: Invalid Header"
arguments: --scenario kestrel-header-symbols $(rejectionJobs) --property scenario=RejectionInvalidHeaderKestrel --application.options.requiredOperatingSystem linux

- displayName: "Kestrel Linux: Host Header Mismatch"
arguments: --scenario kestrel-hostheader-mismatch $(rejectionJobs) --property scenario=RejectionHostHeaderMismatchKestrel --application.options.requiredOperatingSystem linux

steps:
- ${{ each s in parameters.scenarios }}:
- task: PublishToAzureServiceBus@2
displayName: "${{ s.displayName }}"
condition: succeededOrFailed()
timeoutInMinutes: 15
inputs:
connectedServiceName: ${{ parameters.connection }}
serviceBusQueueName: ${{ parameters.serviceBusQueueName }}
serviceBusNamespace: ${{ parameters.serviceBusNamespace }}
waitForCompletion: true
useDataContractSerializer: "false"
messageBody: |
{
"name": "crank",
"condition": "(${{ parameters.condition }})",
"retries": 1,
"args": [ "${{ s.arguments }} $(azureProfile) --config https://raw.githubusercontent.com/aspnet/Benchmarks/main/scenarios/steadystate.profile.yml --application.framework net10.0 --application.collectDependencies true ${{ parameters.arguments }} --application.options.collectCounters true --no-metadata --no-measurements --load.options.reuseBuild true --session $(session) --description \"${{ s.displayName }} $(System.JobDisplayName)\" --property buildId=\"$(buildId)\" --property buildNumber=\"$(buildNumber)\" --command-line-property --table TrendBenchmarks --sql SQL_CONNECTION_STRING --cert-tenant-id SQL_SERVER_TENANTID --cert-client-id SQL_SERVER_CLIENTID --cert-path SQL_SERVER_CERT_PATH --cert-sni --chart" ]
}
Loading