-
-
Notifications
You must be signed in to change notification settings - Fork 497
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Expose `LibYamlEventStream` on public surface. * Rename `SpecTests` to `ParserSpecTests`. * Add `SpectTestData` to accommodate emitter/serializer tests.
- Loading branch information
Showing
4 changed files
with
351 additions
and
268 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
// This file is part of YamlDotNet - A .NET library for YAML. | ||
// Copyright (c) Antoine Aubry and contributors | ||
|
||
// Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
// this software and associated documentation files (the "Software"), to deal in | ||
// the Software without restriction, including without limitation the rights to | ||
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies | ||
// of the Software, and to permit persons to whom the Software is furnished to do | ||
// so, subject to the following conditions: | ||
|
||
// The above copyright notice and this permission notice shall be included in all | ||
// copies or substantial portions of the Software. | ||
|
||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
// SOFTWARE. | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Diagnostics; | ||
using System.IO; | ||
using Xunit; | ||
using Xunit.Sdk; | ||
using YamlDotNet.Core; | ||
using YamlDotNet.RepresentationModel; | ||
|
||
namespace YamlDotNet.Test.Spec | ||
{ | ||
public sealed class ParserSpecTests | ||
{ | ||
private sealed class ParserSpecTestsData : SpecTestsData | ||
{ | ||
protected override List<string> IgnoredSuites { get; } = ignoredSuites; | ||
} | ||
|
||
private static readonly List<string> ignoredSuites = new List<string> | ||
{ | ||
// no spec test is ignored as of https://github.com/yaml/yaml-test-suite/commit/053b73a9c12c0cd76da797fdc2ffbd4bb5264c12 | ||
}; | ||
|
||
private static readonly List<string> knownFalsePositives = new List<string> | ||
{ | ||
// no false-positives known as of https://github.com/yaml/yaml-test-suite/commit/bf64436490f3f70a883f19c7cd06057190d9caac | ||
}; | ||
|
||
private static readonly List<string> knownParserDesyncInErrorCases = new List<string> | ||
{ | ||
"5LLU" // remove 5LLU once https://github.com/yaml/yaml-test-suite/pull/61 is released | ||
}; | ||
|
||
[Theory, ClassData(typeof(ParserSpecTestsData))] | ||
public void ConformsWithYamlSpec(string name, string description, string inputFile, string expectedEventFile, bool error) | ||
{ | ||
var expectedResult = File.ReadAllText(expectedEventFile); | ||
using (var writer = new StringWriter()) | ||
{ | ||
try | ||
{ | ||
using (var reader = File.OpenText(inputFile)) | ||
{ | ||
new LibYamlEventStream(new Parser(reader)).WriteTo(writer); | ||
} | ||
} | ||
catch (Exception ex) | ||
{ | ||
Assert.True(error, $"Unexpected spec failure ({name}).\n{description}\nExpected:\n{expectedResult}\nActual:\n[Writer Output]\n{writer}\n[Exception]\n{ex}"); | ||
|
||
if (error) | ||
{ | ||
Debug.Assert(!knownFalsePositives.Contains(name), $"Spec test '{name}' passed but present in '{nameof(knownFalsePositives)}' list. Consider removing it from the list."); | ||
|
||
try | ||
{ | ||
Assert.Equal(expectedResult, writer.ToString(), ignoreLineEndingDifferences: true); | ||
Debug.Assert(!knownParserDesyncInErrorCases.Contains(name), $"Spec test '{name}' passed but present in '{nameof(knownParserDesyncInErrorCases)}' list. Consider removing it from the list."); | ||
} | ||
catch (EqualException) | ||
{ | ||
// In some error cases, YamlDotNet's parser output is in desync with what is expected by the spec. | ||
// Throw, if it is not a known case. | ||
|
||
if (!knownParserDesyncInErrorCases.Contains(name)) | ||
{ | ||
throw; | ||
} | ||
} | ||
} | ||
|
||
return; | ||
} | ||
|
||
try | ||
{ | ||
Assert.Equal(expectedResult, writer.ToString(), ignoreLineEndingDifferences: true); | ||
Debug.Assert(!ignoredSuites.Contains(name), $"Spec test '{name}' passed but present in '{nameof(ignoredSuites)}' list. Consider removing it from the list."); | ||
} | ||
catch (EqualException) | ||
{ | ||
// In some cases, YamlDotNet's parser/scanner is unexpectedly *not* erroring out. | ||
// Throw, if it is not a known case. | ||
|
||
if (!(error && knownFalsePositives.Contains(name))) | ||
{ | ||
throw; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
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,108 @@ | ||
// This file is part of YamlDotNet - A .NET library for YAML. | ||
// Copyright (c) Antoine Aubry and contributors | ||
|
||
// Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
// this software and associated documentation files (the "Software"), to deal in | ||
// the Software without restriction, including without limitation the rights to | ||
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies | ||
// of the Software, and to permit persons to whom the Software is furnished to do | ||
// so, subject to the following conditions: | ||
|
||
// The above copyright notice and this permission notice shall be included in all | ||
// copies or substantial portions of the Software. | ||
|
||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
// SOFTWARE. | ||
|
||
using System; | ||
using System.Collections; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
|
||
namespace YamlDotNet.Test.Spec | ||
{ | ||
internal abstract class SpecTestsData : IEnumerable<object[]> | ||
{ | ||
private const string DescriptionFilename = "==="; | ||
private const string InputFilename = "in.yaml"; | ||
private const string ExpectedEventFilename = "test.event"; | ||
private const string ErrorFilename = "error"; | ||
|
||
private static readonly string specFixtureDirectory = GetTestFixtureDirectory(); | ||
|
||
protected abstract List<string> IgnoredSuites { get; } | ||
|
||
IEnumerator IEnumerable.GetEnumerator() => GetEnumerator(); | ||
|
||
public IEnumerator<object[]> GetEnumerator() | ||
{ | ||
var fixtures = Directory.EnumerateDirectories(specFixtureDirectory, "*", SearchOption.TopDirectoryOnly); | ||
|
||
foreach (var testPath in fixtures) | ||
{ | ||
var testName = Path.GetFileName(testPath); | ||
// comment the following line to run spec tests (requires 'Rebuild') | ||
if (IgnoredSuites.Contains(testName)) continue; | ||
|
||
var inputFile = Path.Combine(testPath, InputFilename); | ||
if (!File.Exists(inputFile)) continue; | ||
|
||
var descriptionFile = Path.Combine(testPath, DescriptionFilename); | ||
var hasErrorFile = File.Exists(Path.Combine(testPath, ErrorFilename)); | ||
var expectedEventFile = Path.Combine(testPath, ExpectedEventFilename); | ||
|
||
yield return new object[] | ||
{ | ||
testName, | ||
File.ReadAllText(descriptionFile).TrimEnd(), | ||
inputFile, | ||
expectedEventFile, | ||
hasErrorFile | ||
}; | ||
} | ||
} | ||
|
||
private static string GetTestFixtureDirectory() | ||
{ | ||
// check if environment variable YAMLDOTNET_SPEC_SUITE_DIR is set | ||
string fixturesPath = Environment.GetEnvironmentVariable("YAMLDOTNET_SPEC_SUITE_DIR"); | ||
|
||
if (!string.IsNullOrEmpty(fixturesPath)) | ||
{ | ||
if (!Directory.Exists(fixturesPath)) | ||
{ | ||
throw new Exception("Path set as environment variable 'YAMLDOTNET_SPEC_SUITE_DIR' does not exist!"); | ||
} | ||
|
||
return fixturesPath; | ||
} | ||
|
||
// In Microsoft.NET.Test.Sdk v15.0.0, the current working directory | ||
// is not set to project's root but instead the output directory. | ||
// see: https://github.com/Microsoft/vstest/issues/435. | ||
// | ||
// Let's use the strategry of finding the parent directory of | ||
// "yaml-test-suite" directory by walking from cwd backwards upto the | ||
// volume's root. | ||
var currentDirectory = Directory.GetCurrentDirectory(); | ||
var currentDirectoryInfo = new DirectoryInfo(currentDirectory); | ||
|
||
do | ||
{ | ||
if (Directory.Exists(Path.Combine(currentDirectoryInfo.FullName, "yaml-test-suite"))) | ||
{ | ||
return Path.Combine(currentDirectoryInfo.FullName, "yaml-test-suite"); | ||
} | ||
currentDirectoryInfo = currentDirectoryInfo.Parent; | ||
} | ||
while (currentDirectoryInfo.Parent != null); | ||
|
||
throw new DirectoryNotFoundException("Unable to find 'yaml-test-suite' directory"); | ||
} | ||
} | ||
} |
Oops, something went wrong.