mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-09 22:38:06 -05:00
Seperate unit tests for commentprocessor and c_header preprocessor
This commit is contained in:
@ -0,0 +1,93 @@
|
||||
using System.Collections.Generic;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using ZoneCodeGenerator.Parsing;
|
||||
using ZoneCodeGenerator.Parsing.Impl;
|
||||
using ZoneCodeGenerator.Utils;
|
||||
|
||||
namespace ZoneCodeGeneratorTests.Parsing.Impl
|
||||
{
|
||||
[TestClass]
|
||||
public class CommentPreprocessorTest
|
||||
{
|
||||
private ICommentProcessor commentProcessor;
|
||||
|
||||
[TestInitialize]
|
||||
public void Setup()
|
||||
{
|
||||
commentProcessor = new CommentProcessor();
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public void EnsureReturnsUnmodifiedText()
|
||||
{
|
||||
string[] stringsThatShouldNotBeModified =
|
||||
{
|
||||
"This is a normal string",
|
||||
"There is nothing to be preprocessed!",
|
||||
"0124124124 # 124124124",
|
||||
"...",
|
||||
"<?php><html>asdf</html>",
|
||||
""
|
||||
};
|
||||
|
||||
foreach (var stringThatShouldNotBeModified in stringsThatShouldNotBeModified)
|
||||
{
|
||||
Assert.AreEqual(stringThatShouldNotBeModified, commentProcessor.RemoveComments(stringThatShouldNotBeModified));
|
||||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public void EnsureDoesRemoveLineComments()
|
||||
{
|
||||
var commentStrings = new Dictionary<string, string>()
|
||||
{
|
||||
{"// This is a comment at the beginning of the line", ""},
|
||||
{"Text in front of a comment // Comment", "Text in front of a comment"},
|
||||
{"/ / Not a comment", "/ / Not a comment"},
|
||||
{"asdf /// Triple slash is a comment", "asdf"},
|
||||
{"b2h3 /////////////// In fact after the first two slashes it should always be considered a comment", "b2h3"},
|
||||
};
|
||||
|
||||
foreach (var (input, expectedResult) in commentStrings)
|
||||
{
|
||||
Assert.AreEqual(expectedResult, commentProcessor.RemoveComments(input));
|
||||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public void EnsureDoesRemoveBlockComments()
|
||||
{
|
||||
var commentStrings = new Dictionary<string, string>()
|
||||
{
|
||||
{"/* This is a block comment */", ""},
|
||||
{"Text in front of a comment /** Comment ***/", "Text in front of a comment"},
|
||||
{"/ * Not a comment */", "/ * Not a comment */"},
|
||||
{"Text in front of comment /* Comment */ Text after the comment", "Text in front of comment Text after the comment"},
|
||||
{"Hello/*Hell*/World", "HelloWorld"},
|
||||
};
|
||||
|
||||
foreach (var (input, expectedResult) in commentStrings)
|
||||
{
|
||||
Assert.AreEqual(expectedResult, commentProcessor.RemoveComments(input));
|
||||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public void EnsureBlockCommentsWorkOverMultipleLines()
|
||||
{
|
||||
var commentStrings = new Dictionary<string, string>()
|
||||
{
|
||||
{"The start of the comment /* Is now", "The start of the comment"},
|
||||
{"Nothing to be seen here", ""},
|
||||
{"* / /* Still nothing", ""},
|
||||
{"The comment ends */ now", " now"},
|
||||
{"This line should not cause any issues", "This line should not cause any issues"},
|
||||
};
|
||||
|
||||
foreach (var (input, expectedResult) in commentStrings)
|
||||
{
|
||||
Assert.AreEqual(expectedResult, commentProcessor.RemoveComments(input));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,242 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
using ZoneCodeGenerator.Parsing.C_Header;
|
||||
using ZoneCodeGenerator.Parsing.C_Header.Impl;
|
||||
using ZoneCodeGenerator.Utils;
|
||||
using ZoneCodeGeneratorTests.Parsing.Mock;
|
||||
|
||||
namespace ZoneCodeGeneratorTests.Parsing.Impl
|
||||
{
|
||||
[TestClass]
|
||||
public class PreprocessorTest
|
||||
{
|
||||
private IncludingParsingStreamTest headerStreamTest;
|
||||
private IHeaderParserState headerParserState;
|
||||
|
||||
private Preprocessor preprocessor;
|
||||
|
||||
[TestInitialize]
|
||||
public void Setup()
|
||||
{
|
||||
headerStreamTest = new IncludingParsingStreamTest("file.h");
|
||||
headerParserState = new HeaderParserState();
|
||||
preprocessor = new Preprocessor(headerStreamTest, headerParserState);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public void EnsureReturnsUnmodifiedText()
|
||||
{
|
||||
string[] stringsThatShouldNotBeModified =
|
||||
{
|
||||
"This is a normal string",
|
||||
"There is nothing to be preprocessed!",
|
||||
"0124124124 # 124124124",
|
||||
"...",
|
||||
"<?php><html>asdf</html>",
|
||||
""
|
||||
};
|
||||
headerStreamTest.Lines.AddRange(stringsThatShouldNotBeModified);
|
||||
|
||||
foreach (var stringThatShouldNotBeModified in stringsThatShouldNotBeModified)
|
||||
{
|
||||
Assert.AreEqual(stringThatShouldNotBeModified, preprocessor.ReadLine());
|
||||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public void EnsureDoesRemoveLineComments()
|
||||
{
|
||||
var commentStrings = new Dictionary<string, string>()
|
||||
{
|
||||
{"// This is a comment at the beginning of the line", ""},
|
||||
{"Text in front of a comment // Comment", "Text in front of a comment"},
|
||||
{"/ / Not a comment", "/ / Not a comment"},
|
||||
{"asdf /// Triple slash is a comment", "asdf"},
|
||||
{"b2h3 /////////////// In fact after the first two slashes it should always be considered a comment", "b2h3"},
|
||||
};
|
||||
headerStreamTest.Lines.AddRange(commentStrings.Keys);
|
||||
|
||||
foreach (var (input, expectedResult) in commentStrings)
|
||||
{
|
||||
Assert.AreEqual(expectedResult, preprocessor.ReadLine().Trim());
|
||||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public void EnsureDoesRemoveBlockComments()
|
||||
{
|
||||
var commentStrings = new Dictionary<string, string>()
|
||||
{
|
||||
{"/* This is a block comment */", ""},
|
||||
{"Text in front of a comment /** Comment ***/", "Text in front of a comment"},
|
||||
{"/ * Not a comment */", "/ * Not a comment */"},
|
||||
{"Text in front of comment /* Comment */ Text after the comment", "Text in front of comment Text after the comment"},
|
||||
{"Hello/*Hell*/World", "HelloWorld"},
|
||||
};
|
||||
headerStreamTest.Lines.AddRange(commentStrings.Keys);
|
||||
|
||||
foreach (var (input, expectedResult) in commentStrings)
|
||||
{
|
||||
Assert.AreEqual(expectedResult, preprocessor.ReadLine().Trim());
|
||||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public void EnsureBlockCommentsWorkOverMultipleLines()
|
||||
{
|
||||
var commentStrings = new Dictionary<string, string>()
|
||||
{
|
||||
{"The start of the comment /* Is now", "The start of the comment"},
|
||||
{"Nothing to be seen here", ""},
|
||||
{"* / /* Still nothing", ""},
|
||||
{"The comment ends */ now", "now"},
|
||||
{"This line should not cause any issues", "This line should not cause any issues"},
|
||||
};
|
||||
headerStreamTest.Lines.AddRange(commentStrings.Keys);
|
||||
|
||||
foreach (var (input, expectedResult) in commentStrings)
|
||||
{
|
||||
Assert.AreEqual(expectedResult, preprocessor.ReadLine().Trim());
|
||||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public void EnsureDefinesArePlacedCorrectly()
|
||||
{
|
||||
var defineStrings = new Dictionary<string, string>()
|
||||
{
|
||||
{"#define World Hell", ""},
|
||||
{"Hello World!", "Hello Hell!"},
|
||||
{"World-wide Teamwork", "Hell-wide Teamwork"},
|
||||
{"#define great pretty bad", ""},
|
||||
{"Defines are great, right?", "Defines are pretty bad, right?"},
|
||||
{"Great world", "Great world"}, // Capitalization should matter
|
||||
};
|
||||
headerStreamTest.Lines.AddRange(defineStrings.Keys);
|
||||
|
||||
foreach (var (input, expectedResult) in defineStrings)
|
||||
{
|
||||
Assert.AreEqual(expectedResult, preprocessor.ReadLine().Trim());
|
||||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public void EnsureDefinesCanBeOverwritten()
|
||||
{
|
||||
var defineStrings = new Dictionary<string, string>()
|
||||
{
|
||||
{"#define World Hell", ""},
|
||||
{"#define World Mars", ""},
|
||||
{"Hello World!", "Hello Mars!"}
|
||||
};
|
||||
headerStreamTest.Lines.AddRange(defineStrings.Keys);
|
||||
|
||||
foreach (var (input, expectedResult) in defineStrings)
|
||||
{
|
||||
Assert.AreEqual(expectedResult, preprocessor.ReadLine().Trim());
|
||||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public void EnsureEmptyDefinesResolveToEmpty()
|
||||
{
|
||||
var defineStrings = new Dictionary<string, string>()
|
||||
{
|
||||
{"#define World", ""},
|
||||
{"Hello World!", "Hello !"}
|
||||
};
|
||||
headerStreamTest.Lines.AddRange(defineStrings.Keys);
|
||||
|
||||
foreach (var (input, expectedResult) in defineStrings)
|
||||
{
|
||||
Assert.AreEqual(expectedResult, preprocessor.ReadLine().Trim());
|
||||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public void EnsureUndefRemovesDefines()
|
||||
{
|
||||
var defineStrings = new Dictionary<string, string>()
|
||||
{
|
||||
{"#define World Hell", ""},
|
||||
{"Hello World!", "Hello Hell!"},
|
||||
{"#undef World", ""},
|
||||
{"Hello World 2!", "Hello World 2!"},
|
||||
{"#define Hell Jupiter", ""},
|
||||
{"#define Hell Mars", ""},
|
||||
{"#undef Hell", ""},
|
||||
{"Hell no", "Hell no"},
|
||||
};
|
||||
headerStreamTest.Lines.AddRange(defineStrings.Keys);
|
||||
|
||||
foreach (var (input, expectedResult) in defineStrings)
|
||||
{
|
||||
Assert.AreEqual(expectedResult, preprocessor.ReadLine().Trim());
|
||||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public void EnsurePackIsParsedCorrectly()
|
||||
{
|
||||
var defaultPack = headerParserState.CurrentPack;
|
||||
|
||||
var packs = new List<Tuple<string, int>>
|
||||
{
|
||||
new Tuple<string, int>("Test", defaultPack),
|
||||
new Tuple<string, int>("#pragma pack(push, 16)", 16),
|
||||
new Tuple<string, int>("Test2", 16),
|
||||
new Tuple<string, int>("#pragma pack(push, 64)", 64),
|
||||
new Tuple<string, int>("Test3", 64),
|
||||
new Tuple<string, int>("Test4", 64),
|
||||
new Tuple<string, int>("#pragma pack(pop)", 16),
|
||||
new Tuple<string, int>("Test5", 16),
|
||||
new Tuple<string, int>("#pragma pack(pop)", defaultPack),
|
||||
new Tuple<string, int>("Test6", defaultPack)
|
||||
};
|
||||
headerStreamTest.Lines.AddRange(packs.Select(tuple => tuple.Item1));
|
||||
|
||||
foreach (var (input, expectedPack) in packs)
|
||||
{
|
||||
preprocessor.ReadLine();
|
||||
|
||||
Assert.AreEqual(expectedPack, headerParserState.CurrentPack);
|
||||
}
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public void EnsureIncludeChangesFileWhenUsingQuotationMarks()
|
||||
{
|
||||
headerStreamTest.Lines.AddRange(new []
|
||||
{
|
||||
"#include \"asdf.h\"",
|
||||
"#include \"file/path/to/header.h\""
|
||||
});
|
||||
preprocessor.ReadLine();
|
||||
Assert.AreEqual(1, headerStreamTest.IncludeCount);
|
||||
Assert.AreEqual("asdf.h", headerStreamTest.LastInclude);
|
||||
|
||||
preprocessor.ReadLine();
|
||||
Assert.AreEqual(2, headerStreamTest.IncludeCount);
|
||||
Assert.AreEqual("file/path/to/header.h", headerStreamTest.LastInclude);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public void EnsureIncludeChangesFileWhenUsingCarets()
|
||||
{
|
||||
headerStreamTest.Lines.AddRange(new []
|
||||
{
|
||||
"#include <asdf.h>",
|
||||
"#include <file/path/to/header.h>"
|
||||
});
|
||||
preprocessor.ReadLine();
|
||||
Assert.AreEqual(1, headerStreamTest.IncludeCount);
|
||||
Assert.AreEqual("asdf.h", headerStreamTest.LastInclude);
|
||||
|
||||
preprocessor.ReadLine();
|
||||
Assert.AreEqual(2, headerStreamTest.IncludeCount);
|
||||
Assert.AreEqual("file/path/to/header.h", headerStreamTest.LastInclude);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user