-
Notifications
You must be signed in to change notification settings - Fork 272
/
Copy pathEnumerateObject.cs
66 lines (56 loc) · 1.78 KB
/
EnumerateObject.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using BenchmarkDotNet.Attributes;
using MicroBenchmarks;
using System.Text.Json.Tests;
namespace System.Text.Json.Document.Tests
{
[BenchmarkCategory(Categories.Libraries, Categories.JSON)]
public class Perf_EnumerateObject
{
public enum TestCaseType
{
ObjectProperties,
StringProperties,
NumericProperties
}
private byte[] _dataUtf8;
private JsonDocument _document;
private JsonElement _element;
[ParamsAllValues]
public TestCaseType TestCase;
[GlobalSetup]
public void Setup()
{
string jsonString = JsonStrings.ResourceManager.GetString(TestCase.ToString());
_dataUtf8 = DocumentHelpers.RemoveFormatting(jsonString);
_document = JsonDocument.Parse(_dataUtf8);
_element = _document.RootElement;
}
[GlobalCleanup]
public void CleanUp()
{
_document.Dispose();
}
[Benchmark]
public void Parse()
{
using (JsonDocument obj = JsonDocument.Parse(_dataUtf8))
{
JsonElement dummy = obj.RootElement;
}
}
[Benchmark]
public void EnumerateProperties()
{
foreach (JsonProperty property in _element.EnumerateObject()) { }
}
[Benchmark]
public void PropertyIndexer()
{
JsonElement first = _element.GetProperty("first_property");
JsonElement middle = _element.GetProperty("middle_property");
}
}
}