-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mads Klinkby
committed
Nov 2, 2024
1 parent
c0dd0c4
commit 30f0523
Showing
5 changed files
with
349 additions
and
0 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
tests/Klinkby.VCard.Benchmark/Klinkby.VCard.Benchmark.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,16 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<Configurations>Release</Configurations> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="BenchmarkDotNet" Version="0.14.0" /> | ||
<PackageReference Include="Klinkby.VCard" Version="2.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
using BenchmarkDotNet.Running; | ||
|
||
BenchmarkSwitcher.FromAssemblies([typeof(Program).Assembly]).Run(args); |
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,62 @@ | ||
using BenchmarkDotNet.Attributes; | ||
using BenchmarkDotNet.Configs; | ||
using BenchmarkDotNet.Jobs; | ||
|
||
namespace Klinkby.VCard.Benchmark; | ||
|
||
[Config(typeof(Config))] | ||
public class VCardBenchmark | ||
{ | ||
private VCalendar? _vCalendar; | ||
|
||
[GlobalSetup] | ||
public void Setup() => _vCalendar = CreateVCalendar(); | ||
|
||
[Benchmark] | ||
public void VCalendarToString() => _ = _vCalendar!.ToString(); | ||
|
||
private static VEvent CreateVEvent() | ||
{ | ||
#pragma warning disable CS0618 // Type or member is obsolete | ||
VEvent evt = new( | ||
new DateTime(2022, 1, 1, 0, 0, 0, DateTimeKind.Utc), | ||
new DateTime(2022, 1, 1, 1, 0, 0, DateTimeKind.Utc), | ||
new DateTime(2022, 1, 1, 0, 0, 0, DateTimeKind.Utc) | ||
) | ||
{ | ||
Organizer = "organizer", | ||
Location = "location", | ||
Description = "description", | ||
Transp = "transp", | ||
Sequence = 1, | ||
UId = "uid", | ||
Summary = "summary", | ||
Priority = 1, | ||
Class = "class", | ||
}; | ||
#pragma warning restore CS0618 // Type or member is obsolete | ||
return evt; | ||
} | ||
|
||
private static VCalendar CreateVCalendar() => | ||
new() | ||
{ | ||
Method = "PUBLISH", | ||
Events = Enumerable.Range(0, 10).Select(_ => CreateVEvent()).ToArray() | ||
}; | ||
|
||
#pragma warning disable CA1812 | ||
/// <inheritdoc /> | ||
private sealed class Config : ManualConfig | ||
{ | ||
/// <inheritdoc /> | ||
public Config() | ||
{ | ||
var baseJob = Job.MediumRun; | ||
|
||
AddJob(baseJob.WithNuGet("Klinkby.VCard", "2.0.0").WithId("2.0.0")); | ||
AddJob(baseJob.WithNuGet("Klinkby.VCard", "3.0.2").WithId("3.0.2")); | ||
} | ||
} | ||
#pragma warning restore CA1812 | ||
} |
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,261 @@ | ||
{ | ||
"version": 1, | ||
"dependencies": { | ||
"net8.0": { | ||
"BenchmarkDotNet": { | ||
"type": "Direct", | ||
"requested": "[0.14.0, )", | ||
"resolved": "0.14.0", | ||
"contentHash": "eIPSDKi3oni734M1rt/XJAwGQQOIf9gLjRRKKJ0HuVy3vYd7gnmAIX1bTjzI9ZbAY/nPddgqqgM/TeBYitMCIg==", | ||
"dependencies": { | ||
"BenchmarkDotNet.Annotations": "0.14.0", | ||
"CommandLineParser": "2.9.1", | ||
"Gee.External.Capstone": "2.3.0", | ||
"Iced": "1.17.0", | ||
"Microsoft.CodeAnalysis.CSharp": "4.1.0", | ||
"Microsoft.Diagnostics.Runtime": "2.2.332302", | ||
"Microsoft.Diagnostics.Tracing.TraceEvent": "3.1.8", | ||
"Microsoft.DotNet.PlatformAbstractions": "3.1.6", | ||
"Perfolizer": "[0.3.17]", | ||
"System.Management": "5.0.0" | ||
} | ||
}, | ||
"Klinkby.VCard": { | ||
"type": "Direct", | ||
"requested": "[2.0.0, )", | ||
"resolved": "2.0.0", | ||
"contentHash": "hJP4KbvTzBT67RP8E0K11i2UkCfYFo9dL/wz+ONDDDzX1D/cPlg9EArMFytrUa2QpWK04nD9pPiPyfUH5wNJyw==" | ||
}, | ||
"BenchmarkDotNet.Annotations": { | ||
"type": "Transitive", | ||
"resolved": "0.14.0", | ||
"contentHash": "CUDCg6bgHrDzhjnA+IOBl5gAo8Y5hZ2YSs7MBXrYMlMKpBZqrD5ez0537uDveOkcf+YWAoK+S4sMcuWPbIz8bw==" | ||
}, | ||
"CommandLineParser": { | ||
"type": "Transitive", | ||
"resolved": "2.9.1", | ||
"contentHash": "OE0sl1/sQ37bjVsPKKtwQlWDgqaxWgtme3xZz7JssWUzg5JpMIyHgCTY9MVMxOg48fJ1AgGT3tgdH5m/kQ5xhA==" | ||
}, | ||
"Gee.External.Capstone": { | ||
"type": "Transitive", | ||
"resolved": "2.3.0", | ||
"contentHash": "2ap/rYmjtzCOT8hxrnEW/QeiOt+paD8iRrIcdKX0cxVwWLFa1e+JDBNeECakmccXrSFeBQuu5AV8SNkipFMMMw==" | ||
}, | ||
"Iced": { | ||
"type": "Transitive", | ||
"resolved": "1.17.0", | ||
"contentHash": "8x+HCVTl/HHTGpscH3vMBhV8sknN/muZFw9s3TsI8SA6+c43cOTCi2+jE4KsU8pNLbJ++iF2ZFcpcXHXtDglnw==" | ||
}, | ||
"Microsoft.Bcl.AsyncInterfaces": { | ||
"type": "Transitive", | ||
"resolved": "1.1.0", | ||
"contentHash": "1Am6l4Vpn3/K32daEqZI+FFr96OlZkgwK2LcT3pZ2zWubR5zTPW3/FkO1Rat9kb7oQOa4rxgl9LJHc5tspCWfg==" | ||
}, | ||
"Microsoft.CodeAnalysis.Analyzers": { | ||
"type": "Transitive", | ||
"resolved": "3.3.3", | ||
"contentHash": "j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==" | ||
}, | ||
"Microsoft.CodeAnalysis.Common": { | ||
"type": "Transitive", | ||
"resolved": "4.1.0", | ||
"contentHash": "bNzTyxP3iD5FPFHfVDl15Y6/wSoI7e3MeV0lOaj9igbIKTjgrmuw6LoVJ06jUNFA7+KaDC/OIsStWl/FQJz6sQ==", | ||
"dependencies": { | ||
"Microsoft.CodeAnalysis.Analyzers": "3.3.3", | ||
"System.Collections.Immutable": "5.0.0", | ||
"System.Memory": "4.5.4", | ||
"System.Reflection.Metadata": "5.0.0", | ||
"System.Runtime.CompilerServices.Unsafe": "5.0.0", | ||
"System.Text.Encoding.CodePages": "4.5.1", | ||
"System.Threading.Tasks.Extensions": "4.5.4" | ||
} | ||
}, | ||
"Microsoft.CodeAnalysis.CSharp": { | ||
"type": "Transitive", | ||
"resolved": "4.1.0", | ||
"contentHash": "sbu6kDGzo9bfQxuqWpeEE7I9P30bSuZEnpDz9/qz20OU6pm79Z63+/BsAzO2e/R/Q97kBrpj647wokZnEVr97w==", | ||
"dependencies": { | ||
"Microsoft.CodeAnalysis.Common": "[4.1.0]" | ||
} | ||
}, | ||
"Microsoft.Diagnostics.NETCore.Client": { | ||
"type": "Transitive", | ||
"resolved": "0.2.251802", | ||
"contentHash": "bqnYl6AdSeboeN4v25hSukK6Odm6/54E3Y2B8rBvgqvAW0mF8fo7XNRVE2DMOG7Rk0fiuA079QIH28+V+W1Zdg==", | ||
"dependencies": { | ||
"Microsoft.Bcl.AsyncInterfaces": "1.1.0", | ||
"Microsoft.Extensions.Logging": "2.1.1" | ||
} | ||
}, | ||
"Microsoft.Diagnostics.Runtime": { | ||
"type": "Transitive", | ||
"resolved": "2.2.332302", | ||
"contentHash": "Hp84ivxSKIMTBzYSATxmUsm3YSXHWivcwiRRbsydGmqujMUK8BAueLN0ssAVEOkOBmh0vjUBhrq7YcroT7VCug==", | ||
"dependencies": { | ||
"Microsoft.Diagnostics.NETCore.Client": "0.2.251802", | ||
"System.Collections.Immutable": "5.0.0", | ||
"System.Runtime.CompilerServices.Unsafe": "5.0.0" | ||
} | ||
}, | ||
"Microsoft.Diagnostics.Tracing.TraceEvent": { | ||
"type": "Transitive", | ||
"resolved": "3.1.8", | ||
"contentHash": "kl3UMrZKSeSEYZ8rt/GjLUQToREjgQABqfg6PzQBmSlYHTZOKE9ePEOS2xptROQ9SVvngg3QGX51TIT11iZ0wA==", | ||
"dependencies": { | ||
"Microsoft.Win32.Registry": "4.4.0", | ||
"System.Runtime.CompilerServices.Unsafe": "5.0.0" | ||
} | ||
}, | ||
"Microsoft.DotNet.PlatformAbstractions": { | ||
"type": "Transitive", | ||
"resolved": "3.1.6", | ||
"contentHash": "jek4XYaQ/PGUwDKKhwR8K47Uh1189PFzMeLqO83mXrXQVIpARZCcfuDedH50YDTepBkfijCZN5U/vZi++erxtg==" | ||
}, | ||
"Microsoft.Extensions.Configuration": { | ||
"type": "Transitive", | ||
"resolved": "2.1.1", | ||
"contentHash": "LjVKO6P2y52c5ZhTLX/w8zc5H4Y3J/LJsgqTBj49TtFq/hAtVNue/WA0F6/7GMY90xhD7K0MDZ4qpOeWXbLvzg==", | ||
"dependencies": { | ||
"Microsoft.Extensions.Configuration.Abstractions": "2.1.1" | ||
} | ||
}, | ||
"Microsoft.Extensions.Configuration.Abstractions": { | ||
"type": "Transitive", | ||
"resolved": "2.1.1", | ||
"contentHash": "VfuZJNa0WUshZ/+8BFZAhwFKiKuu/qOUCFntfdLpHj7vcRnsGHqd3G2Hse78DM+pgozczGM63lGPRLmy+uhUOA==", | ||
"dependencies": { | ||
"Microsoft.Extensions.Primitives": "2.1.1" | ||
} | ||
}, | ||
"Microsoft.Extensions.Configuration.Binder": { | ||
"type": "Transitive", | ||
"resolved": "2.1.1", | ||
"contentHash": "fcLCTS03poWE4v9tSNBr3pWn0QwGgAn1vzqHXlXgvqZeOc7LvQNzaWcKRQZTdEc3+YhQKwMsOtm3VKSA2aWQ8w==", | ||
"dependencies": { | ||
"Microsoft.Extensions.Configuration": "2.1.1" | ||
} | ||
}, | ||
"Microsoft.Extensions.DependencyInjection.Abstractions": { | ||
"type": "Transitive", | ||
"resolved": "2.1.1", | ||
"contentHash": "MgYpU5cwZohUMKKg3sbPhvGG+eAZ/59E9UwPwlrUkyXU+PGzqwZg9yyQNjhxuAWmoNoFReoemeCku50prYSGzA==" | ||
}, | ||
"Microsoft.Extensions.Logging": { | ||
"type": "Transitive", | ||
"resolved": "2.1.1", | ||
"contentHash": "hh+mkOAQDTp6XH80xJt3+wwYVzkbwYQl9XZRCz4Um0JjP/o7N9vHM3rZ6wwwtr+BBe/L6iBO2sz0px6OWBzqZQ==", | ||
"dependencies": { | ||
"Microsoft.Extensions.Configuration.Binder": "2.1.1", | ||
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1", | ||
"Microsoft.Extensions.Logging.Abstractions": "2.1.1", | ||
"Microsoft.Extensions.Options": "2.1.1" | ||
} | ||
}, | ||
"Microsoft.Extensions.Logging.Abstractions": { | ||
"type": "Transitive", | ||
"resolved": "2.1.1", | ||
"contentHash": "XRzK7ZF+O6FzdfWrlFTi1Rgj2080ZDsd46vzOjadHUB0Cz5kOvDG8vI7caa5YFrsHQpcfn0DxtjS4E46N4FZsA==" | ||
}, | ||
"Microsoft.Extensions.Options": { | ||
"type": "Transitive", | ||
"resolved": "2.1.1", | ||
"contentHash": "V7lXCU78lAbzaulCGFKojcCyG8RTJicEbiBkPJjFqiqXwndEBBIehdXRMWEVU3UtzQ1yDvphiWUL9th6/4gJ7w==", | ||
"dependencies": { | ||
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1", | ||
"Microsoft.Extensions.Primitives": "2.1.1" | ||
} | ||
}, | ||
"Microsoft.Extensions.Primitives": { | ||
"type": "Transitive", | ||
"resolved": "2.1.1", | ||
"contentHash": "scJ1GZNIxMmjpENh0UZ8XCQ6vzr/LzeF9WvEA51Ix2OQGAs9WPgPu8ABVUdvpKPLuor/t05gm6menJK3PwqOXg==", | ||
"dependencies": { | ||
"System.Memory": "4.5.1", | ||
"System.Runtime.CompilerServices.Unsafe": "4.5.1" | ||
} | ||
}, | ||
"Microsoft.NETCore.Platforms": { | ||
"type": "Transitive", | ||
"resolved": "5.0.0", | ||
"contentHash": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==" | ||
}, | ||
"Microsoft.Win32.Registry": { | ||
"type": "Transitive", | ||
"resolved": "5.0.0", | ||
"contentHash": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", | ||
"dependencies": { | ||
"System.Security.AccessControl": "5.0.0", | ||
"System.Security.Principal.Windows": "5.0.0" | ||
} | ||
}, | ||
"Perfolizer": { | ||
"type": "Transitive", | ||
"resolved": "0.3.17", | ||
"contentHash": "FQgtCoF2HFwvzKWulAwBS5BGLlh8pgbrJtOp47jyBwh2CW16juVtacN1azOA2BqdrJXkXTNLNRMo7ZlHHiuAnA==" | ||
}, | ||
"System.CodeDom": { | ||
"type": "Transitive", | ||
"resolved": "5.0.0", | ||
"contentHash": "JPJArwA1kdj8qDAkY2XGjSWoYnqiM7q/3yRNkt6n28Mnn95MuEGkZXUbPBf7qc3IjwrGY5ttQon7yqHZyQJmOQ==" | ||
}, | ||
"System.Collections.Immutable": { | ||
"type": "Transitive", | ||
"resolved": "5.0.0", | ||
"contentHash": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==" | ||
}, | ||
"System.Management": { | ||
"type": "Transitive", | ||
"resolved": "5.0.0", | ||
"contentHash": "MF1CHaRcC+MLFdnDthv4/bKWBZnlnSpkGqa87pKukQefgEdwtb9zFW6zs0GjPp73qtpYYg4q6PEKbzJbxCpKfw==", | ||
"dependencies": { | ||
"Microsoft.NETCore.Platforms": "5.0.0", | ||
"Microsoft.Win32.Registry": "5.0.0", | ||
"System.CodeDom": "5.0.0" | ||
} | ||
}, | ||
"System.Memory": { | ||
"type": "Transitive", | ||
"resolved": "4.5.4", | ||
"contentHash": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==" | ||
}, | ||
"System.Reflection.Metadata": { | ||
"type": "Transitive", | ||
"resolved": "5.0.0", | ||
"contentHash": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==" | ||
}, | ||
"System.Runtime.CompilerServices.Unsafe": { | ||
"type": "Transitive", | ||
"resolved": "5.0.0", | ||
"contentHash": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==" | ||
}, | ||
"System.Security.AccessControl": { | ||
"type": "Transitive", | ||
"resolved": "5.0.0", | ||
"contentHash": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", | ||
"dependencies": { | ||
"Microsoft.NETCore.Platforms": "5.0.0", | ||
"System.Security.Principal.Windows": "5.0.0" | ||
} | ||
}, | ||
"System.Security.Principal.Windows": { | ||
"type": "Transitive", | ||
"resolved": "5.0.0", | ||
"contentHash": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==" | ||
}, | ||
"System.Text.Encoding.CodePages": { | ||
"type": "Transitive", | ||
"resolved": "4.5.1", | ||
"contentHash": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==", | ||
"dependencies": { | ||
"Microsoft.NETCore.Platforms": "2.1.2", | ||
"System.Runtime.CompilerServices.Unsafe": "4.5.2" | ||
} | ||
}, | ||
"System.Threading.Tasks.Extensions": { | ||
"type": "Transitive", | ||
"resolved": "4.5.4", | ||
"contentHash": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==" | ||
} | ||
} | ||
} | ||
} |
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