-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MySqlConnector - traces instrumentation
- Loading branch information
Showing
16 changed files
with
184 additions
and
19 deletions.
There are no files selected for viewing
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
// <copyright file="MySqlConnectorTests.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 IntegrationTests.Helpers; | ||
using Xunit.Abstractions; | ||
|
||
namespace IntegrationTests; | ||
|
||
[Collection(MySqlCollection.Name)] | ||
public class MySqlConnectorTests : TestHelper | ||
{ | ||
private readonly MySqlFixture _mySql; | ||
|
||
public MySqlConnectorTests(ITestOutputHelper output, MySqlFixture mySql) | ||
: base("MySqlConnector", output) | ||
{ | ||
_mySql = mySql; | ||
} | ||
|
||
[Theory] | ||
[Trait("Category", "EndToEnd")] | ||
[Trait("Containers", "Linux")] | ||
[MemberData(nameof(LibraryVersion.MySqlConnector), MemberType = typeof(LibraryVersion))] | ||
public void SubmitsTraces(string packageVersion) | ||
{ | ||
using var collector = new MockSpansCollector(Output); | ||
SetExporter(collector); | ||
collector.Expect("MySqlConnector"); | ||
|
||
RunTestApplication(new() | ||
{ | ||
Arguments = $"--mysql {_mySql.Port}", | ||
PackageVersion = packageVersion | ||
}); | ||
|
||
collector.AssertExpectations(); | ||
} | ||
} |
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
52 changes: 52 additions & 0 deletions
52
test/test-applications/integrations/TestApplication.MySqlConnector/Program.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,52 @@ | ||
// <copyright file="Program.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 MySqlConnector; | ||
using TestApplication.Shared; | ||
|
||
namespace TestApplication.MySqlConnector; | ||
|
||
public static class Program | ||
{ | ||
public static async Task Main(string[] args) | ||
{ | ||
ConsoleHelper.WriteSplashScreen(args); | ||
|
||
var mySqlPort = GetMySqlPort(args); | ||
|
||
var connString = $@"Server=127.0.0.1;Port={mySqlPort};Uid=root"; | ||
|
||
using var connection = new MySqlConnection(connString); | ||
await connection.OpenAsync(); | ||
|
||
using var cmd = new MySqlCommand(@"SELECT 123;", connection); | ||
using var reader = await cmd.ExecuteReaderAsync(); | ||
while (await reader.ReadAsync()) | ||
{ | ||
Console.WriteLine(reader.GetInt32(0)); | ||
} | ||
} | ||
|
||
private static string GetMySqlPort(string[] args) | ||
{ | ||
if (args.Length > 1) | ||
{ | ||
return args[1]; | ||
} | ||
|
||
return "3306"; | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
...cations/integrations/TestApplication.MySqlConnector/TestApplication.MySqlConnector.csproj
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 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="MySqlConnector" VersionOverride="$(LibraryVersion)" /> | ||
</ItemGroup> | ||
|
||
</Project> |
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