Skip to content

Commit 030ac29

Browse files
authored
Added shared library for test application: Svg.Tests.Common (#1136)
- Refactored the shared test codes - Removed Svg.Benchmark dependency on Svg.UnitTests
1 parent 3b41c8c commit 030ac29

20 files changed

+270
-352
lines changed

Source/Properties/AssemblyInfo.cs

+16-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using System;
22
using System.Reflection;
33
using System.Runtime.InteropServices;
4+
using System.Runtime.CompilerServices;
45

56
// General Information about an assembly is controlled through the following
67
// set of attributes. Change these attribute values to modify the information
@@ -24,16 +25,23 @@
2425

2526
[assembly: CLSCompliant(true)]
2627

27-
[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("Svg.UnitTests,PublicKey=" +
28-
"00240000048000009400000006020000002400005253413100040000010001008d4e723a8c76be" +
28+
[assembly:InternalsVisibleTo("Svg.UnitTests,PublicKey=" +
29+
"00240000048000009400000006020000002400005253413100040000010001008d4e723a8c76be" +
2930
"e667607d1fca2c0f0cdcc1c1b926ae46669128282ecad43e6d0776497cd8289dca11e4479773d5" +
3031
"45fc4c557686de548aadbb8652fa550e21d4c402885fec4c1deebfa79e861adb966fc8f4e78235" +
3132
"79a535280ddd3a0168cb4d19522c7591b6693377058675da70e50c7bd6fdceae055cef085f02a0" +
3233
"5a7f0cb4")]
3334

34-
[assembly: System.Runtime.CompilerServices.InternalsVisibleTo("Svg.Benchmark,PublicKey=" +
35-
"00240000048000009400000006020000002400005253413100040000010001008d4e723a8c76be" +
36-
"e667607d1fca2c0f0cdcc1c1b926ae46669128282ecad43e6d0776497cd8289dca11e4479773d5" +
37-
"45fc4c557686de548aadbb8652fa550e21d4c402885fec4c1deebfa79e861adb966fc8f4e78235" +
38-
"79a535280ddd3a0168cb4d19522c7591b6693377058675da70e50c7bd6fdceae055cef085f02a0" +
39-
"5a7f0cb4")]
35+
[assembly: InternalsVisibleTo("Svg.Benchmark,PublicKey=" +
36+
"00240000048000009400000006020000002400005253413100040000010001008d4e723a8c76be" +
37+
"e667607d1fca2c0f0cdcc1c1b926ae46669128282ecad43e6d0776497cd8289dca11e4479773d5" +
38+
"45fc4c557686de548aadbb8652fa550e21d4c402885fec4c1deebfa79e861adb966fc8f4e78235" +
39+
"79a535280ddd3a0168cb4d19522c7591b6693377058675da70e50c7bd6fdceae055cef085f02a0" +
40+
"5a7f0cb4")]
41+
42+
[assembly: InternalsVisibleTo("Svg.Tests.Common,PublicKey=" +
43+
"00240000048000009400000006020000002400005253413100040000010001008d4e723a8c76be" +
44+
"e667607d1fca2c0f0cdcc1c1b926ae46669128282ecad43e6d0776497cd8289dca11e4479773d5" +
45+
"45fc4c557686de548aadbb8652fa550e21d4c402885fec4c1deebfa79e861adb966fc8f4e78235" +
46+
"79a535280ddd3a0168cb4d19522c7591b6693377058675da70e50c7bd6fdceae055cef085f02a0" +
47+
"5a7f0cb4")]

Source/Svg.sln

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 16
4-
VisualStudioVersion = 16.0.29215.179
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.8.34408.163
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Svg", "Svg.csproj", "{886A98C5-37C0-4E8B-885E-30C1D2F98B47}"
77
EndProject
@@ -40,6 +40,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Generators", "Generators",
4040
EndProject
4141
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Svg.Custom", "..\Svg.Custom\Svg.Custom.csproj", "{6FAA2B79-FE5C-456B-A743-E9290665B223}"
4242
EndProject
43+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Svg.Tests.Common", "..\Tests\Svg.Tests.Common\Svg.Tests.Common.csproj", "{D7C625E8-79EA-4859-A457-2C4A90786790}"
44+
EndProject
4345
Global
4446
GlobalSection(SolutionConfigurationPlatforms) = preSolution
4547
Debug|Any CPU = Debug|Any CPU
@@ -90,6 +92,10 @@ Global
9092
{6FAA2B79-FE5C-456B-A743-E9290665B223}.Debug|Any CPU.Build.0 = Debug|Any CPU
9193
{6FAA2B79-FE5C-456B-A743-E9290665B223}.Release|Any CPU.ActiveCfg = Release|Any CPU
9294
{6FAA2B79-FE5C-456B-A743-E9290665B223}.Release|Any CPU.Build.0 = Release|Any CPU
95+
{D7C625E8-79EA-4859-A457-2C4A90786790}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
96+
{D7C625E8-79EA-4859-A457-2C4A90786790}.Debug|Any CPU.Build.0 = Debug|Any CPU
97+
{D7C625E8-79EA-4859-A457-2C4A90786790}.Release|Any CPU.ActiveCfg = Release|Any CPU
98+
{D7C625E8-79EA-4859-A457-2C4A90786790}.Release|Any CPU.Build.0 = Release|Any CPU
9399
EndGlobalSection
94100
GlobalSection(SolutionProperties) = preSolution
95101
HideSolutionNode = FALSE
@@ -104,6 +110,7 @@ Global
104110
{9379360C-CB0B-4035-AE8F-8863A420FDCF} = {038E2E7B-BC03-4DA7-AA5F-CA8BD95BD0F2}
105111
{BACDD1F4-B97D-4E27-BD09-6957633FF484} = {FAFD6DC7-5203-4CED-A151-66379DD43695}
106112
{8DEB3EA7-5915-4EB9-8052-85A7AC4379EC} = {2EC3F3A0-F097-43EF-A603-9B82E3061469}
113+
{D7C625E8-79EA-4859-A457-2C4A90786790} = {2EC3F3A0-F097-43EF-A603-9B82E3061469}
107114
EndGlobalSection
108115
GlobalSection(ExtensibilityGlobals) = postSolution
109116
SolutionGuid = {5096EEB3-8F41-44B5-BCF9-58743A59AB21}

Tests/Svg.Benchmark/Svg.Benchmark.csproj

+1-6
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,12 @@
3232
<PrivateAssets>all</PrivateAssets>
3333
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3434
</PackageReference>
35-
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="All" />
3635
<PackageReference Include="BenchmarkDotNet" Version="0.13.5" />
3736
</ItemGroup>
3837

3938
<ItemGroup>
4039
<ProjectReference Include="..\..\Source\Svg.csproj" />
41-
<ProjectReference Include="..\Svg.UnitTests\Svg.UnitTests.csproj" />
42-
</ItemGroup>
43-
44-
<ItemGroup Condition="'$(TargetFramework)'=='net462'">
45-
<Reference Include="WindowsBase" />
40+
<ProjectReference Include="..\Svg.Tests.Common\Svg.Tests.Common.csproj" />
4641
</ItemGroup>
4742

4843
<ItemGroup>

Tests/Svg.UnitTests/Css/CssQuery.cs Tests/Svg.Tests.Common/Css/CssQuery.cs

+19
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,24 @@ public static int GetSpecificity(this ISelector selector)
2525
specificity |= (1 << 4) * selector.Specificity.Tags;
2626
return specificity;
2727
}
28+
29+
30+
public static IEnumerable<SvgElement> QuerySelectorExCssAll(NonSvgElement elem,
31+
string selector, SvgElementFactory elementFactory)
32+
{
33+
var stylesheetParser = new StylesheetParser(true, true);
34+
var stylesheet = stylesheetParser.Parse(selector + " {color:black}");
35+
var exCssSelector = stylesheet.StyleRules.First().Selector;
36+
return elem.QuerySelectorAll(exCssSelector, elementFactory);
37+
}
38+
39+
public static IEnumerable<SvgElement> QuerySelectorFizzlerAll(NonSvgElement elem,
40+
string selector, SvgElementFactory elementFactory)
41+
{
42+
var generator = new SelectorGenerator<SvgElement>(new SvgElementOps(elementFactory));
43+
Fizzler.Parser.Parse(selector, generator);
44+
return generator.Selector(Enumerable.Repeat(elem, 1));
45+
}
46+
2847
}
2948
}
+123
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
using System;
2+
using System.Drawing.Imaging;
3+
using System.Drawing;
4+
using System.Drawing.Drawing2D;
5+
6+
7+
namespace Svg.Tests.Common
8+
{
9+
/// <summary>
10+
/// Taken from https://web.archive.org/web/20130111215043/http://www.switchonthecode.com/tutorials/csharp-tutorial-convert-a-color-image-to-grayscale
11+
/// and slightly modified.
12+
/// Image width and height, default threshold and handling of alpha values have been adapted.
13+
/// </summary>
14+
public static class ExtensionMethods
15+
{
16+
private static readonly int ImageWidth = 64;
17+
private static readonly int ImageHeight = 64;
18+
19+
public static float PercentageDifference(this Image img1, Image img2, byte threshold = 10)
20+
{
21+
byte[,] differences = img1.GetDifferences(img2);
22+
23+
int diffPixels = 0;
24+
25+
foreach (byte b in differences)
26+
{
27+
if (b > threshold) { diffPixels++; }
28+
}
29+
30+
return diffPixels / (float)(differences.GetLength(0) * differences.GetLength(1));
31+
}
32+
33+
public static Bitmap Resize(this Image originalImage, int newWidth, int newHeight)
34+
{
35+
if (originalImage.Width > originalImage.Height)
36+
newWidth = originalImage.Width * newHeight / originalImage.Height;
37+
else
38+
newHeight = originalImage.Height * newWidth / originalImage.Width;
39+
40+
var smallVersion = new Bitmap(newWidth, newHeight);
41+
using (var g = Graphics.FromImage(smallVersion))
42+
{
43+
g.SmoothingMode = SmoothingMode.HighQuality;
44+
g.InterpolationMode = InterpolationMode.HighQualityBicubic;
45+
g.PixelOffsetMode = PixelOffsetMode.HighQuality;
46+
g.DrawImage(originalImage, 0, 0, smallVersion.Width, smallVersion.Height);
47+
}
48+
49+
return smallVersion;
50+
}
51+
52+
public static byte[,] GetGrayScaleValues(this Bitmap img)
53+
{
54+
byte[,] grayScale = new byte[img.Width, img.Height];
55+
56+
for (int y = 0; y < grayScale.GetLength(1); y++)
57+
{
58+
for (int x = 0; x < grayScale.GetLength(0); x++)
59+
{
60+
var alpha = img.GetPixel(x, y).A;
61+
var gray = img.GetPixel(x, y).R;
62+
grayScale[x, y] = (byte)Math.Abs(gray * alpha / 255);
63+
}
64+
}
65+
return grayScale;
66+
}
67+
68+
// the colormatrix needed to grayscale an image
69+
static readonly ColorMatrix ColorMatrix = new ColorMatrix(new float[][]
70+
{
71+
new float[] {.3f, .3f, .3f, 0, 0},
72+
new float[] {.59f, .59f, .59f, 0, 0},
73+
new float[] {.11f, .11f, .11f, 0, 0},
74+
new float[] {0, 0, 0, 1, 0},
75+
new float[] {0, 0, 0, 0, 1}
76+
});
77+
78+
public static Bitmap GetGrayScaleVersion(this Bitmap original)
79+
{
80+
// create a blank bitmap the same size as original
81+
// https://web.archive.org/web/20130111215043/http://www.switchonthecode.com/tutorials/csharp-tutorial-convert-a-color-image-to-grayscale
82+
var newBitmap = new Bitmap(original.Width, original.Height);
83+
84+
// get a graphics object from the new image
85+
using (var g = Graphics.FromImage(newBitmap))
86+
// create some image attributes
87+
using (var attributes = new ImageAttributes())
88+
{
89+
// set the color matrix attribute
90+
attributes.SetColorMatrix(ColorMatrix);
91+
92+
// draw the original image on the new image
93+
// using the grayscale color matrix
94+
g.DrawImage(original, new Rectangle(0, 0, original.Width, original.Height),
95+
0, 0, original.Width, original.Height, GraphicsUnit.Pixel, attributes);
96+
}
97+
98+
return newBitmap;
99+
}
100+
101+
public static byte[,] GetDifferences(this Image img1, Image img2)
102+
{
103+
using (var resizedThisOne = img1.Resize(ImageWidth, ImageHeight))
104+
using (var thisOne = resizedThisOne.GetGrayScaleVersion())
105+
using (var resizedTheOtherOne = img2.Resize(ImageWidth, ImageHeight))
106+
using (var theOtherOne = resizedTheOtherOne.GetGrayScaleVersion())
107+
{
108+
byte[,] differences = new byte[thisOne.Width, thisOne.Height];
109+
byte[,] firstGray = thisOne.GetGrayScaleValues();
110+
byte[,] secondGray = theOtherOne.GetGrayScaleValues();
111+
112+
for (int y = 0; y < differences.GetLength(1); y++)
113+
{
114+
for (int x = 0; x < differences.GetLength(0); x++)
115+
{
116+
differences[x, y] = (byte)Math.Abs(firstGray[x, y] - secondGray[x, y]);
117+
}
118+
}
119+
return differences;
120+
}
121+
}
122+
}
123+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
using System.Reflection;
2+
using System.Runtime.InteropServices;
3+
using System.Runtime.CompilerServices;
4+
5+
// General Information about an assembly is controlled through the following
6+
// set of attributes. Change these attribute values to modify the information
7+
// associated with an assembly.
8+
[assembly: AssemblyTitle("Svg.Tests.Common")]
9+
[assembly: AssemblyDescription("")]
10+
[assembly: AssemblyConfiguration("")]
11+
[assembly: AssemblyCompany("")]
12+
[assembly: AssemblyProduct("Svg.Tests.Common")]
13+
[assembly: AssemblyCopyright("Copyright © 2024")]
14+
[assembly: AssemblyTrademark("")]
15+
[assembly: AssemblyCulture("")]
16+
17+
// Setting ComVisible to false makes the types in this assembly not visible
18+
// to COM components. If you need to access a type in this assembly from
19+
// COM, set the ComVisible attribute to true on that type.
20+
[assembly: ComVisible(false)]
21+
22+
// The following GUID is for the ID of the typelib if this project is exposed to COM
23+
[assembly: Guid("6ab1d266-f201-46c0-9d14-523768eb18db")]
24+
25+
// Version information for an assembly consists of the following four values:
26+
//
27+
// Major Version
28+
// Minor Version
29+
// Build Number
30+
// Revision
31+
//
32+
// You can specify all the values or you can default the Build and Revision Numbers
33+
// by using the '*' as shown below:
34+
[assembly: AssemblyVersion("1.0.0.0")]
35+
[assembly: AssemblyFileVersion("1.0.0.0")]
36+
37+
[assembly: InternalsVisibleTo("Svg.Benchmark,PublicKey=" +
38+
"00240000048000009400000006020000002400005253413100040000010001008d4e723a8c76be" +
39+
"e667607d1fca2c0f0cdcc1c1b926ae46669128282ecad43e6d0776497cd8289dca11e4479773d5" +
40+
"45fc4c557686de548aadbb8652fa550e21d4c402885fec4c1deebfa79e861adb966fc8f4e78235" +
41+
"79a535280ddd3a0168cb4d19522c7591b6693377058675da70e50c7bd6fdceae055cef085f02a0" +
42+
"5a7f0cb4")]
43+
44+
[assembly: InternalsVisibleTo("Svg.UnitTests,PublicKey=" +
45+
"00240000048000009400000006020000002400005253413100040000010001008d4e723a8c76be" +
46+
"e667607d1fca2c0f0cdcc1c1b926ae46669128282ecad43e6d0776497cd8289dca11e4479773d5" +
47+
"45fc4c557686de548aadbb8652fa550e21d4c402885fec4c1deebfa79e861adb966fc8f4e78235" +
48+
"79a535280ddd3a0168cb4d19522c7591b6693377058675da70e50c7bd6fdceae055cef085f02a0" +
49+
"5a7f0cb4")]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFrameworks>net6.0;netcoreapp3.1;net462</TargetFrameworks>
5+
<SignAssembly>False</SignAssembly>
6+
<DelaySign>False</DelaySign>
7+
<IsPackable>False</IsPackable>
8+
<SignAssembly>True</SignAssembly>
9+
<AssemblyOriginatorKeyFile>svgkey.snk</AssemblyOriginatorKeyFile>
10+
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
11+
</PropertyGroup>
12+
13+
<ItemGroup Condition=" '$(TargetFramework)' == 'net462'">
14+
<Reference Include="System.Net.Http" />
15+
<Reference Include="System.IO.Compression" />
16+
</ItemGroup>
17+
18+
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'">
19+
<PackageReference Include="System.Drawing.Common" Version="5.0.3" />
20+
</ItemGroup>
21+
22+
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
23+
<PackageReference Include="System.Drawing.Common" Version="5.0.3" />
24+
</ItemGroup>
25+
26+
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
27+
<PackageReference Include="System.Drawing.Common" Version="5.0.3" />
28+
</ItemGroup>
29+
30+
<ItemGroup>
31+
<ProjectReference Include="..\..\Source\Svg.csproj" />
32+
<PackageReference Include="Fizzler" Version="1.3.0" />
33+
</ItemGroup>
34+
35+
</Project>

Tests/Svg.UnitTests/TestsUtils.cs Tests/Svg.Tests.Common/TestsUtils.cs

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
using System;
2-
using System.Collections.Generic;
32
using System.Linq;
4-
using System.Text;
53
using System.Threading.Tasks;
64
using System.Net;
75
using System.Net.Http;
86
using System.IO;
97
using System.IO.Compression;
108

11-
namespace Svg.UnitTests
9+
namespace Svg.Tests.Common
1210
{
13-
internal static class TestsUtils
11+
public static class TestsUtils
1412
{
1513
private const string FixImage = "smiley.png";
1614

Tests/Svg.Tests.Common/svgkey.snk

596 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)