mirror of
https://github.com/Stone-Red-Code/YesNt-Interpreter.git
synced 2026-09-04 00:56:31 +02:00
114 lines
2.5 KiB
C#
114 lines
2.5 KiB
C#
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace YesNt.Interpreter.Tests;
|
|
|
|
[TestClass]
|
|
public class StringLiteralStatementsTests
|
|
{
|
|
[TestMethod]
|
|
public void StringLiteralWithSpacesWorksTest()
|
|
{
|
|
List<string> lines =
|
|
[
|
|
"var msg = \"hello world\"",
|
|
"${msg}"
|
|
];
|
|
|
|
YesNtAssert.IsLastLineEqual(lines, "hello world");
|
|
}
|
|
|
|
[TestMethod]
|
|
public void StringLiteralEscapesWorkTest()
|
|
{
|
|
List<string> lines =
|
|
[
|
|
"var msg = \"a\\n\\t\\\"b\"",
|
|
"${msg}"
|
|
];
|
|
|
|
YesNtAssert.IsLastLineEqual(lines, "a\n\t\"b");
|
|
}
|
|
|
|
[TestMethod]
|
|
public void StringLiteralPreventsVariableInterpolationTest()
|
|
{
|
|
List<string> lines =
|
|
[
|
|
"var x = hidden",
|
|
"print_line \"${x}\""
|
|
];
|
|
|
|
YesNtAssert.ContainsDebugOutput(lines, "${x}");
|
|
}
|
|
|
|
[TestMethod]
|
|
public void StringLiteralWorksWithListAddTest()
|
|
{
|
|
List<string> lines =
|
|
[
|
|
"list items new",
|
|
"list items add \"hello world\"",
|
|
"list items get 0",
|
|
"var result = %out",
|
|
"${result}"
|
|
];
|
|
|
|
YesNtAssert.IsLastLineEqual(lines, "hello world");
|
|
}
|
|
|
|
[TestMethod]
|
|
public void EmptyStringLiteralHasLengthZeroTest()
|
|
{
|
|
List<string> lines =
|
|
[
|
|
"var x = \"\"",
|
|
"length ${x}",
|
|
"var len = %out",
|
|
"${len}"
|
|
];
|
|
|
|
YesNtAssert.IsLastLineEqual(lines, "0");
|
|
}
|
|
|
|
[TestMethod]
|
|
public void EscapedBackslashProducesLiteralBackslashTest()
|
|
{
|
|
List<string> lines =
|
|
[
|
|
"var msg = \"\\\\n\"", // YesNt source: "\\n" → \n (backslash + n, 2 chars)
|
|
"length ${msg}",
|
|
"var len = %out",
|
|
"${len}"
|
|
];
|
|
|
|
YesNtAssert.IsLastLineEqual(lines, "2");
|
|
}
|
|
|
|
[TestMethod]
|
|
public void UnknownEscapeSequenceBecomesCharTest()
|
|
{
|
|
List<string> lines =
|
|
[
|
|
"var msg = \"\\q\"", // YesNt source: "\q" → q (1 char)
|
|
"length ${msg}",
|
|
"var len = %out",
|
|
"${len}"
|
|
];
|
|
|
|
YesNtAssert.IsLastLineEqual(lines, "1");
|
|
}
|
|
|
|
[TestMethod]
|
|
public void UnterminatedStringLiteralFailsTest()
|
|
{
|
|
List<string> lines =
|
|
[
|
|
"var msg = \"hello"
|
|
];
|
|
|
|
YesNtAssert.ContainsTerminationMessage(lines, "Invalid string literal");
|
|
}
|
|
}
|