86 lines
2.7 KiB
C#
86 lines
2.7 KiB
C#
// <copyright file="HttpTestData.cs" company="OpenTelemetry Authors">
|
|
// Copyright The OpenTelemetry Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
// </copyright>
|
|
|
|
using System.Collections.Generic;
|
|
using System.Reflection;
|
|
using System.Text.Json;
|
|
|
|
namespace OpenTelemetry.Instrumentation.Http.Tests
|
|
{
|
|
public static class HttpTestData
|
|
{
|
|
public static IEnumerable<object[]> ReadTestCases()
|
|
{
|
|
var assembly = Assembly.GetExecutingAssembly();
|
|
var input = JsonSerializer.Deserialize<HttpOutTestCase[]>(
|
|
assembly.GetManifestResourceStream("OpenTelemetry.Instrumentation.Http.Tests.http-out-test-cases.json"), new JsonSerializerOptions { PropertyNamingPolicy = JsonNamingPolicy.CamelCase });
|
|
return GetArgumentsFromTestCaseObject(input);
|
|
}
|
|
|
|
public static IEnumerable<object[]> GetArgumentsFromTestCaseObject(IEnumerable<HttpOutTestCase> input)
|
|
{
|
|
var result = new List<object[]>();
|
|
|
|
foreach (var testCase in input)
|
|
{
|
|
result.Add(new object[]
|
|
{
|
|
testCase,
|
|
});
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
public static string NormalizeValues(string value, string host, int port)
|
|
{
|
|
return value
|
|
.Replace("{host}", host)
|
|
.Replace("{port}", port.ToString())
|
|
#if NETFRAMEWORK
|
|
.Replace("{flavor}", "1.1");
|
|
#else
|
|
.Replace("{flavor}", "2.0");
|
|
#endif
|
|
}
|
|
|
|
public class HttpOutTestCase
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public string Method { get; set; }
|
|
|
|
public string Url { get; set; }
|
|
|
|
public Dictionary<string, string> Headers { get; set; }
|
|
|
|
public int ResponseCode { get; set; }
|
|
|
|
public string SpanName { get; set; }
|
|
|
|
public bool ResponseExpected { get; set; }
|
|
|
|
public bool? RecordException { get; set; }
|
|
|
|
public string SpanStatus { get; set; }
|
|
|
|
public bool? SpanStatusHasDescription { get; set; }
|
|
|
|
public Dictionary<string, string> SpanAttributes { get; set; }
|
|
}
|
|
}
|
|
}
|