Skip to content

Commit 0786341

Browse files
authoredDec 14, 2020
Merge pull request #18 from valentk777/FewTodoDone
Hardcoded path to absolute path changed
2 parents e22273f + 94f7b74 commit 0786341

File tree

7 files changed

+24
-16
lines changed

7 files changed

+24
-16
lines changed
 

‎benchmarks/Benchmarks.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="BenchmarkDotNet" Version="0.11.4" />
12-
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
13-
<PackageReference Include="SpanJson" Version="2.0.6" />
11+
<PackageReference Include="BenchmarkDotNet" Version="0.12.0" />
12+
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
13+
<PackageReference Include="SpanJson" Version="2.0.14" />
1414
</ItemGroup>
1515

1616
<ItemGroup>

‎benchmarks/BenchmarksBase.cs

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
using System.Collections.Generic;
33
using System.IO;
44
using System.Linq;
5-
using System.Reflection;
6-
using System.Text;
75
using BenchmarkDotNet.Attributes;
86
using BenchmarkDotNet.Configs;
97
using BenchmarkDotNet.Jobs;
@@ -26,8 +24,8 @@ public ConfigWithCustomEnvVars()
2624

2725
public IEnumerable<object[]> TestData()
2826
{
29-
var testDataDir = @"C:\prj\simdjsonsharp\jsonexamples"; // TODO: fix absolute path
30-
string[] files = Directory.GetFiles(testDataDir, "*.json", SearchOption.AllDirectories).ToArray();
27+
string jsonExamples = Environment.GetEnvironmentVariable("pathToJsonExamples");
28+
string[] files = Directory.GetFiles(jsonExamples, "*.json", SearchOption.AllDirectories).ToArray();
3129

3230
foreach (var file in files)
3331
{

‎benchmarks/Program.cs

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System;
22
using System.IO;
3+
using System.Reflection;
34
using BenchmarkDotNet.Running;
45

56
namespace Benchmarks
@@ -8,6 +9,13 @@ public class Program
89
{
910
public static void Main(string[] args)
1011
{
12+
const string envVariable = "pathToJsonExamples";
13+
if (Environment.GetEnvironmentVariable(envVariable) == null)
14+
{
15+
string root = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
16+
string path = Path.Join(Directory.GetParent(root).Parent.Parent.Parent.FullName, "jsonexamples");
17+
Environment.SetEnvironmentVariable(envVariable, path);
18+
}
1119
BenchmarkSwitcher.FromAssembly(typeof(Program).Assembly).Run(args);
1220
}
1321
}

‎src/BindingsForNativeLib/BindingsGenerator/BindingsGenerator.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="CppAst" Version="0.5.8" />
11+
<PackageReference Include="CppAst" Version="0.5.9" />
1212
<PackageReference Include="CppPinvokeGenerator" Version="0.1.4" />
1313
</ItemGroup>
1414

‎tests/MinifierTests.cs

+8-6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ namespace SimdJsonSharp.Tests
88
{
99
public class MinifierTests
1010
{
11+
private string testDataDir;
12+
13+
public MinifierTests()
14+
{
15+
string currentDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
16+
testDataDir = Path.Join(Directory.GetParent(currentDir).Parent.Parent.Parent.FullName, "jsonexamples");
17+
}
18+
1119
//[Fact]
1220
public void ValidateMinifier()
1321
{
@@ -24,9 +32,6 @@ public void ValidateMinifier()
2432
[Fact]
2533
public unsafe void ValidateMinimizedJson()
2634
{
27-
string currentDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
28-
string testDataDir = Path.Combine(currentDir, @"../../../../jsonexamples");
29-
3035
string[] files = Directory.GetFiles(testDataDir, "*.json", SearchOption.AllDirectories);
3136
// 20 files, ~15Mb of JSON
3237
Assert.NotEmpty(files);
@@ -46,9 +51,6 @@ public unsafe void ValidateMinimizedJson()
4651
[Fact]
4752
public unsafe void ValidateMinimizedJsonN()
4853
{
49-
string currentDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
50-
string testDataDir = Path.Combine(currentDir, @"../../../../jsonexamples");
51-
5254
string[] files = Directory.GetFiles(testDataDir, "*.json", SearchOption.AllDirectories);
5355
// 20 files, ~15Mb of JSON
5456
Assert.NotEmpty(files);

‎tests/SimdJsonSharp.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.2" />
1111
<PackageReference Include="xunit" Version="2.4.1" />
1212
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
1313
<PrivateAssets>all</PrivateAssets>

‎tests/ValidateTestFilesTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class ValidateTestFilesTests
1515
public ValidateTestFilesTests()
1616
{
1717
string currentDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
18-
testDataDir = Path.Combine(currentDir, @"C:\prj\simdjson\jsonexamples");
18+
testDataDir = Path.Join(Directory.GetParent(currentDir).Parent.Parent.Parent.FullName, "jsonexamples");
1919
}
2020

2121
[Fact]

0 commit comments

Comments
 (0)
Please sign in to comment.